diff --git a/CHANGELOG b/CHANGELOG index 6e540a04d..ad5e004c8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,129 @@ +Hubzilla 3.2 (2018-03-09) + - Improve rendering of Readme files in plugin settings + - Add pdl file for mod moderate + - Update redbasic theme screenshot + - Restrict mail messages to max_import_size + - Add pdl file for mod thing + - Add federation property to webfinger + - Provide new member widget which sits beneath the notifications for the first 60 days after an account creation + - Rename Addon/Feature settings to Addon Settings + - Move privacy groups to the newly created Access Control and Permissions tab + - Move oauth_client management and guest access tokens to features rather than auto-enabling at various feature levels + - Change undo_post_tagging() to emit quoted tags rather than using underscore replacement if they contain spaces + - Require directory servers to be using some modern form of encryption + - Change icon set from font-awesome to fork-awesome + - Provide opt-out link and text with notification emails + - Alter image selection widget to accept/submit on choose (github issue #979) + - If hide_in_statistics is set, only include the total channels count and no other statistical info in siteinfo.json + - Mark connections where we do not have post_comments permissions with an no entry sign + - Click your own profile photo to change it if loged in + - Remove street address info from the default basic profile fields + - Handle error logging in on cloud page (post method not implemented) + - Cloud 'view-as-tiles' toggle wasn't available for guests and they are the most likely to prefer that view + - Provide DB compatibility for poll and voting implementations across several platforms + - Remove the unused ZotDriver and ProtoDriver classes + - Move dreport from zot to lib + - Move Zotlabs\Zot\Verify to Zotlabs\Lib\Verify as part of the zot6 re-org + - Add event resource_id to iconfig so Diaspora can search on it without looking inside JSON objects + - Trim non-existent/deprecated plugins from siteinfo plugin list + - Add 'Validate' button to new_channel page + - Do not show summary if it is equal to body + - Update code tag styling so bbcode [code] blocks and wiki markdown inline code render nicely + - Crypto improvements (use pkcs1_oaep_padding instead of the older pkcs1_padding) + - Refactor OAuth2Server a bit + - Refactor of the DB update system + - Extend the oauth2 storage driver so that we can use our own channel table + - Provide option to block the public stream unless authenticated + - Refactor shares and urn shares into activities + - Show likes and dislikes in notices if always_show_in_notices is set + - Add hidden config to disallow anonymous comments (github issue #972) + - Add flexibility to prefix/suffix string translations for jquery.timeago + - Make post titles searchable (github issue #975) + - Implement zot6 delivery + - Remove mobile_detect library + - Separate the parsing of author information from the parsing of item/activity information in feedutils + - Provide summaries in feeds under very limited cases + - Redirect to the email_validation page if login was attempted after account creation but prior to successful verification + - Iprove workflow for form based email validation when auto_channel_create is in effect + - Provide a default video image if nothing else is available + - Surface the ability to change the landing page after channel creation + - Create the 'go' module to present several possible things to do after channel creation + - Add unit test for dba_pdo driver class + - Add unit test for \DBA factory + - Usability improvements to registration/verification workflow + - Don't do any bbcode translation within code blocks (except baseurl, observer, and linefeeds) + - Improve browser language detection + - Remove unused prototype importer template and obsolete reflection cms importer + - Update to bootstrap 4 stable + - Implement caching of notifications in browser session storage + - Code cleanup and simplification in mod_like + - Implement new cropper library + - Better notifications for edit post/comments which may have been originally posted long ago + - Ensure filter words are not empty in include/items.php + - Change query in mod search to be compatible with postgres + - Provide channel list function in the zot api + - Remove deprecated 'qcomment' feature + - Simplify webserver logic flow + - Simplify interactions with the get_features hook + - Provide a local pubstream option (content from this site only) + - Simplify dir_tagadelic dramatically + - Surface the article feature + - Add summary bbcode tag + - Move markdown-in-posts/comments feature to plugin + - Support tables in markdown posts/comments + + + Bugfixes + - Fix javascript error if there are no notifications + - Fix some issues with friend suggestions on standalone sites with no 'suggestme' volunteers + - Fix unable to reset profile fields to defaults in admin/profs by emptying the textarea + ⁻ Fix issues with accordions related to bootstrap upgrade + - Fix empty dob is set to the date of the first profile save + - Fix several email validation issues + - Fix issue if logged in locally and mod_display returns nothing owned by your uid; retry with known public uids rather than issue 'permission denied' + - Fix public stream app permission check to match the recent fixes to the Module + - Fix issues with delivery of edited posts to forums + - Fix autoname test + - Fix issue where self and pending connections were visible in connections when not loged in + - Fix bad query in mod defperms + - Fix issue where gnusocial likes were not recognised as like activity + - Fix manual queue invocation + - Fix unable to delete accounts using tickboxes on admin/accounts + - Fix a PHP7.2 warning when a channel has no cards + - Fix unable to delete permission groups with space in name (github issue #920) + + Addons + Statistic: fix reporting of incorrect register policy in nodeinfo + Diaspora: diaspora_init_relay: calls diaspora_import_author with too many arguments + Pubcrawl: provide a system 'allowed' for to match the system setting for other protocols + Diaspora: fix issue with sending diaspora profile change messages over diaspora_v2 + Diaspora: provide limited but hopefully adequate support for new Diaspora html5 audio/video + Pubcrawl: send zot context with follow requests + Pubcrawl: add video to the set of message types we process + Pubcrawl: support for activitypub media + Openclipatar: remove extra details for each image + Diaspora: initial work on event participation + Statistic: remove the friendica protocol from nodeinfo until it is fully implemented + Statistic: re-arrange the order of the .host-meta/nodeinfo links + Pubcrawl: add share verb to activitystreams translator + Pubcrawl: post public posts to syschannel + Statistics: fix legacy statistics.json interface + Gnusocial: improve error checking when processing a salmon message + Dirstats: fix sql syntax error + Pubcrawl: possibly reduce constraint violations for xchan_store_lowlevel (duplicate entry) + Diaspora: ensure we process Friendica-over-Diaspora yearless birthdays correctly + Chess: added simple history browsing controls to spectator view + Diaspora: support post/comment edits + Diaspora: don't redirect fetch requests for non-Diaspora wall-to-wall and forum posts unless they can be redirected to a Diaspora protocol site + Chess: added support for publicly visible games + Phpmailer: add quickstart notes + Chess: choose random color if no color is chosen + New Plugin: mdpost - markdown in posts/comments, migrated from core to addon + Diaspora: provide a configuration option to import the diaspora firehose, otherwise only import content matching subscribed tags + NSFW: load images only after click on the button + Twitter: provide configurable tweet length until such time as 280 becomes universal + + Hubzilla 3.0 (2018-01-09) - Updated homeinstall script - Sort cloud directory by 1. is_dir and 2. name diff --git a/Zotlabs/Zot/DReport.php b/Zotlabs/Lib/DReport.php similarity index 98% rename from Zotlabs/Zot/DReport.php rename to Zotlabs/Lib/DReport.php index c90f4f670..a68d6c18f 100644 --- a/Zotlabs/Zot/DReport.php +++ b/Zotlabs/Lib/DReport.php @@ -1,5 +1,5 @@ ' . t('Notification Settings') . ''); $sender_name = $product; $hostname = \App::get_hostname(); if(strpos($hostname,':')) @@ -136,7 +138,7 @@ class Enotify { $itemlink = $params['link']; - $action = 'commented on'; + $action = t('commented on'); if(array_key_exists('item',$params) && in_array($params['item']['verb'], [ACTIVITY_LIKE, ACTIVITY_DISLIKE])) { @@ -147,10 +149,10 @@ class Enotify { } if(activity_match($params['verb'], ACTIVITY_LIKE)) - $action = 'liked'; + $action = t('liked'); if(activity_match($params['verb'], ACTIVITY_DISLIKE)) - $action = 'disliked'; + $action = t('disliked'); } @@ -613,6 +615,9 @@ class Enotify { $datarray['titemlink'] = $itemlink; $datarray['thanks'] = $thanks; $datarray['site_admin'] = $site_admin; + $datarray['opt_out1'] = $opt_out1; + $datarray['opt_out2'] = $opt_out2; + $datarray['hopt_out2'] = $hopt_out2; $datarray['title'] = stripslashes($title); $datarray['htmlversion'] = $htmlversion; $datarray['textversion'] = $textversion; @@ -670,6 +675,8 @@ class Enotify { '$hitemlink' => $datarray['hitemlink'], '$thanks' => $datarray['thanks'], '$site_admin' => $datarray['site_admin'], + '$opt_out1' => $datarray['opt_out1'], + '$opt_out2' => $datarray['hopt_out2'], '$title' => $datarray['title'], '$htmlversion' => $datarray['htmlversion'], )); @@ -690,6 +697,8 @@ class Enotify { '$titemlink' => $datarray['titemlink'], '$thanks' => $datarray['thanks'], '$site_admin' => $datarray['site_admin'], + '$opt_out1' => $datarray['opt_out1'], + '$opt_out2' => $datarray['opt_out2'], '$title' => $datarray['title'], '$textversion' => $datarray['textversion'], )); diff --git a/Zotlabs/Lib/ProtoDriver.php b/Zotlabs/Lib/ProtoDriver.php deleted file mode 100644 index daf887dbb..000000000 --- a/Zotlabs/Lib/ProtoDriver.php +++ /dev/null @@ -1,19 +0,0 @@ - [ 'techlock', t('Lock the technical skill level setting'), get_config('system','techlevel_lock'), t('Members can set their own technical comfort level by default') ], - '$banner' => array('banner', t("Banner/Logo"), $banner, ""), + '$banner' => array('banner', t("Banner/Logo"), $banner, t('Unfiltered HTML/CSS/JS is allowed')), '$admininfo' => array('admininfo', t("Administrator Information"), $admininfo, t("Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here")), '$siteinfo' => array('siteinfo', t('Site Information'), get_config('system','siteinfo'), t("Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here")), '$language' => array('language', t("System language"), get_config('system','language'), "", $lang_choices), '$theme' => array('theme', t("System theme"), get_config('system','theme'), t("Default system theme - may be over-ridden by user profiles - change theme settings"), $theme_choices), - '$theme_mobile' => array('theme_mobile', t("Mobile system theme"), get_config('system','mobile_theme'), t("Theme for mobile devices"), $theme_choices_mobile), +// '$theme_mobile' => array('theme_mobile', t("Mobile system theme"), get_config('system','mobile_theme'), t("Theme for mobile devices"), $theme_choices_mobile), // '$site_channel' => array('site_channel', t("Channel to use for this website's static pages"), get_config('system','site_channel'), t("Site Channel")), '$feed_contacts' => array('feed_contacts', t('Allow Feeds as Connections'),get_config('system','feed_contacts'),t('(Heavy system resource usage)')), '$maximagesize' => array('maximagesize', t("Maximum image size"), intval(get_config('system','maximagesize')), t("Maximum size in bytes of uploaded images. Default is 0, which means no limits.")), @@ -344,7 +350,7 @@ class Site { '$default_expire_days' => array('default_expire_days', t('Expiration period in days for imported (grid/network) content'), intval(get_config('system','default_expire_days')), t('0 for no expiration of imported content')), '$sellpage' => array('site_sellpage', t('Public servers: Optional landing (marketing) webpage for new registrants'), get_config('system','sellpage',''), sprintf( t('Create this page first. Default is %s/register'),z_root())), - '$firstpage' => array('firstpage', t('Page to display after creating a new channel'), get_config('system','workflow_channel_next','profiles'), t('Recommend: profiles, go, or settings')), + '$first_page' => array('first_page', t('Page to display after creating a new channel'), get_config('system','workflow_channel_next','profiles'), t('Recommend: profiles, go, or settings')), '$location' => array('site_location', t('Optional: site location'), get_config('system','site_location',''), t('Region or country')), diff --git a/Zotlabs/Module/Channel.php b/Zotlabs/Module/Channel.php index 231146999..3d3eb2a85 100644 --- a/Zotlabs/Module/Channel.php +++ b/Zotlabs/Module/Channel.php @@ -255,7 +255,7 @@ class Channel extends \Zotlabs\Web\Controller { AND (abook.abook_blocked = 0 or abook.abook_flags is null) AND item.item_wall = 1 $sql_extra $sql_extra2 - ORDER BY created DESC $pager_sql ", + ORDER BY created DESC, id $pager_sql ", intval(\App::$profile['profile_uid']) ); } diff --git a/Zotlabs/Module/Cloud.php b/Zotlabs/Module/Cloud.php index 2215507ca..8b5476efc 100644 --- a/Zotlabs/Module/Cloud.php +++ b/Zotlabs/Module/Cloud.php @@ -110,6 +110,9 @@ class Cloud extends \Zotlabs\Web\Controller { elseif($err instanceof \Sabre\DAV\Exception\Forbidden) { notice( t('Permission denied') . EOL); } + elseif($err instanceof \Sabre\DAV\Exception\NotImplemented) { + notice( t('Please refresh page') . EOL); + } else { notice( t('Unknown error') . EOL); } diff --git a/Zotlabs/Module/Cover_photo.php b/Zotlabs/Module/Cover_photo.php index cfb513365..56e35f912 100644 --- a/Zotlabs/Module/Cover_photo.php +++ b/Zotlabs/Module/Cover_photo.php @@ -207,7 +207,7 @@ class Cover_photo extends \Zotlabs\Web\Controller { } } - $imagedata = (($os_storage) ? @file_get_contents($imagedata) : $imagedata); + $imagedata = (($os_storage) ? @file_get_contents(dbunescbin($imagedata)) : dbunescbin($imagedata)); $ph = photo_factory($imagedata, $filetype); if(! $ph->is_valid()) { @@ -357,12 +357,23 @@ class Cover_photo extends \Zotlabs\Web\Controller { '$user' => \App::$channel['channel_address'], '$lbl_upfile' => t('Upload File:'), '$lbl_profiles' => t('Select a profile:'), - '$title' => t('Upload Cover Photo'), + '$title' => t('Change Cover Photo'), '$submit' => t('Upload'), '$profiles' => $profiles, + '$embedPhotos' => t('Use a photo from your albums'), + '$embedPhotosModalTitle' => t('Use a photo from your albums'), + '$embedPhotosModalCancel' => t('Cancel'), + '$embedPhotosModalOK' => t('OK'), + '$modalchooseimages' => t('Choose images to embed'), + '$modalchoosealbum' => t('Choose an album'), + '$modaldiffalbum' => t('Choose a different album'), + '$modalerrorlist' => t('Error getting album list'), + '$modalerrorlink' => t('Error getting photo link'), + '$modalerroralbum' => t('Error getting album'), '$form_security_token' => get_form_security_token("cover_photo"), /// @FIXME - yuk - '$select' => sprintf('%s %s', t('or'), ($newuser) ? '' . t('skip this step') . '' : '' . t('select a photo from your photo albums') . '') + '$select' => t('Select existing photo'), + )); call_hooks('cover_photo_content_end', $o); diff --git a/Zotlabs/Module/Directory.php b/Zotlabs/Module/Directory.php index b1552a694..62a1670f9 100644 --- a/Zotlabs/Module/Directory.php +++ b/Zotlabs/Module/Directory.php @@ -17,7 +17,7 @@ class Directory extends \Zotlabs\Web\Controller { intval(local_channel()), dbesc($_GET['ignore']) ); - goaway(z_root() . '/directory?suggest=1'); + goaway(z_root() . '/directory?f=&suggest=1'); } $observer = get_observer_hash(); @@ -101,6 +101,11 @@ class Directory extends \Zotlabs\Web\Controller { if($suggest) { $r = suggestion_query(local_channel(),get_observer_hash()); + + if(! $r) { + notice( t('No default suggestions were found.') . EOL); + return; + } // Remember in which order the suggestions were $addresses = array(); diff --git a/Zotlabs/Module/Display.php b/Zotlabs/Module/Display.php index 11dd0d174..8e8a1ed24 100644 --- a/Zotlabs/Module/Display.php +++ b/Zotlabs/Module/Display.php @@ -215,6 +215,7 @@ class Display extends \Zotlabs\Web\Controller { $pager_sql = sprintf(" LIMIT %d OFFSET %d ", intval(\App::$pager['itemspage']),intval(\App::$pager['start'])); if($load || ($checkjs->disabled()) || ($module_format !== 'html')) { + $r = null; require_once('include/channel.php'); @@ -235,7 +236,7 @@ class Display extends \Zotlabs\Web\Controller { } } - if($r === null) { + if(! $r) { // in case somebody turned off public access to sys channel content using permissions // make that content unsearchable by ensuring the owner uid can't match @@ -281,7 +282,7 @@ class Display extends \Zotlabs\Web\Controller { } } - if($r === null) { + if(! $r) { // in case somebody turned off public access to sys channel content using permissions // make that content unsearchable by ensuring the owner_xchan can't match if(! perm_is_allowed($sysid,$observer_hash,'view_stream')) diff --git a/Zotlabs/Module/Email_validation.php b/Zotlabs/Module/Email_validation.php index b8bb720cd..c1ba9a01a 100644 --- a/Zotlabs/Module/Email_validation.php +++ b/Zotlabs/Module/Email_validation.php @@ -7,12 +7,11 @@ class Email_validation extends \Zotlabs\Web\Controller { function post() { + $success = false; if($_POST['token']) { // This will redirect internally on success unless the channel is auto_created - if(! account_approve(trim(basename($_POST['token'])))) { - notice('Token verification failed.'); - } - else { + if(account_approve(trim(basename($_POST['token'])))) { + $success = true; if(get_config('system','auto_channel_create')) { $next_page = get_config('system', 'workflow_channel_next', 'profiles'); } @@ -21,7 +20,9 @@ class Email_validation extends \Zotlabs\Web\Controller { } } } - + if(! $success) { + notice( t('Token verification failed.') . EOL); + } } diff --git a/Zotlabs/Module/Embedphotos.php b/Zotlabs/Module/Embedphotos.php index 15cc68d7f..bcbb0e116 100644 --- a/Zotlabs/Module/Embedphotos.php +++ b/Zotlabs/Module/Embedphotos.php @@ -53,7 +53,7 @@ class Embedphotos extends \Zotlabs\Web\Controller { } else { json_return_and_die(array('errormsg' => 'Error retrieving resource ' . $resource_id, 'status' => false)); } - json_return_and_die(array('status' => true, 'photolink' => $photolink)); + json_return_and_die(array('status' => true, 'photolink' => $photolink, 'resource_id' => $resource_id)); } } diff --git a/Zotlabs/Module/Follow.php b/Zotlabs/Module/Follow.php index d8a86d0ce..d441f21d2 100644 --- a/Zotlabs/Module/Follow.php +++ b/Zotlabs/Module/Follow.php @@ -14,21 +14,26 @@ class Follow extends \Zotlabs\Web\Controller { } $uid = local_channel(); - $url = notags(trim($_REQUEST['url'])); + $url = notags(trim(unpunify($_REQUEST['url']))); $return_url = $_SESSION['return_url']; $confirm = intval($_REQUEST['confirm']); - + $interactive = (($_REQUEST['interactive']) ? intval($_REQUEST['interactive']) : 1); $channel = \App::get_channel(); - $result = new_contact($uid,$url,$channel,true,$confirm); + $result = new_contact($uid,$url,$channel,$interactive,$confirm); if($result['success'] == false) { if($result['message']) notice($result['message']); - goaway($return_url); + if($interactive) { + goaway($return_url); + } + else { + json_return_and_die($result); + } } - info( t('Channel added.') . EOL); + info( t('Connection added.') . EOL); $clone = array(); foreach($result['abook'] as $k => $v) { @@ -53,7 +58,12 @@ class Follow extends \Zotlabs\Web\Controller { if(($can_view_stream) || ($result['abook']['xchan_network'] === 'rss')) \Zotlabs\Daemon\Master::Summon(array('Onepoll',$result['abook']['abook_id'])); - goaway(z_root() . '/connedit/' . $result['abook']['abook_id'] . '?f=&follow=1'); + if($interactive) { + goaway(z_root() . '/connedit/' . $result['abook']['abook_id'] . '?f=&follow=1'); + } + else { + json_return_and_die([ 'success' => true ]); + } } diff --git a/Zotlabs/Module/Go.php b/Zotlabs/Module/Go.php index 2c2dcf460..d33136d9e 100644 --- a/Zotlabs/Module/Go.php +++ b/Zotlabs/Module/Go.php @@ -33,9 +33,10 @@ class Go extends \Zotlabs\Web\Controller { $options = [ 'profile_photo' => t('Upload a profile photo'), + 'cover_photo' => t('Upload a cover photo'), 'profiles' => t('Edit your default profile'), 'suggest' => t('View friend suggestions'), - 'directory' => t('View the directory to find other interesting channels'), + 'directory' => t('View the channel directory'), 'settings' => t('View/edit your channel settings'), 'help' => t('View the site or project documentation'), 'channel/' . $channel['channel_address'] => t('Visit your channel homepage'), diff --git a/Zotlabs/Module/Hashtags.php b/Zotlabs/Module/Hashtags.php new file mode 100644 index 000000000..edb631871 --- /dev/null +++ b/Zotlabs/Module/Hashtags.php @@ -0,0 +1,27 @@ + strtolower($rv['term']) ]; + } + } + + json_return_and_die($result); + } +} \ No newline at end of file diff --git a/Zotlabs/Module/Import.php b/Zotlabs/Module/Import.php index 2b16ff4e1..81c405f00 100644 --- a/Zotlabs/Module/Import.php +++ b/Zotlabs/Module/Import.php @@ -64,7 +64,7 @@ class Import extends \Zotlabs\Web\Controller { notice( t('Nothing to import.') . EOL); return; } else if(strpos($old_address, '@')) { - // if you copy the identity address from your profile page, make it work for convenience + // if you copy the identity address from your profile page, make it work for convenience - WARNING: this is a utf-8 variant and NOT an ASCII ampersand. Please do not edit. $old_address = str_replace('@', '@', $old_address); } @@ -114,15 +114,16 @@ class Import extends \Zotlabs\Web\Controller { return; } - if(array_key_exists('compatibility',$data) && array_key_exists('database',$data['compatibility'])) { - $v1 = substr($data['compatibility']['database'],-4); - $v2 = substr(DB_UPDATE_VERSION,-4); - if($v2 > $v1) { - $t = sprintf( t('Warning: Database versions differ by %1$d updates.'), $v2 - $v1 ); - notice($t); - } - - } +// This is only an info message but it is alarming to folks who then report failure with this as the cause, when in fact we ignore this completely. +// if(array_key_exists('compatibility',$data) && array_key_exists('database',$data['compatibility'])) { +// $v1 = substr($data['compatibility']['database'],-4); +// $v2 = substr(DB_UPDATE_VERSION,-4); +// if($v2 > $v1) { +// $t = sprintf( t('Warning: Database versions differ by %1$d updates.'), $v2 - $v1 ); +// notice($t); +// } +// +// } if($moving) $seize = 1; diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index 3f857030b..fba2ef7a4 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -830,6 +830,12 @@ class Item extends \Zotlabs\Web\Controller { $datarray['plink'] = $plink; $datarray['route'] = $route; + + // A specific ACL over-rides public_policy completely + + if(! empty_acl($datarray)) + $datarray['public_policy'] = ''; + if($iconfig) $datarray['iconfig'] = $iconfig; diff --git a/Zotlabs/Module/Magic.php b/Zotlabs/Module/Magic.php index 9ad9c951c..15e5cedcf 100644 --- a/Zotlabs/Module/Magic.php +++ b/Zotlabs/Module/Magic.php @@ -166,7 +166,7 @@ class Magic extends \Zotlabs\Web\Controller { $token = random_string(); - \Zotlabs\Zot\Verify::create('auth',$channel['channel_id'],$token,$x[0]['hubloc_url']); + \Zotlabs\Lib\Verify::create('auth',$channel['channel_id'],$token,$x[0]['hubloc_url']); $target_url = $x[0]['hubloc_callback'] . '/?f=&auth=' . urlencode(channel_reddress($channel)) . '&sec=' . $token . '&dest=' . urlencode($dest) . '&version=' . ZOT_REVISION; diff --git a/Zotlabs/Module/New_channel.php b/Zotlabs/Module/New_channel.php index 548f28c4f..ea9f27447 100644 --- a/Zotlabs/Module/New_channel.php +++ b/Zotlabs/Module/New_channel.php @@ -16,8 +16,15 @@ class New_channel extends \Zotlabs\Web\Controller { require_once('library/urlify/URLify.php'); $result = array('error' => false, 'message' => ''); $n = trim($_REQUEST['name']); - - $x = strtolower(\URLify::transliterate($n)); + + $x = false; + + if(get_config('system','unicode_usernames')) { + $x = punify(mb_strtolower($n)); + } + + if((! $x) || strlen($x) > 64) + $x = strtolower(\URLify::transliterate($n)); $test = array(); @@ -43,7 +50,14 @@ class New_channel extends \Zotlabs\Web\Controller { $result = array('error' => false, 'message' => ''); $n = trim($_REQUEST['nick']); - $x = strtolower(\URLify::transliterate($n)); + $x = false; + + if(get_config('system','unicode_usernames')) { + $x = punify(mb_strtolower($n)); + } + + if((! $x) || strlen($x) > 64) + $x = strtolower(\URLify::transliterate($n)); $test = array(); diff --git a/Zotlabs/Module/Owa.php b/Zotlabs/Module/Owa.php index 23ee14f39..e62fc9592 100644 --- a/Zotlabs/Module/Owa.php +++ b/Zotlabs/Module/Owa.php @@ -42,7 +42,7 @@ class Owa extends \Zotlabs\Web\Controller { logger('OWA success: ' . $hubloc['hubloc_addr'],LOGGER_DATA); $ret['success'] = true; $token = random_string(32); - \Zotlabs\Zot\Verify::create('owt',0,$token,$hubloc['hubloc_addr']); + \Zotlabs\Lib\Verify::create('owt',0,$token,$hubloc['hubloc_addr']); $result = ''; openssl_public_encrypt($token,$result,$hubloc['xchan_pubkey']); $ret['encrypted_token'] = base64url_encode($result); diff --git a/Zotlabs/Module/Profile_photo.php b/Zotlabs/Module/Profile_photo.php index 222b92721..2ce8686b9 100644 --- a/Zotlabs/Module/Profile_photo.php +++ b/Zotlabs/Module/Profile_photo.php @@ -304,7 +304,7 @@ class Profile_photo extends \Zotlabs\Web\Controller { } $channel = \App::get_channel(); - + $pf = 0; $newuser = false; if(argc() == 2 && argv(1) === 'new') @@ -318,8 +318,8 @@ class Profile_photo extends \Zotlabs\Web\Controller { $resource_id = argv(2); - // When using an existing photo, we don't have a dialogue to offer a choice of profiles, - // so it gets attached to the default + + $pf = (($_REQUEST['pf']) ? intval($_REQUEST['pf']) : 0); $c = q("select id, is_default from profile where uid = %d", intval(local_channel()) @@ -331,6 +331,9 @@ class Profile_photo extends \Zotlabs\Web\Controller { $_REQUEST['profile'] = $c[0]['id']; $multi_profiles = false; } + else { + $_REQUEST['profile'] = $pf; + } $r = q("SELECT id, album, imgscale FROM photo WHERE uid = %d AND resource_id = '%s' ORDER BY imgscale ASC", intval(local_channel()), @@ -430,6 +433,16 @@ class Profile_photo extends \Zotlabs\Web\Controller { intval(local_channel()) ); + if($profiles) { + for($x = 0; $x < count($profiles); $x ++) { + $profiles[$x]['selected'] = false; + if($pf && $profiles[$x]['id'] == $pf) + $profiles[$x]['selected'] = true; + if((! $pf) && $profiles[$x]['is_default']) + $profiles[$x]['selected'] = true; + } + } + $importing = ((array_key_exists('importfile',\App::$data)) ? true : false); if(! x(\App::$data,'imagecrop')) { @@ -441,14 +454,23 @@ class Profile_photo extends \Zotlabs\Web\Controller { '$importfile' => (($importing) ? \App::$data['importfile'] : ''), '$lbl_upfile' => t('Upload File:'), '$lbl_profiles' => t('Select a profile:'), - '$title' => (($importing) ? t('Use Photo for Profile') : t('Upload Profile Photo')), + '$title' => (($importing) ? t('Use Photo for Profile') : t('Change Profile Photo')), '$submit' => (($importing) ? t('Use') : t('Upload')), '$profiles' => $profiles, '$single' => ((count($profiles) == 1) ? true : false), '$profile0' => $profiles[0], + '$embedPhotos' => t('Use a photo from your albums'), + '$embedPhotosModalTitle' => t('Use a photo from your albums'), + '$embedPhotosModalCancel' => t('Cancel'), + '$embedPhotosModalOK' => t('OK'), + '$modalchooseimages' => t('Choose images to embed'), + '$modalchoosealbum' => t('Choose an album'), + '$modaldiffalbum' => t('Choose a different album'), + '$modalerrorlist' => t('Error getting album list'), + '$modalerrorlink' => t('Error getting photo link'), + '$modalerroralbum' => t('Error getting album'), '$form_security_token' => get_form_security_token("profile_photo"), - // FIXME - yuk - '$select' => sprintf('%s %s', t('or'), ($newuser) ? '' . t('skip this step') . '' : '' . t('select a photo from your photo albums') . '') + '$select' => t('Select existing photo'), )); call_hooks('profile_photo_content_end', $o); diff --git a/Zotlabs/Module/Pubstream.php b/Zotlabs/Module/Pubstream.php index af7bc7658..79f205a22 100644 --- a/Zotlabs/Module/Pubstream.php +++ b/Zotlabs/Module/Pubstream.php @@ -12,10 +12,16 @@ class Pubstream extends \Zotlabs\Web\Controller { if($load) $_SESSION['loadtime'] = datetime_convert(); - if((observer_prohibited(true)) || (! (intval(get_config('system','open_pubstream',1))) && get_observer_hash())) { + if((observer_prohibited(true))) { return login(); } + if(! intval(get_config('system','open_pubstream',1))) { + if(! get_observer_hash()) { + return login(); + } + } + $site_firehose = ((intval(get_config('system','site_firehose',0))) ? true : false); $net_firehose = ((get_config('system','disable_discover_tab',1)) ? false : true); diff --git a/Zotlabs/Module/Register.php b/Zotlabs/Module/Register.php index c7fa1cee8..5356669e9 100644 --- a/Zotlabs/Module/Register.php +++ b/Zotlabs/Module/Register.php @@ -123,9 +123,6 @@ class Register extends \Zotlabs\Web\Controller { if($policy == REGISTER_OPEN ) { if($email_verify) { $res = verify_email_address($result); - if($res) { - info( t('Registration successful. Please check your email for validation instructions.') . EOL ) ; - } } else { $res = send_register_success_email($result['email'],$result['password']); @@ -133,7 +130,8 @@ class Register extends \Zotlabs\Web\Controller { if($res) { if($invite_code) { info( t('Registration successful. Continue to create your first channel...') . EOL ) ; - } else { + } + else { info( t('Registration successful. Please check your email for validation instructions.') . EOL ) ; } } diff --git a/Zotlabs/Module/Settings/Account.php b/Zotlabs/Module/Settings/Account.php index 18890e89f..9643c5958 100644 --- a/Zotlabs/Module/Settings/Account.php +++ b/Zotlabs/Module/Settings/Account.php @@ -113,7 +113,7 @@ class Account { '$origpass' => array('origpass', t('Current Password'), ' ',''), '$password1'=> array('npassword', t('Enter New Password'), '', ''), '$password2'=> array('confirm', t('Confirm New Password'), '', t('Leave password fields blank unless changing')), - '$techlevel' => [ 'techlevel', t('Your technical skill level'), $def_techlevel, t('Used to provide a member experience matched to your comfort level'), $techlevels ], + '$techlevel' => [ 'techlevel', t('Your technical skill level'), $def_techlevel, t('Used to provide a member experience and additional features consistent with your comfort level'), $techlevels ], '$techlock' => $techlock, '$submit' => t('Submit'), '$email' => array('email', t('Email Address:'), $email, ''), diff --git a/Zotlabs/Module/Settings/Featured.php b/Zotlabs/Module/Settings/Featured.php index 9c5a7b16c..542a05363 100644 --- a/Zotlabs/Module/Settings/Featured.php +++ b/Zotlabs/Module/Settings/Featured.php @@ -57,14 +57,28 @@ class Featured { } call_hooks('feature_settings', $settings_addons); - + + $this->sortpanels($settings_addons); + + $tpl = get_markup_template("settings_addons.tpl"); $o .= replace_macros($tpl, array( '$form_security_token' => get_form_security_token("settings_featured"), - '$title' => t('Feature/Addon Settings'), + '$title' => t('Addon Settings'), + '$descrip' => t('Please save/submit changes to any panel before opening another.'), '$settings_addons' => $settings_addons )); return $o; } - -} \ No newline at end of file + + function sortpanels(&$s) { + $a = explode('
',$s); + if($a) { + usort($a,'featured_sort'); + $s = implode('
',$a); + } + } + +} + + diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index 8e7fbbddf..a3832d156 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -563,16 +563,20 @@ class Setup extends \Zotlabs\Web\Controller { $status = true; $help = ''; - if( (file_exists('.htconfig.php') && !is_writable('.htconfig.php')) || - (!file_exists('.htconfig.php') && !is_writable('.')) ) { - $status = false; - $help = t('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.') .EOL; - $help .= t('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.').EOL; - $help .= t('At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder.').EOL; - $help .= t('You can alternatively skip this procedure and perform a manual installation. Please see the file "install/INSTALL.txt" for instructions.').EOL; + $fname = '.htconfig.php'; + + if((file_exists($fname) && is_writable($fname)) || + (! (file_exists($fname) && is_writable('.')))) { + $this->check_add($checks, t('.htconfig.php is writable'), $status, true, $help); + return; } - $this->check_add($checks, t('.htconfig.php is writable'), $status, false, $help); + $status = false; + $help = t('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.') .EOL; + $help .= t('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.').EOL; + $help .= t('Please see install/INSTALL.txt for additional information.'); + + $this->check_add($checks, t('.htconfig.php is writable'), $status, true, $help); } /** diff --git a/Zotlabs/Module/Sitelist.php b/Zotlabs/Module/Sitelist.php index e7d4187b7..2ac5ed1b8 100644 --- a/Zotlabs/Module/Sitelist.php +++ b/Zotlabs/Module/Sitelist.php @@ -32,7 +32,7 @@ class Sitelist extends \Zotlabs\Web\Controller { $result = array('success' => false); - $r = q("select count(site_url) as total from site where site_type = %d $sql_extra ", + $r = q("select count(site_url) as total from site where site_type = %d and site_dead = 0 $sql_extra ", intval(SITE_TYPE_ZOT) ); @@ -42,7 +42,7 @@ class Sitelist extends \Zotlabs\Web\Controller { $result['start'] = $start; $result['limit'] = $limit; - $r = q("select * from site where site_type = %d $sql_extra $sql_order $sql_limit", + $r = q("select * from site where site_type = %d and site_dead = 0 $sql_extra $sql_order $sql_limit", intval(SITE_TYPE_ZOT) ); diff --git a/Zotlabs/Module/Thing.php b/Zotlabs/Module/Thing.php index f816632ab..c3d8ff802 100644 --- a/Zotlabs/Module/Thing.php +++ b/Zotlabs/Module/Thing.php @@ -20,6 +20,11 @@ class Thing extends \Zotlabs\Web\Controller { $channel = \App::get_channel(); + if($_SERVER['REQUEST_METHOD'] === 'GET' && argc() < 2) { + profile_load($channel['channel_address']); + } + + $term_hash = (($_REQUEST['term_hash']) ? $_REQUEST['term_hash'] : ''); $name = escape_tags($_REQUEST['term']); diff --git a/Zotlabs/Module/Viewconnections.php b/Zotlabs/Module/Viewconnections.php index 1f9c03751..8366e1325 100644 --- a/Zotlabs/Module/Viewconnections.php +++ b/Zotlabs/Module/Viewconnections.php @@ -44,7 +44,7 @@ class Viewconnections extends \Zotlabs\Web\Controller { $sql_extra = ''; if(! $is_owner) { - $abook_flags = " and abook_hidden = 0 "; + $abook_flags .= " and abook_hidden = 0 "; $sql_extra = " and xchan_hidden = 0 "; } @@ -69,8 +69,13 @@ class Viewconnections extends \Zotlabs\Web\Controller { $contacts = array(); foreach($r as $rr) { + + $oneway = false; + if(! intval(get_abconfig(\App::$profile['uid'],$rr['xchan_hash'],'their_perms','post_comments'))) { + $oneway = true; + } - $url = chanlink_hash($rr['xchan_hash']); + $url = chanlink_hash($rr['xchan_hash']); if($url) { $contacts[] = array( 'id' => $rr['abook_id'], @@ -83,6 +88,7 @@ class Viewconnections extends \Zotlabs\Web\Controller { 'sparkle' => '', 'itemurl' => $rr['url'], 'network' => '', + 'oneway' => $oneway ); } } diff --git a/Zotlabs/Module/Wfinger.php b/Zotlabs/Module/Wfinger.php index 753721d27..81d4beaed 100644 --- a/Zotlabs/Module/Wfinger.php +++ b/Zotlabs/Module/Wfinger.php @@ -123,7 +123,8 @@ class Wfinger extends \Zotlabs\Web\Controller { $result['properties'] = [ 'http://webfinger.net/ns/name' => $r[0]['channel_name'], 'http://xmlns.com/foaf/0.1/name' => $r[0]['channel_name'], - 'https://w3id.org/security/v1#publicKeyPem' => $r[0]['xchan_pubkey'] + 'https://w3id.org/security/v1#publicKeyPem' => $r[0]['xchan_pubkey'], + 'http://purl.org/zot/federation' => 'zot' ]; foreach($aliases as $alias) diff --git a/Zotlabs/Storage/Browser.php b/Zotlabs/Storage/Browser.php index c21b68971..f1c95802b 100644 --- a/Zotlabs/Storage/Browser.php +++ b/Zotlabs/Storage/Browser.php @@ -264,7 +264,10 @@ class Browser extends DAV\Browser\Plugin { $this->server->emit('onHTMLActionsPanel', array($parent, &$output, $path)); } - + $deftiles = (($is_owner) ? 0 : 1); + $tiles = ((array_key_exists('cloud_tiles',$_SESSION)) ? intval($_SESSION['cloud_tiles']) : $deftiles); + $_SESSION['cloud_tiles'] = $tiles; + $html .= replace_macros(get_markup_template('cloud.tpl'), array( '$header' => t('Files') . ": " . $this->escapeHTML($path) . "/", '$total' => t('Total'), diff --git a/Zotlabs/Update/_1204.php b/Zotlabs/Update/_1204.php new file mode 100644 index 000000000..0b9204b9b --- /dev/null +++ b/Zotlabs/Update/_1204.php @@ -0,0 +1,34 @@ +fetcharr(); $body = $data['body']; @@ -47,7 +56,7 @@ class HTTPSig { else { $headers = []; - $headers['(request-target)'] = + $headers['(request-target)'] = strtolower($_SERVER['REQUEST_METHOD']) . ' ' . $_SERVER['REQUEST_URI']; foreach($_SERVER as $k => $v) { @@ -78,7 +87,7 @@ class HTTPSig { $result['header_signed'] = true; $signed_headers = $sig_block['headers']; - if(! $signed_headers) + if(! $signed_headers) $signed_headers = [ 'date' ]; $signed_data = ''; @@ -131,7 +140,7 @@ class HTTPSig { if($digest[0] === 'SHA-512') $hashalg = 'sha512'; - // The explode operation will have stripped the '=' padding, so compare against unpadded base64 + // The explode operation will have stripped the '=' padding, so compare against unpadded base64 if(rtrim(base64_encode(hash($hashalg,$body,true)),'=') === $digest[1]) { $result['content_valid'] = true; } @@ -146,7 +155,7 @@ class HTTPSig { if($digest[0] === 'SHA-512') $hashalg = 'sha512'; - // The explode operation will have stripped the '=' padding, so compare against unpadded base64 + // The explode operation will have stripped the '=' padding, so compare against unpadded base64 if(rtrim(base64_encode(hash($hashalg,$_POST['data'],true)),'=') === $digest[1]) { $result['content_valid'] = true; } @@ -155,9 +164,15 @@ class HTTPSig { logger('Content_Valid: ' . (($result['content_valid']) ? 'true' : 'false')); return $result; - } + /** + * @brief + * + * @param string $id + * @return boolean|string + * false if no pub key found, otherwise return the pub key + */ function get_activitypub_key($id) { if(strpos($id,'acct:') === 0) { @@ -180,19 +195,33 @@ class HTTPSig { $j = json_decode($r,true); if($j['id'] !== $id) - return false; + return false; + if(array_key_exists('publicKey',$j) && array_key_exists('publicKeyPem',$j['publicKey'])) { return($j['publicKey']['publicKeyPem']); } } + return false; } - - - - static function create_sig($request,$head,$prvkey,$keyid = 'Key',$send_headers = false,$auth = false,$alg = 'sha256', - $crypt_key = null, $crypt_algo = 'aes256ctr') { + /** + * @brief + * + * @param string $request + * @param array $head + * @param string $prvkey + * @param string $keyid (optional, default 'Key') + * @param boolean $send_headers (optional, default false) + * If set send a HTTP header + * @param boolean $auth (optional, default false) + * @param string $alg (optional, default 'sha256') + * @param string $crypt_key (optional, default null) + * @param string $crypt_algo (optional, default 'aes256ctr') + * @return array + */ + static function create_sig($request, $head, $prvkey, $keyid = 'Key', $send_headers = false, $auth = false, + $alg = 'sha256', $crypt_key = null, $crypt_algo = 'aes256ctr') { $return_headers = []; @@ -212,7 +241,7 @@ class HTTPSig { $x = crypto_encapsulate($headerval,$crypt_key,$crypt_algo); $headerval = 'iv="' . $x['iv'] . '",key="' . $x['key'] . '",alg="' . $x['alg'] . '",data="' . $x['data'] . '"'; } - + if($auth) { $sighead = 'Authorization: Signature ' . $headerval; } @@ -236,12 +265,20 @@ class HTTPSig { else { $return_headers[] = $sighead; } + return $return_headers; } - - - static function sign($request,$head,$prvkey,$alg = 'sha256') { + /** + * @brief + * + * @param string $request + * @param array $head + * @param string $prvkey + * @param string $alg (optional) default 'sha256' + * @return array + */ + static function sign($request, $head, $prvkey, $alg = 'sha256') { $ret = []; @@ -250,27 +287,38 @@ class HTTPSig { if($request) { $headers = '(request-target)' . ': ' . trim($request) . "\n"; $fields = '(request-target)'; - } + } if($head) { foreach($head as $k => $v) { $headers .= strtolower($k) . ': ' . trim($v) . "\n"; if($fields) $fields .= ' '; + $fields .= strtolower($k); } // strip the trailing linefeed $headers = rtrim($headers,"\n"); } - $sig = base64_encode(rsa_sign($headers,$prvkey,$alg)); + $sig = base64_encode(rsa_sign($headers,$prvkey,$alg)); $ret['headers'] = $fields; $ret['signature'] = $sig; - + return $ret; } + /** + * @brief + * + * @param string $header + * @return array associate array with + * - \e string \b keyID + * - \e string \b algorithm + * - \e array \b headers + * - \e string \b signature + */ static function parse_sigheader($header) { $ret = []; @@ -297,12 +345,23 @@ class HTTPSig { } - static function decrypt_sigheader($header,$prvkey = null) { + /** + * @brief + * + * @param string $header + * @param string $prvkey (optional), if not set use site private key + * @return array|string associative array, empty string if failue + * - \e string \b iv + * - \e string \b key + * - \e string \b alg + * - \e string \b data + */ + static function decrypt_sigheader($header, $prvkey = null) { $iv = $key = $alg = $data = null; if(! $prvkey) { - $prvkey = get_config('system','prvkey'); + $prvkey = get_config('system', 'prvkey'); } $matches = []; @@ -319,10 +378,8 @@ class HTTPSig { if($iv && $key && $alg && $data) { return crypto_unencapsulate([ 'iv' => $iv, 'key' => $key, 'alg' => $alg, 'data' => $data ] , $prvkey); } - return ''; + return ''; } } - - diff --git a/Zotlabs/Widget/Newmember.php b/Zotlabs/Widget/Newmember.php new file mode 100644 index 000000000..cdb70e23d --- /dev/null +++ b/Zotlabs/Widget/Newmember.php @@ -0,0 +1,83 @@ + t('Upload profile photo'), + 'cover_photo' => t('Upload cover photo'), + 'profiles' => t('Edit your profile'), + ], + + t('Find and Connect with others'), + [ + 'directory' => t('View the directory'), + 'directory?f=&suggest=1' => t('View friend suggestions'), + 'connections' => t('Manage your connections'), + ], + + t('Communicate'), + [ + 'channel/' . $channel['channel_address'] => t('View your channel homepage'), + 'network' => t('View your network stream'), + ], + + t('Miscellaneous'), + [ + 'settings' => t('Settings'), + 'help' => t('Documentation'), + ] + ]; + + $site_firehose = ((intval(get_config('system','site_firehose',0))) ? true : false); + $net_firehose = ((get_config('system','disable_discover_tab',1)) ? false : true); + + + // hack to put this in the correct spot of the array + + if($site_firehose || $net_firehose) { + $options[5]['pubstream'] = t('View public stream'); + } + + $o = replace_macros(get_markup_template('new_member.tpl'), [ + '$title' => t('New Member Links'), + '$options' => $options + + ]); + + return $o; + + } + +} + + + diff --git a/Zotlabs/Widget/Notifications.php b/Zotlabs/Widget/Notifications.php index d51cb0113..f2619c5cf 100644 --- a/Zotlabs/Widget/Notifications.php +++ b/Zotlabs/Widget/Notifications.php @@ -23,7 +23,8 @@ class Notifications { 'label' => t('Mark all notifications read') ], 'filter' => [ - 'label' => t('Show new posts only') + 'posts_label' => t('Show new posts only'), + 'name_label' => t('Filter by name') ] ]; @@ -41,7 +42,8 @@ class Notifications { 'label' => t('Mark all notifications seen') ], 'filter' => [ - 'label' => t('Show new posts only') + 'posts_label' => t('Show new posts only'), + 'name_label' => t('Filter by name') ] ]; @@ -136,7 +138,8 @@ class Notifications { 'label' => t('Mark all notifications seen') ], 'filter' => [ - 'label' => t('Show new posts only') + 'posts_label' => t('Show new posts only'), + 'name_label' => t('Filter by name') ] ]; } diff --git a/Zotlabs/Widget/Settings_menu.php b/Zotlabs/Widget/Settings_menu.php index e15ed96a5..455fdcb9b 100644 --- a/Zotlabs/Widget/Settings_menu.php +++ b/Zotlabs/Widget/Settings_menu.php @@ -54,7 +54,7 @@ class Settings_menu { } $tabs[] = array( - 'label' => t('Feature/Addon settings'), + 'label' => t('Addon settings'), 'url' => z_root().'/settings/featured', 'selected' => ((argv(1) === 'featured') ? 'active' : ''), ); @@ -79,7 +79,7 @@ class Settings_menu { 'selected' => '' ); - if(get_account_techlevel() > 0) { + if(feature_enabled(local_channel(),'oauth_clients')) { $tabs[] = array( 'label' => t('Connected apps'), 'url' => z_root() . '/settings/oauth', @@ -87,7 +87,7 @@ class Settings_menu { ); } - if(get_account_techlevel() > 2) { + if(feature_enabled(local_channel(),'access_tokens')) { $tabs[] = array( 'label' => t('Guest Access Tokens'), 'url' => z_root() . '/settings/tokens', diff --git a/boot.php b/boot.php index 307d0c888..44466b26c 100755 --- a/boot.php +++ b/boot.php @@ -50,10 +50,11 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '3.1.12' ); -define ( 'ZOT_REVISION', '1.3' ); +define ( 'STD_VERSION', '3.3.2' ); +define ( 'ZOT_REVISION', '6.0a' ); -define ( 'DB_UPDATE_VERSION', 1203 ); + +define ( 'DB_UPDATE_VERSION', 1209 ); define ( 'PROJECT_BASE', __DIR__ ); @@ -84,8 +85,6 @@ define ( 'DIRECTORY_FALLBACK_MASTER', 'https://gravizot.de'); $DIRECTORY_FALLBACK_SERVERS = array( 'https://hubzilla.zottel.net', - 'https://my.federated.social', - //'https://hubzilla.nl', 'https://gravizot.de' ); @@ -1688,10 +1687,15 @@ function remote_channel() { function can_view_public_stream() { - if((observer_prohibited(true)) - || (! (intval(get_config('system','open_pubstream',1))) && get_observer_hash())) { + if(observer_prohibited(true)) { return false; } + + if(! (intval(get_config('system','open_pubstream',1)))) { + if(! get_observer_hash()) { + return false; + } + } $site_firehose = ((intval(get_config('system','site_firehose',0))) ? true : false); $net_firehose = ((get_config('system','disable_discover_tab',1)) ? false : true); diff --git a/doc/hidden_configs.bb b/doc/hidden_configs.bb index f34c253ce..8b5429deb 100644 --- a/doc/hidden_configs.bb +++ b/doc/hidden_configs.bb @@ -28,6 +28,7 @@ Options are: [*= system.prevent_tag_hijacking ] Prevent foreign networks hijacking hashtags in your posts and directing them at its own resources. [*= system.startpage ] Another of those technically hidden configs made available by addons. Sets the default page to view when logging in. This is exposed to the UI by the startpage addon. [*= system.taganyone ] Requires the config of the same name to be enabled. Allow the @mention tagging of anyone, whether you are connected or not. This doesn't scale. + [*= system.anonymous_comments ] By default or if set to 1, custom permissions can be set to allow anonymous (moderated) comments like WordPress, moderated by the channel owner. If set to 0, no member of your site can select or enable this. [*= system.user_scalable ] Determine if the app is scalable on touch screens. Defaults to on, to disable, set to zero - real zero, not just false. [/dl] [h2]Site config[/h2][dl terms="mb"] diff --git a/include/account.php b/include/account.php index 3ac485974..40cf281c3 100644 --- a/include/account.php +++ b/include/account.php @@ -530,7 +530,7 @@ function account_deny($hash) { function account_approve($hash) { - $ret = array('success' => false); + $ret = false; // Note: when the password in the register table is 'verify', the uid actually contains the account_id diff --git a/include/bbcode.php b/include/bbcode.php index 03a46444b..b33766757 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -668,6 +668,31 @@ function bb_fixtable_lf($match) { } +function bbtopoll($s) { + + $pl = []; + + $match = ''; + if(! preg_match("/\[poll=(.*?)\](.*?)\[\/poll\]/ism",$s,$match)) { + return null; + } + $pl['poll_id'] = $match[1]; + $pl['poll_question'] = $match[2]; + + $match = ''; + if(preg_match_all("/\[poll\-answer=(.*?)\](.*?)\[\/poll\-answer\]/is",$s,$match,PREG_SET_ORDER)) { + $pl['answer'] = []; + foreach($match as $m) { + $ans = [ 'answer_id' => $m[1], 'answer_text' => $m[2] ]; + $pl['answer'][] = $ans; + } + } + + return $pl; + +} + + function parseIdentityAwareHTML($Text) { // Hide all [noparse] contained bbtags by spacefying them @@ -766,6 +791,11 @@ function bbcode($Text, $options = []) { $ev = bbtoevent($Text); + // and the same with polls + + $pl = bbtopoll($Text); + + // process [observer] tags before we do anything else because we might // be stripping away stuff that then doesn't need to be worked on anymore diff --git a/include/channel.php b/include/channel.php index 625ce16c8..c94f5c657 100644 --- a/include/channel.php +++ b/include/channel.php @@ -1126,8 +1126,7 @@ function channel_export_items($channel_id, $start, $finish) { /** * @brief Loads a profile into the App structure. * - * The function requires a writeable copy of the main App structure, and the - * nickname of a valid channel. + * The function requires the nickname of a valid channel. * * Permissions of the current observer are checked. If a restricted profile is available * to the current observer, that will be loaded instead of the channel default profile. @@ -1235,7 +1234,7 @@ function profile_load($nickname, $profile = '') { ); if($z) { $p[0]['picdate'] = $z[0]['xchan_photo_date']; - $p[0]['reddress'] = str_replace('@','@',$z[0]['xchan_addr']); + $p[0]['reddress'] = str_replace('@','@',unpunify($z[0]['xchan_addr'])); } // fetch user tags if this isn't the default profile @@ -1256,7 +1255,7 @@ function profile_load($nickname, $profile = '') { App::$profile = $p[0]; App::$profile_uid = $p[0]['profile_uid']; - App::$page['title'] = App::$profile['channel_name'] . " - " . channel_reddress(App::$profile); + App::$page['title'] = App::$profile['channel_name'] . " - " . unpunify(channel_reddress(App::$profile)); App::$profile['permission_to_view'] = $can_view_profile; @@ -1449,6 +1448,7 @@ function profile_sidebar($profile, $block = 0, $show_connect = true, $zcard = fa '$reddress' => $reddress, '$rating' => '', '$contact_block' => $contact_block, + '$change_photo' => t('Change your profile photo'), '$editmenu' => profile_edit_menu($profile['uid']) )); @@ -1896,8 +1896,9 @@ function is_public_profile() { function get_profile_fields_basic($filter = 0) { $profile_fields_basic = (($filter == 0) ? get_config('system','profile_fields_basic') : null); + if(! $profile_fields_basic) - $profile_fields_basic = array('fullname','pdesc','chandesc','comms','gender','dob','dob_tz','address','locality','region','postal_code','country_name','marital','sexual','homepage','hometown','keywords','about','contact'); + $profile_fields_basic = array('fullname','pdesc','chandesc','comms','gender','dob','dob_tz','region','country_name','marital','sexual','homepage','hometown','keywords','about','contact'); $x = array(); if($profile_fields_basic) @@ -1912,7 +1913,7 @@ function get_profile_fields_advanced($filter = 0) { $basic = get_profile_fields_basic($filter); $profile_fields_advanced = (($filter == 0) ? get_config('system','profile_fields_advanced') : null); if(! $profile_fields_advanced) - $profile_fields_advanced = array('partner','howlong','politic','religion','likes','dislikes','interest','channels','music','book','film','tv','romance','employment','education'); + $profile_fields_advanced = array('address','locality','postal_code','partner','howlong','politic','religion','likes','dislikes','interest','channels','music','book','film','tv','romance','employment','education'); $x = array(); if($basic) diff --git a/include/conversation.php b/include/conversation.php index 0bb9c769a..6374267eb 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1005,7 +1005,7 @@ function thread_author_menu($item, $mode = '') { $contact = App::$contacts[$item['author_xchan']]; else if($local_channel && $item['author']['xchan_addr']) - $follow_url = z_root() . '/follow/?f=&url=' . urlencode($item['author']['xchan_addr']); + $follow_url = z_root() . '/follow/?f=&url=' . urlencode($item['author']['xchan_addr']) . '&interactive=0'; if($item['uid'] > 0 && author_is_pmable($item['author'],$contact)) { @@ -1051,8 +1051,8 @@ function thread_author_menu($item, $mode = '') { 'menu' => 'follow', 'title' => t('Connect'), 'icon' => 'fw', - 'action' => '', - 'href' => $follow_url + 'action' => 'doFollowAuthor(\'' . $follow_url . '\'); return false;', + 'href' => '#', ]; } diff --git a/include/crypto.php b/include/crypto.php index ab33ba096..1040ac29b 100644 --- a/include/crypto.php +++ b/include/crypto.php @@ -119,21 +119,27 @@ function crypto_encapsulate($data,$pubkey,$alg='aes256cbc') { } function other_encapsulate($data,$pubkey,$alg) { + if(! $pubkey) logger('no key. data: ' . $data); - $oaep = false; + // This default will change in the future. For now make it backward compatible. - if(strpos($alg,'.oaep')) { - $oaep = true; - $subalg = substr($alg,0,-5); - } - else { - $subalg = $alg; + $padding = OPENSSL_PKCS1_PADDING; + $base = $alg; + + $exts = explode('.',$alg); + if(count($exts) > 1) { + switch($exts[1]) { + case 'oaep': + $padding = OPENSSL_PKCS1_OAEP_PADDING; + break; + } + $base = $exts[0]; } - $fn = strtoupper($subalg) . '_encrypt'; + $fn = strtoupper($base) . '_encrypt'; if(function_exists($fn)) { // A bit hesitant to use openssl_random_pseudo_bytes() as we know @@ -151,14 +157,14 @@ function other_encapsulate($data,$pubkey,$alg) { $iv = openssl_random_pseudo_bytes(256); $result['data'] = base64url_encode($fn($data,$key,$iv),true); // log the offending call so we can track it down - if(! openssl_public_encrypt($key,$k,$pubkey,(($oaep) ? OPENSSL_PKCS1_OAEP_PADDING : OPENSSL_PKCS1_PADDING))) { + if(! openssl_public_encrypt($key,$k,$pubkey,$padding)) { $x = debug_backtrace(); logger('RSA failed. ' . print_r($x[0],true)); } $result['alg'] = $alg; $result['key'] = base64url_encode($k,true); - openssl_public_encrypt($iv,$i,$pubkey,(($oaep) ? OPENSSL_PKCS1_OAEP_PADDING : OPENSSL_PKCS1_PADDING)); + openssl_public_encrypt($iv,$i,$pubkey,$padding); $result['iv'] = base64url_encode($i,true); return $result; } @@ -229,20 +235,25 @@ function crypto_unencapsulate($data,$prvkey) { function other_unencapsulate($data,$prvkey,$alg) { - $oaep = false; + // This default will change in the future. For now make it backward compatible. - if(strpos($alg,'.oaep')) { - $oaep = true; - $subalg = substr($alg,0,-5); - } - else { - $subalg = $alg; + $padding = OPENSSL_PKCS1_PADDING; + $base = $alg; + + $exts = explode('.',$alg); + if(count($exts) > 1) { + switch($exts[1]) { + case 'oaep': + $padding = OPENSSL_PKCS1_OAEP_PADDING; + break; + } + $base = $exts[0]; } - $fn = strtoupper($subalg) . '_decrypt'; + $fn = strtoupper($base) . '_decrypt'; if(function_exists($fn)) { - openssl_private_decrypt(base64url_decode($data['key']),$k,$prvkey,(($oaep) ? OPENSSL_PKCS1_OAEP_PADDING : OPENSSL_PKCS1_PADDING)); - openssl_private_decrypt(base64url_decode($data['iv']),$i,$prvkey,(($oaep) ? OPENSSL_PKCS1_OAEP_PADDING : OPENSSL_PKCS1_PADDING)); + openssl_private_decrypt(base64url_decode($data['key']),$k,$prvkey,$padding); + openssl_private_decrypt(base64url_decode($data['iv']),$i,$prvkey,$padding); return $fn(base64url_decode($data['data']),$k,$i); } else { diff --git a/include/datetime.php b/include/datetime.php index 1e9a1fa51..766c90d16 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -125,7 +125,7 @@ function datetime_convert($from = 'UTC', $to = 'UTC', $s = 'now', $fmt = "Y-m-d */ function dob($dob) { - if ($dob === '0000-00-00') + if ($dob === '0000-00-00' || $dob === '') $value = ''; else $value = (($year) ? datetime_convert('UTC','UTC',$dob,'Y-m-d') : datetime_convert('UTC','UTC',$dob,'m-d')); diff --git a/include/event.php b/include/event.php index c1cf59425..84a16e8be 100644 --- a/include/event.php +++ b/include/event.php @@ -1200,6 +1200,13 @@ function event_store_item($arr, $event) { )); } + // propagate the event resource_id so that posts containing it are easily searchable in downstream copies + // of the item which have not stored the actual event. Required for Diaspora event federation as Diaspora + // event_participation messages refer to the event resource_id as a parent, while out own event attendance + // activities refer to the item message_id as the parent. + + set_iconfig($item_arr, 'system','event_id',$event['event_hash'],true); + $res = item_store($item_arr); $item_id = $res['item_id']; @@ -1315,3 +1322,25 @@ function translate_type($type) { return [$type, t('Other') . ' (' . $type . ')']; } } + + +function cal_store_lowlevel($arr) { + + $store = [ + 'cal_aid' => ((array_key_exists('cal_aid',$arr)) ? $arr['cal_aid'] : 0), + 'cal_uid' => ((array_key_exists('cal_uid',$arr)) ? $arr['cal_uid'] : 0), + 'cal_hash' => ((array_key_exists('cal_hash',$arr)) ? $arr['cal_hash'] : ''), + 'cal_name' => ((array_key_exists('cal_name',$arr)) ? $arr['cal_name'] : ''), + 'uri' => ((array_key_exists('uri',$arr)) ? $arr['uri'] : ''), + 'logname' => ((array_key_exists('logname',$arr)) ? $arr['logname'] : ''), + 'pass' => ((array_key_exists('pass',$arr)) ? $arr['pass'] : ''), + 'ctag' => ((array_key_exists('ctag',$arr)) ? $arr['ctag'] : ''), + 'synctoken' => ((array_key_exists('synctoken',$arr)) ? $arr['synctoken'] : ''), + 'cal_types' => ((array_key_exists('cal_types',$arr)) ? $arr['cal_types'] : ''), + ]; + + return create_table_from_array('cal', $store); + +} + + diff --git a/include/features.php b/include/features.php index 839faff67..993266977 100644 --- a/include/features.php +++ b/include/features.php @@ -54,14 +54,6 @@ function get_features($filtered = true) { t('General Features'), - [ - 'multi_profiles', - t('Multiple Profiles'), - t('Ability to create multiple profiles'), - false, - get_config('feature_lock','multi_profiles'), - feature_level('multi_profiles',3), - ], [ 'advanced_profiles', @@ -163,14 +155,6 @@ function get_features($filtered = true) { feature_level('ajaxchat',1), ], - [ - 'permcats', - t('Permission Groups'), - t('Provide alternate connection permission roles.'), - false, - get_config('feature_lock','permcats'), - feature_level('permcats',2), - ], [ 'smart_birthdays', @@ -219,6 +203,58 @@ function get_features($filtered = true) { ], ], + + 'access_control' => [ + t('Access Control and Permissions'), + + [ + 'groups', + t('Privacy Groups'), + t('Enable management and selection of privacy groups'), + true, + get_config('feature_lock','groups'), + feature_level('groups',0), + ], + + [ + 'multi_profiles', + t('Multiple Profiles'), + t('Ability to create multiple profiles'), + false, + get_config('feature_lock','multi_profiles'), + feature_level('multi_profiles',3), + ], + + + [ + 'permcats', + t('Permission Groups'), + t('Provide alternate connection permission roles.'), + false, + get_config('feature_lock','permcats'), + feature_level('permcats',2), + ], + + [ + 'oauth_clients', + t('OAuth Clients'), + t('Manage authenticatication tokens for mobile and remote apps.'), + false, + get_config('feature_lock','oauth_clients'), + feature_level('oauth_clients',1), + ], + + [ + 'access_tokens', + t('Access Tokens'), + t('Create access tokens so that non-members can access private content.'), + false, + get_config('feature_lock','access_tokens'), + feature_level('access_tokens',2), + ], + + ], + // Post composition 'composition' => [ @@ -312,14 +348,6 @@ function get_features($filtered = true) { feature_level('archives',1), ], - [ - 'groups', - t('Privacy Groups'), - t('Enable management and selection of privacy groups'), - true, - get_config('feature_lock','groups'), - feature_level('groups',0), - ], [ 'savedsearch', diff --git a/include/follow.php b/include/follow.php index 0843802c5..a63fe66ea 100644 --- a/include/follow.php +++ b/include/follow.php @@ -88,9 +88,18 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) // Premium channel, set confirm before callback to avoid recursion - if(array_key_exists('connect_url',$j) && ($interactive) && (! $confirm)) - goaway(zid($j['connect_url'])); - + if(array_key_exists('connect_url',$j) && (! $confirm)) { + if($interactive) { + goaway(zid($j['connect_url'])); + } + else { + $result['message'] = t('Premium channel - please visit:') . ' ' . zid($j['connect_url']); + logger('mod_follow: ' . $result['message']); + return $result; + } + } + + // do we have an xchan and hubloc? // If not, create them. diff --git a/include/items.php b/include/items.php index 68fa4c3b2..7faa1b9ec 100755 --- a/include/items.php +++ b/include/items.php @@ -969,6 +969,10 @@ function import_author_unknown($x) { return false; } +function empty_acl($item) { + return (($item['allow_cid'] === EMPTY_STR && $item['allow_gid'] === EMPTY_STR && $item['deny_cid'] === EMPTY_STR && $item['deny_gid'] === EMPTY_STR) ? true : false); +} + function encode_item($item,$mirror = false) { $x = array(); $x['type'] = 'activity'; @@ -1412,6 +1416,13 @@ function get_mail_elements($x) { } else { $arr['body'] = (($x['body']) ? htmlspecialchars($x['body'], ENT_COMPAT,'UTF-8',false) : ''); + + $maxlen = get_max_import_size(); + + if($maxlen && mb_strlen($arr['body']) > $maxlen) { + $arr['body'] = mb_substr($arr['body'],0,$maxlen,'UTF-8'); + logger('message length exceeds max_import_size: truncated'); + } } $arr['title'] = (($x['title'])? htmlspecialchars($x['title'],ENT_COMPAT,'UTF-8',false) : ''); @@ -2464,7 +2475,7 @@ function tag_deliver($uid, $item_id) { // this is an update (edit) to a post which was already processed by us and has a second delivery chain // Just start the second delivery chain to deliver the updated post // after resetting ownership and permission bits - + logger('updating edited tag_deliver post for ' . $u[0]['channel_address']); start_delivery_chain($u[0], $item, $item_id, 0); return; } @@ -2767,6 +2778,16 @@ function tgroup_check($uid, $item) { return false; } + + // see if we already have this item. Maybe it is being updated. + + $r = q("select id from item where mid = '%s' and uid = %d limit 1", + dbesc($item['mid']), + intval($uid) + ); + if($r) + return true; + if(! perm_is_allowed($uid,$item['author_xchan'],'tag_deliver')) return false; @@ -4003,18 +4024,24 @@ function zot_feed($uid, $observer_hash, $arr) { $item_normal = item_normal(); if(is_sys_channel($uid)) { - $r = q("SELECT parent, created, postopts from item - WHERE uid != %d - $item_normal + + $nonsys_uids = q("SELECT channel_id FROM channel WHERE channel_system = 0"); + $nonsys_uids_str = ids_to_querystr($nonsys_uids,'channel_id'); + + $r = q("SELECT parent, postopts FROM item + WHERE uid IN ( %s ) AND item_wall = 1 - and item_private = 0 $sql_extra ORDER BY created ASC $limit", - intval($uid) + AND item_private = 0 + $item_normal + $sql_extra ORDER BY created ASC $limit", + intval($nonsys_uids_str) ); } else { - $r = q("SELECT parent, created, postopts from item - WHERE uid = %d $item_normal + $r = q("SELECT parent, postopts FROM item + WHERE uid = %d AND item_wall = 1 + $item_normal $sql_extra ORDER BY created ASC $limit", intval($uid) ); diff --git a/include/network.php b/include/network.php index 0824183f7..f8cb68613 100644 --- a/include/network.php +++ b/include/network.php @@ -1617,13 +1617,16 @@ function get_site_info() { 'lastpoll' => get_config('system','lastpoll'), 'info' => (($site_info) ? $site_info : ''), 'channels_total' => $channels_total_stat, - 'channels_active_halfyear' => $channels_active_halfyear_stat, - 'channels_active_monthly' => $channels_active_monthly_stat, - 'local_posts' => $local_posts_stat, - 'local_comments' => $local_comments_stat, 'hide_in_statistics' => $hide_in_statistics ]; + if(! $hide_in_statistics) { + $data['channels_active_halfyear'] = $channels_active_halfyear_stat; + $data['channels_active_monthly'] = $channels_active_monthly_stat; + $data['local_posts'] = $local_posts_stat; + $data['local_comments'] = $local_comments_stat; + } + return $data; } diff --git a/include/socgraph.php b/include/socgraph.php index 87a880202..6cddbbaac 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -52,7 +52,7 @@ function poco_load($xchan = '', $url = null) { elseif($s['return_code'] == 404) logger('poco_load: nothing found'); else - logger('poco_load: returns ' . print_r($s,true)); + logger('poco_load: returns ' . print_r($s,true), LOGGER_DATA); return; } @@ -288,11 +288,14 @@ function suggestion_query($uid, $myxchan, $start = 0, $limit = 80) { function update_suggestions() { - $dirmode = get_config('system', 'directory_mode'); - if($dirmode === false) - $dirmode = DIRECTORY_MODE_NORMAL; + $dirmode = get_config('system', 'directory_mode', DIRECTORY_MODE_NORMAL); - if(($dirmode == DIRECTORY_MODE_PRIMARY) || ($dirmode == DIRECTORY_MODE_STANDALONE)) { + if($dirmode == DIRECTORY_MODE_STANDALONE) { + poco_load('', z_root() . '/poco'); + return; + } + + if($dirmode == DIRECTORY_MODE_PRIMARY) { $url = z_root() . '/sitelist'; } else { diff --git a/include/text.php b/include/text.php index 35a367d43..c1e064857 100644 --- a/include/text.php +++ b/include/text.php @@ -979,7 +979,7 @@ function contact_block() { // than wishful thinking; even though soapbox channels and feeds will disable it. if(! intval(get_abconfig(App::$profile['uid'],$rr['xchan_hash'],'their_perms','post_comments'))) { - $rr['archived'] = true; + $rr['oneway'] = true; } $micropro[] = micropro($rr,true,'mpfriend'); } @@ -1033,6 +1033,7 @@ function micropro($contact, $redirect = false, $class = '', $textmode = false) { return replace_macros(get_markup_template(($textmode)?'micropro_txt.tpl':'micropro_img.tpl'),array( '$click' => (($contact['click']) ? $contact['click'] : ''), '$class' => $class . (($contact['archived']) ? ' archived' : ''), + '$oneway' => (($contact['oneway']) ? true : false), '$url' => $url, '$photo' => $contact['xchan_photo_s'], '$name' => $contact['xchan_name'], @@ -2018,18 +2019,37 @@ function item_post_type($item) { return $post_type; } +// This needs to be fixed to use quoted tag strings function undo_post_tagging($s) { + $matches = null; + // undo tags and mentions $cnt = preg_match_all('/([@#])(\!*)\[zrl=(.*?)\](.*?)\[\/zrl\]/ism',$s,$matches,PREG_SET_ORDER); if($cnt) { foreach($matches as $mtch) { - $s = str_replace($mtch[0], $mtch[1] . $mtch[2] . str_replace(' ','_',$mtch[4]),$s); + $s = str_replace($mtch[0], $mtch[1] . $mtch[2] . quote_tag($mtch[4]),$s); } } + // undo forum tags + $cnt = preg_match_all('/\!\[zrl=(.*?)\](.*?)\[\/zrl\]/ism',$s,$matches,PREG_SET_ORDER); + if($cnt) { + foreach($matches as $mtch) { + $s = str_replace($mtch[0], '!' . quote_tag($mtch[2]),$s); + } + } + + return $s; } +function quote_tag($s) { + if(strpos($s,' ') !== false) + return '"' . $s . '"'; + return $s; +} + + function fix_mce_lf($s) { $s = str_replace("\r\n","\n",$s); // $s = str_replace("\n\n","\n",$s); @@ -3291,4 +3311,26 @@ function purify_filename($s) { return $s; } +// callback for sorting the settings/featured entries. + +function featured_sort($a,$b) { + $s1 = substr($a,strpos($a,'id='),20); + $s2 = substr($b,strpos($b,'id='),20); + return(strcmp($s1,$s2)); +} + + +function punify($s) { + require_once('vendor/simplepie/simplepie/idn/idna_convert.class.php'); + $x = new idna_convert(['encoding' => 'utf8']); + return $x->encode($s); + +} + +function unpunify($s) { + require_once('vendor/simplepie/simplepie/idn/idna_convert.class.php'); + $x = new idna_convert(['encoding' => 'utf8']); + return $x->decode($s); + +} diff --git a/include/zid.php b/include/zid.php index b3a7d1e6a..67c1d9f6c 100644 --- a/include/zid.php +++ b/include/zid.php @@ -265,9 +265,9 @@ function red_zrlify_img_callback($matches) { */ function owt_init($token) { - \Zotlabs\Zot\Verify::purge('owt', '3 MINUTE'); + \Zotlabs\Lib\Verify::purge('owt', '3 MINUTE'); - $ob_hash = \Zotlabs\Zot\Verify::get_meta('owt', 0, $token); + $ob_hash = \Zotlabs\Lib\Verify::get_meta('owt', 0, $token); if($ob_hash === false) { return; diff --git a/include/zot.php b/include/zot.php index d28e584a1..c11cace2a 100644 --- a/include/zot.php +++ b/include/zot.php @@ -171,6 +171,8 @@ function zot_build_packet($channel, $type = 'notify', $recipients = null, $remot * packet type: one of 'ping', 'pickup', 'purge', 'refresh', 'keychange', 'force_refresh', 'notify', 'auth_check' * @param array $recipients * envelope information, array ( 'guid' => string, 'guid_sig' => string ); empty for public posts + * @param string msg + * optional message * @param string $remote_key * optional public site key of target hub used to encrypt entire packet * NOTE: remote_key and encrypted packets are required for 'auth_check' packets, optional for all others @@ -299,7 +301,7 @@ function zot_zot($url, $data, $channel = null,$crypto = null) { if($channel) { $headers['X-Zot-Token'] = random_string(); $hash = \Zotlabs\Web\HTTPSig::generate_digest($data,false); - $headers['X-Zot-Digest'] = 'SHA-256=' . $hash; + $headers['X-Zot-Digest'] = 'SHA-256=' . $hash; $h = \Zotlabs\Web\HTTPSig::create_sig('',$headers,$channel['channel_prvkey'],'acct:' . $channel['channel_address'] . '@' . \App::get_hostname(),false,false,'sha512',(($crypto) ? $crypto['hubloc_sitekey'] : ''), (($crypto) ? zot_best_algorithm($crypto['site_crypto']) : '')); } @@ -393,7 +395,7 @@ function zot_refresh($them, $channel = null, $force = false) { if($s && intval($s[0]['site_dead']) && (! $force)) { logger('zot_refresh: site ' . $url . ' is marked dead and force flag is not set. Cancelling operation.'); return false; - } + } $token = random_string(); @@ -587,13 +589,16 @@ function zot_refresh($them, $channel = null, $force = false) { // If there is a default group for this channel, add this connection to it + // for pending connections this will happens at acceptance time. - $default_group = $channel['channel_default_group']; - if($default_group) { - require_once('include/group.php'); - $g = group_rec_byhash($channel['channel_id'],$default_group); - if($g) - group_add_member($channel['channel_id'],'',$x['hash'],$g['id']); + if(! intval($new_connection[0]['abook_pending'])) { + $default_group = $channel['channel_default_group']; + if($default_group) { + require_once('include/group.php'); + $g = group_rec_byhash($channel['channel_id'],$default_group); + if($g) + group_add_member($channel['channel_id'],'',$x['hash'],$g['id']); + } } unset($new_connection[0]['abook_id']); @@ -1156,7 +1161,7 @@ function zot_process_response($hub, $arr, $outq) { * and also that the signer and the sender match. * If that happens, we do not need to fetch/pickup the message - we have it already and it is verified. * Translate it into the form we need for zot_import() and import it. - * + * * Otherwise send back a pickup message, using our message tracking ID ($arr['secret']), which we will sign with our site * private key. * The entire pickup message is encrypted with the remote site's public key. @@ -1728,7 +1733,7 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $ foreach($deliveries as $d) { $local_public = $public; - $DR = new Zotlabs\Zot\DReport(z_root(),$sender['hash'],$d['hash'],$arr['mid']); + $DR = new Zotlabs\Lib\DReport(z_root(),$sender['hash'],$d['hash'],$arr['mid']); $r = q("select * from channel where channel_hash = '%s' limit 1", dbesc($d['hash']) @@ -2257,7 +2262,7 @@ function process_mail_delivery($sender, $arr, $deliveries) { foreach($deliveries as $d) { - $DR = new Zotlabs\Zot\DReport(z_root(),$sender['hash'],$d['hash'],$arr['mid']); + $DR = new Zotlabs\Lib\DReport(z_root(),$sender['hash'],$d['hash'],$arr['mid']); $r = q("select * from channel where channel_hash = '%s' limit 1", dbesc($d['hash']) @@ -3898,11 +3903,11 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { // we should probably do this for all items, but usually we only send one. if(array_key_exists('item',$arr) && is_array($arr['item'][0])) { - $DR = new Zotlabs\Zot\DReport(z_root(),$d['hash'],$d['hash'],$arr['item'][0]['message_id'],'channel sync processed'); + $DR = new Zotlabs\Lib\DReport(z_root(),$d['hash'],$d['hash'],$arr['item'][0]['message_id'],'channel sync processed'); $DR->addto_recipient($channel['channel_name'] . ' <' . channel_reddress($channel) . '>'); } else - $DR = new Zotlabs\Zot\DReport(z_root(),$d['hash'],$d['hash'],'sync packet','channel sync delivered'); + $DR = new Zotlabs\Lib\DReport(z_root(),$d['hash'],$d['hash'],'sync packet','channel sync delivered'); $result[] = $DR->get(); } @@ -4913,7 +4918,7 @@ function zot_reply_auth_check($data,$encrypted_packet) { * the web server. We should probably convert this to webserver time rather than DB time so * that the different clocks won't affect it and allow us to keep the time short. */ - Zotlabs\Zot\Verify::purge('auth', '30 MINUTE'); + Zotlabs\Lib\Verify::purge('auth', '30 MINUTE'); $y = q("select xchan_pubkey from xchan where xchan_hash = '%s' limit 1", dbesc($sender_hash) @@ -4954,7 +4959,7 @@ function zot_reply_auth_check($data,$encrypted_packet) { // This additionally checks for forged sites since we already stored the expected result in meta // and we've already verified that this is them via zot_gethub() and that their key signed our token - $z = Zotlabs\Zot\Verify::match('auth',$c[0]['channel_id'],$data['secret'],$data['sender']['url']); + $z = Zotlabs\Lib\Verify::match('auth',$c[0]['channel_id'],$data['secret'],$data['sender']['url']); if (! $z) { logger('mod_zot: auth_check: verification key not found.'); $ret['message'] .= 'verification key not found' . EOL; @@ -5090,7 +5095,7 @@ function zot_reply_refresh($sender, $recipients) { function zot6_check_sig() { $ret = [ 'success' => false ]; - + logger('server: ' . print_r($_SERVER,true), LOGGER_DATA); if(array_key_exists('HTTP_SIGNATURE',$_SERVER)) { diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index 36cd2539b..0d098d661 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -657,17 +657,15 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `uid_item_wall` (`uid`, `item_wall`), KEY `uid_item_starred` (`uid`, `item_starred`), KEY `uid_item_retained` (`uid`, `item_retained`), - KEY `aid` (`aid`), + KEY `uid_item_private` (`uid`, `item_private`), + KEY `uid_resource_type` (`uid`, `resource_type`), KEY `owner_xchan` (`owner_xchan`), KEY `author_xchan` (`author_xchan`), KEY `resource_id` (`resource_id`), KEY `resource_type` (`resource_type`), - KEY `item_restrict` (`item_restrict`), - KEY `item_flags` (`item_flags`), KEY `commented` (`commented`), KEY `verb` (`verb`), KEY `obj_type` (`obj_type`), - KEY `item_private` (`item_private`), KEY `llink` (`llink`), KEY `expires` (`expires`), KEY `revision` (`revision`), @@ -681,6 +679,7 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `comments_closed` (`comments_closed`), KEY `changed` (`changed`), KEY `item_origin` (`item_origin`), + KEY `item_wall` (`item_wall`), KEY `item_unseen` (`item_unseen`), KEY `item_uplink` (`item_uplink`), KEY `item_notshown` (`item_notshown`), @@ -692,7 +691,8 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `item_verified` (`item_verified`), KEY `item_rss` (`item_rss`), KEY `item_consensus` (`item_consensus`), - KEY `item_deleted_pending_remove_changed` (`item_deleted`, `item_pending_remove`, `changed`) + KEY `item_deleted_pending_remove_changed` (`item_deleted`, `item_pending_remove`, `changed`), + KEY `item_pending_remove_changed` (`item_pending_remove`, `changed`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `item_id` ( @@ -964,25 +964,33 @@ CREATE TABLE IF NOT EXISTS `photo` ( CREATE TABLE IF NOT EXISTS `poll` ( `poll_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `poll_guid` varchar(191) NOT NULL, `poll_channel` int(10) unsigned NOT NULL DEFAULT 0 , + `poll_author` varchar(191) NOT NULL, `poll_desc` text NOT NULL, `poll_flags` int(11) NOT NULL DEFAULT 0 , `poll_votes` int(11) NOT NULL DEFAULT 0 , PRIMARY KEY (`poll_id`), + KEY `poll_guid` (`poll_guid`), KEY `poll_channel` (`poll_channel`), + KEY `poll_author` (`poll_author`), KEY `poll_flags` (`poll_flags`), KEY `poll_votes` (`poll_votes`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `poll_elm` ( `pelm_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pelm_guid` varchar(191) NOT NULL, `pelm_poll` int(10) unsigned NOT NULL DEFAULT 0 , `pelm_desc` text NOT NULL, `pelm_flags` int(11) NOT NULL DEFAULT 0 , `pelm_result` float NOT NULL DEFAULT 0 , + `pelm_order` int(11) NOT NULL DEFAULT 0 , PRIMARY KEY (`pelm_id`), + KEY `pelm_guid` (`pelm_guid`), KEY `pelm_poll` (`pelm_poll`), - KEY `pelm_result` (`pelm_result`) + KEY `pelm_result` (`pelm_result`), + KEY `pelm_order` (`pelm_order`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `profdef` ( @@ -1258,12 +1266,14 @@ CREATE TABLE IF NOT EXISTS `verify` ( CREATE TABLE IF NOT EXISTS `vote` ( `vote_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `vote_guid` varchar(191) NOT NULL, `vote_poll` int(11) NOT NULL DEFAULT 0 , `vote_element` int(11) NOT NULL DEFAULT 0 , `vote_result` text NOT NULL, `vote_xchan` char(191) NOT NULL DEFAULT '', PRIMARY KEY (`vote_id`), UNIQUE KEY `vote_vote` (`vote_poll`,`vote_element`,`vote_xchan`), + KEY `vote_guid` (`vote_guid`), KEY `vote_poll` (`vote_poll`), KEY `vote_element` (`vote_element`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 082817a60..a4f6e9253 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -942,26 +942,34 @@ create index "photo_os_storage" on photo ("os_storage"); CREATE TABLE "poll" ( "poll_id" serial NOT NULL, + "poll_guid" text NOT NULL, "poll_channel" bigint NOT NULL DEFAULT '0', + "poll_author" text NOT NULL, "poll_desc" text NOT NULL, "poll_flags" bigint NOT NULL DEFAULT '0', "poll_votes" bigint NOT NULL DEFAULT '0', PRIMARY KEY ("poll_id") ); +create index "poll_guid" on poll ("poll_guid"); create index "poll_channel" on poll ("poll_channel"); +create index "poll_author" on poll ("poll_author"); create index "poll_flags" on poll ("poll_flags"); create index "poll_votes" on poll ("poll_votes"); CREATE TABLE "poll_elm" ( "pelm_id" serial NOT NULL, + "pelm_guid" text NOT NULL, "pelm_poll" bigint NOT NULL DEFAULT '0', "pelm_desc" text NOT NULL, "pelm_flags" bigint NOT NULL DEFAULT '0', "pelm_result" float NOT NULL DEFAULT '0', + "pelm_order" numeric(6) NOT NULL DEFAULT '0', PRIMARY KEY ("pelm_id") ); +create index "pelm_guid" on poll_elm ("pelm_guid"); create index "pelm_poll" on poll_elm ("pelm_poll"); create index "pelm_result" on poll_elm ("pelm_result"); +create index "pelm_order" on poll_elm ("pelm_order"); CREATE TABLE "profdef" ( "id" serial NOT NULL, @@ -1227,6 +1235,7 @@ create index "verify_meta" on verify ("meta"); create index "verify_created" on verify ("created"); CREATE TABLE "vote" ( "vote_id" serial NOT NULL, + "vote_guid" text NOT NULL, "vote_poll" bigint NOT NULL DEFAULT '0', "vote_element" bigint NOT NULL DEFAULT '0', "vote_result" text NOT NULL, @@ -1234,6 +1243,7 @@ CREATE TABLE "vote" ( PRIMARY KEY ("vote_id"), UNIQUE ("vote_poll","vote_element","vote_xchan") ); +create index "vote_guid" on vote ("vote_guid"); create index "vote_poll" on vote ("vote_poll"); create index "vote_element" on vote ("vote_element"); CREATE TABLE "xchan" ( diff --git a/library/font_awesome/.gitignore b/library/font_awesome/.gitignore deleted file mode 100644 index 39c4f20b7..000000000 --- a/library/font_awesome/.gitignore +++ /dev/null @@ -1,33 +0,0 @@ -*.pyc -*.egg-info -*.db -*.db.old -*.swp -*.db-journal - -.coverage -.DS_Store -.installed.cfg -_gh_pages/* - -.idea/* -.svn/* -src/website/static/* -src/website/media/* - -bin -cfcache -develop-eggs -dist -downloads -eggs -parts -tmp -.sass-cache -node_modules - -src/website/settingslocal.py -stunnel.log - -.ruby-version -.bundle diff --git a/library/font_awesome/.npmignore b/library/font_awesome/.npmignore deleted file mode 100644 index 54a691f81..000000000 --- a/library/font_awesome/.npmignore +++ /dev/null @@ -1,42 +0,0 @@ -*.pyc -*.egg-info -*.db -*.db.old -*.swp -*.db-journal - -.coverage -.DS_Store -.installed.cfg -_gh_pages/* - -.idea/* -.svn/* -src/website/static/* -src/website/media/* - -bin -cfcache -develop-eggs -dist -downloads -eggs -parts -tmp -.sass-cache -node_modules - -src/website/settingslocal.py -stunnel.log - -.ruby-version - -# don't need these in the npm package. -src/ -_config.yml -bower.json -component.json -composer.json -CONTRIBUTING.md -Gemfile -Gemfile.lock diff --git a/library/font_awesome/CONTRIBUTING.md b/library/font_awesome/CONTRIBUTING.md deleted file mode 100644 index f281d304f..000000000 --- a/library/font_awesome/CONTRIBUTING.md +++ /dev/null @@ -1,106 +0,0 @@ -# Contributing to Font Awesome - -Looking to contribute something to Font Awesome? **Here's how you can help.** - - - -## Requesting new icons - -New icons mostly start as requests by the [Font Awesome community on GitHub](../../issues). Want to request a new icon? Here are some things to keep in mind: - -1. Please be nice. Font Awesome is a happy place. -2. Please do not request comprehensive sets of icons related to a very specific field. -3. Please [search](../../search?type=Issues) to see if your icon request already exists. If a request is found, please add a 👍 reaction to that one. -4. Please make requests for single icons, unless you are requesting a couple of strictly related icons (e.g., thumbs-up/thumbs-down). -5. Please and thank you if you include the following: - - Title your [new issue](../../issues/new?title=Icon%20Request:%20icon-) `Icon request: icon-name` (e.g., `Icon request: icon-car`). - - Include a few use cases for your requested icon. How do you plan on using it? - - Attach a single color image or two that represent the idea you're going for. - - Request concrete objects: it's harder to make an icon to represent happiness, it's easier to make a smiley face. ☺ - - - -## Suggesting icon keyword addition/removal - -Icon filters are maintained by the [Font Awesome community on GitHub](../../pulls?q=is%3Apr+label%3Adoc). - -If you feel that an icon - -* is missing keyword(s) -* contains invalid keyword(s) - -please send a [PR](https://help.github.com/articles/using-pull-requests/) to the `master` branch. - - - -## Reporting issues - -We only accept issues that are icon requests, bug reports, or feature requests. Bugs must be isolated and reproducible problems that we can fix within the Font Awesome core. Please read the following guidelines to ensure you are the paragon of bug reporting. - -1. **Search for existing issues.** We get a lot of duplicate issues, and you'd help us out a lot by first checking if someone else has reported the same issue. Moreover, the issue may have already been resolved with a fix available. -2. **Create an isolated and reproducible test case.** Be sure the problem exists in Font Awesome's code with a [reduced test case](http://css-tricks.com/reduced-test-cases/) that should be included in each bug report. -3. **Include a live example.** Make use of jsFiddle, jsBin, or Codepen to share your isolated test cases. -4. **Share as much information as possible.** Include operating system and version, browser and version, version of Font Awesome, etc. where appropriate. Also include steps to reproduce the bug. - - - -## Key branches - -- `master` is the latest, deployed version (use for pull request if they only affect the docs) -- `gh-pages` is the hosted docs (not to be used for pull requests) -- `*-wip` branches are the official work in progress branches for the next releases. All pull requests should be submitted against the appropriate branch - - - -## Notes on the repo - -As of v3.2.0, Font Awesome's CSS, LESS, SCSS, and documentation are all powered by Jekyll templates and built before each commit and release. -- `_config.yml` - much of the site is driven off variables from this file, including Font Awesome and Bootstrap versions -- `src/` - All edits to documentation, LESS, SCSS, and CSS should be made to files and templates in this directory -- `src/icons.yml` - all LESS, SCSS, and CSS icon definitions are driven off this single file - - - -## Pull requests - -- At the moment we are not accepting pull requests containing icons -- Submit all pull requests against the appropriate `*-wip` branch for easier merging -- If your PR only affect the docs, feel free to push against the `master` branch -- Any changes to the docs must be made to the Liquid templates in the `src` directory -- Any changes to the styles must be made to the .less and .scss files in the `src` directory -- If modifying the .less and .scss files, always recompile and commit the compiled files -- Try not to pollute your pull request with unintended changes--keep them simple and small -- Try to share which browsers your code has been tested in before submitting a pull request - - - -## Coding standards: HTML - -- Two spaces for indentation, never tabs -- Double quotes only, never single quotes -- Always use proper indentation -- Use tags and elements appropriate for an HTML5 doctype (e.g., self-closing tags) - - - -## Coding standards: CSS - -- Adhere to the [Recess CSS property order](http://markdotto.com/2011/11/29/css-property-order/) -- Multiple-line approach (one property and value per line) -- Always a space after a property's colon (.e.g, `display: block;` and not `display:block;`) -- End all lines with a semi-colon -- For multiple, comma-separated selectors, place each selector on its own line -- Attribute selectors, like `input[type="text"]` should always wrap the attribute's value in double quotes, for consistency and safety (see this [blog post on unquoted attribute values](http://mathiasbynens.be/notes/unquoted-attribute-values) that can lead to XSS attacks) - - - -## License - -By contributing your code, you agree to license your contribution under the terms of the MIT License: -- http://opensource.org/licenses/mit-license.html - - - -## Thanks - -Thanks to Bootstrap for their wonderful CONTRIBUTING.MD doc. It was modified to create this one. diff --git a/library/font_awesome/Gemfile b/library/font_awesome/Gemfile deleted file mode 100644 index 7abbc9066..000000000 --- a/library/font_awesome/Gemfile +++ /dev/null @@ -1,8 +0,0 @@ -source 'https://rubygems.org' - -gem 'jekyll', '~> 1.0' -gem 'safe_yaml', '~> 1.0.4' -gem 'sass', '~> 3.0' -gem 'less', '~> 2.5.0' -gem 'libv8', '~> 3.16.14.0' -gem 'therubyracer' diff --git a/library/font_awesome/Gemfile.lock b/library/font_awesome/Gemfile.lock deleted file mode 100644 index b673ad003..000000000 --- a/library/font_awesome/Gemfile.lock +++ /dev/null @@ -1,68 +0,0 @@ -GEM - remote: https://rubygems.org/ - specs: - blankslate (2.1.2.4) - classifier (1.3.4) - fast-stemmer (>= 1.0.0) - colorator (0.1) - commander (4.1.6) - highline (~> 1.6.11) - commonjs (0.2.7) - fast-stemmer (1.0.2) - ffi (1.9.10) - highline (1.6.21) - jekyll (1.5.1) - classifier (~> 1.3) - colorator (~> 0.1) - commander (~> 4.1.3) - liquid (~> 2.5.5) - listen (~> 1.3) - maruku (= 0.7.0) - pygments.rb (~> 0.5.0) - redcarpet (~> 2.3.0) - safe_yaml (~> 1.0) - toml (~> 0.1.0) - less (2.5.1) - commonjs (~> 0.2.7) - libv8 (3.16.14.15) - liquid (2.5.5) - listen (1.3.1) - rb-fsevent (>= 0.9.3) - rb-inotify (>= 0.9) - rb-kqueue (>= 0.2) - maruku (0.7.0) - parslet (1.5.0) - blankslate (~> 2.0) - posix-spawn (0.3.11) - pygments.rb (0.5.4) - posix-spawn (~> 0.3.6) - yajl-ruby (~> 1.1.0) - rb-fsevent (0.9.6) - rb-inotify (0.9.5) - ffi (>= 0.5.0) - rb-kqueue (0.2.4) - ffi (>= 0.5.0) - redcarpet (2.3.0) - ref (2.0.0) - safe_yaml (1.0.4) - sass (3.4.19) - therubyracer (0.12.2) - libv8 (~> 3.16.14.0) - ref - toml (0.1.2) - parslet (~> 1.5.0) - yajl-ruby (1.1.0) - -PLATFORMS - ruby - -DEPENDENCIES - jekyll (~> 1.0) - less (~> 2.5.0) - libv8 (~> 3.16.14.0) - safe_yaml (~> 1.0.4) - sass (~> 3.0) - therubyracer - -BUNDLED WITH - 1.13.2 diff --git a/library/font_awesome/HELP-US-OUT.txt b/library/font_awesome/HELP-US-OUT.txt deleted file mode 100644 index 83d083dd7..000000000 --- a/library/font_awesome/HELP-US-OUT.txt +++ /dev/null @@ -1,7 +0,0 @@ -I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, -Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, -comprehensive icon sets or copy and paste your own. - -Please. Check it out. - --Dave Gandy diff --git a/library/font_awesome/README.md b/library/font_awesome/README.md deleted file mode 100644 index 3e1c1cfc1..000000000 --- a/library/font_awesome/README.md +++ /dev/null @@ -1,106 +0,0 @@ -# [Font Awesome v4.7.0](http://fontawesome.io) -### The iconic font and CSS framework - -Font Awesome is a full suite of 675 pictographic icons for easy scalable vector graphics on websites, -created and maintained by [Dave Gandy](https://twitter.com/davegandy). -Stay up to date with the latest release and announcements on Twitter: -[@fontawesome](http://twitter.com/fontawesome). - -Get started at http://fontawesome.io! - -## License -- The Font Awesome font is licensed under the SIL OFL 1.1: - - http://scripts.sil.org/OFL -- Font Awesome CSS, LESS, and Sass files are licensed under the MIT License: - - https://opensource.org/licenses/mit-license.html -- The Font Awesome documentation is licensed under the CC BY 3.0 License: - - http://creativecommons.org/licenses/by/3.0/ -- Attribution is no longer required as of Font Awesome 3.0, but much appreciated: - - `Font Awesome by Dave Gandy - http://fontawesome.io` -- Full details: http://fontawesome.io/license/ - -## Changelog -- [v4.7.0 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/10012) -- [v4.6.3 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9189) -- [v4.6.3 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9189) -- [v4.6.2 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9117) -- [v4.6.1 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/8962) -- [v4.6.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.6.0+is%3Aclosed) -- [v4.5.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.5.0+is%3Aclosed) -- [v4.4.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.4.0+is%3Aclosed) -- [v4.3.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.3.0+is%3Aclosed) -- [v4.2.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=12&page=1&state=closed) -- [v4.1.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=6&page=1&state=closed) -- [v4.0.3 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=9&page=1&state=closed) -- [v4.0.2 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=8&page=1&state=closed) -- [v4.0.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=7&page=1&state=closed) -- [v4.0.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=2&page=1&state=closed) -- [v3.2.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=5&page=1&state=closed) -- [v3.2.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=3&page=1&state=closed) -- [v3.1.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=4&page=1&state=closed) -- v3.1.0 - Added 54 icons, icon stacking styles, flipping and rotating icons, removed Sass support -- v3.0.2 - much improved rendering and alignment in IE7 -- v3.0.1 - much improved rendering in webkit, various bug fixes -- v3.0.0 - all icons redesigned from scratch, optimized for Bootstrap's 14px default - -## Contributing - -Please read through our [contributing guidelines](https://github.com/FortAwesome/Font-Awesome/blob/master/CONTRIBUTING.md). -Included are directions for opening issues, coding standards, and notes on development. - -## Versioning - -Font Awesome will be maintained under the Semantic Versioning guidelines as much as possible. Releases will be numbered -with the following format: - -`..` - -And constructed with the following guidelines: - -* Breaking backward compatibility bumps the major (and resets the minor and patch) -* New additions, including new icons, without breaking backward compatibility bumps the minor (and resets the patch) -* Bug fixes, changes to brand logos, and misc changes bumps the patch - -For more information on SemVer, please visit http://semver.org. - -## Author -- Email: dave@fontawesome.io -- Twitter: http://twitter.com/davegandy -- GitHub: https://github.com/davegandy - -## Component -To include as a [component](https://github.com/componentjs/component), just run - - $ component install FortAwesome/Font-Awesome - -Or add - - "FortAwesome/Font-Awesome": "*" - -to the `dependencies` in your `component.json`. - -## Hacking on Font Awesome - -**Before you can build the project**, you must first have the following installed: - -- [Ruby](https://www.ruby-lang.org/en/) -- Ruby Development Headers - - **Ubuntu:** `sudo apt-get install ruby-dev` *(Only if you're __NOT__ using `rbenv` or `rvm`)* - - **Windows:** [DevKit](http://rubyinstaller.org/) -- [Bundler](http://bundler.io/) (Run `gem install bundler` to install). -- [Node Package Manager (AKA NPM)](https://docs.npmjs.com/getting-started/installing-node) -- [Less](http://lesscss.org/) (Run `npm install -g less` to install). -- [Less Plugin: Clean CSS](https://github.com/less/less-plugin-clean-css) (Run `npm install -g less-plugin-clean-css` to install). - -From the root of the repository, install the tools used to develop. - - $ bundle install - $ npm install - -Build the project and documentation: - - $ bundle exec jekyll build - -Or serve it on a local server on http://localhost:7998/Font-Awesome/: - - $ bundle exec jekyll -w serve diff --git a/library/font_awesome/_config.yml b/library/font_awesome/_config.yml deleted file mode 100644 index 18129a1fc..000000000 --- a/library/font_awesome/_config.yml +++ /dev/null @@ -1,60 +0,0 @@ -safe: false -port: 7998 -baseurl: /Font-Awesome/ # Where GitHub serves the project up from -url: http://localhost:7998 - -source: src -destination: _gh_pages -plugins: src/_plugins - -pygments: true -permalink: pretty - -# ensures SCSS files are compiled -include: [_*.scss] - -# used in building icon pages -icon_meta: src/icons.yml -icon_layout: icon.html # Relative to _layouts directory -icon_destination: icon # Relative to destination - -fontawesome: - version: 4.7.0 - minor_version: 4.7 - major_version: 4 - doc_blob: v4.7.0 - url: http://fontawesome.io - legacy_url: http://fortawesome.github.com/Font-Awesome/ - blog_url: http://articles.fortawesome.com - twitter: fontawesome - tagline: The iconic font and CSS toolkit - css_prefix: fa - author: - name: Dave Gandy - email: dave@fontawesome.io - twitter: davegandy - github: davegandy - github: - url: https://github.com/FortAwesome/Font-Awesome - project: Font-Awesome - org: FortAwesome - license: - font: - version: SIL OFL 1.1 - url: http://scripts.sil.org/OFL - code: - version: MIT License - url: http://opensource.org/licenses/mit-license.html - documentation: - version: CC BY 3.0 - url: http://creativecommons.org/licenses/by/3.0/ - -bootstrap: - version: 3.3.5 - url: http://getbootstrap.com - -jquery: - version: 1.11.3 - -jquery_validate: - version: 1.13.1 diff --git a/library/font_awesome/bower.json b/library/font_awesome/bower.json deleted file mode 100644 index 9e2112659..000000000 --- a/library/font_awesome/bower.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "font-awesome", - "description": "Font Awesome", - "keywords": [], - "homepage": "http://fontawesome.io", - "dependencies": {}, - "devDependencies": {}, - "license": ["OFL-1.1", "MIT", "CC-BY-3.0"], - "main": [ - "less/font-awesome.less", - "scss/font-awesome.scss" - ], - "ignore": [ - "*/.*", - "*.json", - "src", - "*.yml", - "Gemfile", - "Gemfile.lock", - "*.md" - ] -} diff --git a/library/font_awesome/component.json b/library/font_awesome/component.json deleted file mode 100644 index 0b0fb0a4d..000000000 --- a/library/font_awesome/component.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "font-awesome", - "repo": "FortAwesome/Font-Awesome", - "description": "Font Awesome", - "version": "4.7.0", - "keywords": [], - "dependencies": {}, - "development": {}, - "license": "SIL, MIT, CC BY 3.0", - "styles": [ - "css/font-awesome.css" - ], - "fonts": [ - "fonts/fontawesome-webfont.eot", - "fonts/fontawesome-webfont.svg", - "fonts/fontawesome-webfont.ttf", - "fonts/fontawesome-webfont.woff", - "fonts/fontawesome-webfont.woff2", - "fonts/FontAwesome.otf" - ] -} diff --git a/library/font_awesome/composer.json b/library/font_awesome/composer.json deleted file mode 100644 index c9f41120e..000000000 --- a/library/font_awesome/composer.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "name": "fortawesome/font-awesome", - "description": "The iconic font and CSS framework", - "keywords": ["font", "awesome", "fontawesome", "icon", "font", "bootstrap"], - "homepage": "http://fontawesome.io/", - "authors": [ - { - "name": "Dave Gandy", - "email": "dave@fontawesome.io", - "role": "Developer", - "homepage": "http://twitter.com/davegandy" - } - ], - "extra": { - "branch-alias": { - "dev-master": "4.6.x-dev" - } - }, - "license": [ - "OFL-1.1", - "MIT" - ], - "require-dev": { - "jekyll": "1.0.2", - "lessc": "1.4.2" - } -} diff --git a/library/font_awesome/css/font-awesome.css.map b/library/font_awesome/css/font-awesome.css.map deleted file mode 100644 index 60763a864..000000000 --- a/library/font_awesome/css/font-awesome.css.map +++ /dev/null @@ -1,7 +0,0 @@ -{ -"version": 3, -"mappings": ";;;;;;;AAGA,UAUC;EATC,WAAW,EAAE,aAAa;EAC1B,GAAG,EAAE,+CAAgE;EACrE,GAAG,EAAE,ySAAmG;EAKxG,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,MAAM;ACTpB,GAAmB;EACjB,OAAO,EAAE,YAAY;EACrB,IAAI,EAAE,uCAAwD;EAC9D,SAAS,EAAE,OAAO;EAClB,cAAc,EAAE,IAAI;EACpB,sBAAsB,EAAE,WAAW;EACnC,uBAAuB,EAAE,SAAS;EAClC,SAAS,EAAE,eAAe;;;ACN5B,MAAsB;EACpB,SAAS,EAAE,SAAS;EACpB,WAAW,EAAE,MAAS;EACtB,cAAc,EAAE,IAAI;;AAEtB,MAAsB;EAAE,SAAS,EAAE,GAAG;;AACtC,MAAsB;EAAE,SAAS,EAAE,GAAG;;AACtC,MAAsB;EAAE,SAAS,EAAE,GAAG;;AACtC,MAAsB;EAAE,SAAS,EAAE,GAAG;;ACVtC,MAAsB;EACpB,KAAK,EAAE,SAAW;EAClB,UAAU,EAAE,MAAM;;ACDpB,MAAsB;EACpB,YAAY,EAAE,CAAC;EACf,WAAW,ECKU,SAAS;EDJ9B,eAAe,EAAE,IAAI;EACrB,WAAK;IAAE,QAAQ,EAAE,QAAQ;;AAE3B,MAAsB;EACpB,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,UAAa;EACnB,KAAK,ECFgB,SAAS;EDG9B,GAAG,EAAE,SAAU;EACf,UAAU,EAAE,MAAM;EAClB,YAAuB;IACrB,IAAI,EAAE,UAA0B;;AEbpC,UAA0B;EACxB,OAAO,EAAE,gBAAgB;EACzB,MAAM,EAAE,iBAA4B;EACpC,aAAa,EAAE,IAAI;;AAGrB,WAAY;EAAE,KAAK,EAAE,KAAK;;AAC1B,UAAW;EAAE,KAAK,EAAE,IAAI;;AAGtB,aAAY;EAAE,YAAY,EAAE,IAAI;AAChC,cAAa;EAAE,WAAW,EAAE,IAAI;;ACXlC,QAAwB;EACtB,iBAAiB,EAAE,0BAA0B;EACrC,SAAS,EAAE,0BAA0B;;AAG/C,SAAyB;EACvB,iBAAiB,EAAE,4BAA4B;EACvC,SAAS,EAAE,4BAA4B;;AAGjD,0BASC;EARC,EAAG;IACD,iBAAiB,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;EAEjC,IAAK;IACH,iBAAiB,EAAE,cAAc;IACzB,SAAS,EAAE,cAAc;AAIrC,kBASC;EARC,EAAG;IACD,iBAAiB,EAAE,YAAY;IACvB,SAAS,EAAE,YAAY;EAEjC,IAAK;IACH,iBAAiB,EAAE,cAAc;IACzB,SAAS,EAAE,cAAc;AC5BrC,aAA8B;ECY5B,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,aAAgB;EAC/B,aAAa,EAAE,aAAgB;EAC3B,SAAS,EAAE,aAAgB;;ADdrC,cAA8B;ECW5B,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,cAAgB;EAC/B,aAAa,EAAE,cAAgB;EAC3B,SAAS,EAAE,cAAgB;;ADbrC,cAA8B;ECU5B,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,cAAgB;EAC/B,aAAa,EAAE,cAAgB;EAC3B,SAAS,EAAE,cAAgB;;ADXrC,mBAAmC;ECejC,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,YAAoB;EACnC,aAAa,EAAE,YAAoB;EAC/B,SAAS,EAAE,YAAoB;;ADjBzC,iBAAmC;ECcjC,MAAM,EAAE,wDAAmE;EAC3E,iBAAiB,EAAE,YAAoB;EACnC,aAAa,EAAE,YAAoB;EAC/B,SAAS,EAAE,YAAoB;;ADZzC;;;;uBAIuC;EACrC,MAAM,EAAE,IAAI;;AEfd,SAAyB;EACvB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;EACX,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,MAAM;;AAExB,0BAAyD;EACvD,QAAQ,EAAE,QAAQ;EAClB,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;;AAEpB,YAA4B;EAAE,WAAW,EAAE,OAAO;;AAClD,YAA4B;EAAE,SAAS,EAAE,GAAG;;AAC5C,WAA2B;EAAE,KAAK,ELVZ,IAAI;;;;AMN1B,gBAAgC;EAAE,OAAO,ENoQ1B,GAAO;;AMnQtB,gBAAgC;EAAE,OAAO,EN0W1B,GAAO;;AMzWtB,iBAAiC;EAAE,OAAO,ENmb1B,GAAO;;AMlbvB,qBAAqC;EAAE,OAAO,ENmL1B,GAAO;;AMlL3B,gBAAgC;EAAE,OAAO,ENkR1B,GAAO;;AMjRtB,eAA+B;EAAE,OAAO,ENke1B,GAAO;;AMjerB,iBAAiC;EAAE,OAAO,ENse1B,GAAO;;AMrevB,eAA+B;EAAE,OAAO,EN+iB1B,GAAO;;AM9iBrB,eAA+B;EAAE,OAAO,ENyN1B,GAAO;;AMxNrB,mBAAmC;EAAE,OAAO,ENggB1B,GAAO;;AM/fzB,aAA6B;EAAE,OAAO,EN8f1B,GAAO;;AM7fnB,kBAAkC;EAAE,OAAO,EN+f1B,GAAO;;AM9fxB,gBAAgC;EAAE,OAAO,ENoG1B,GAAO;;AMnGtB;;gBAEgC;EAAE,OAAO,ENkgB1B,GAAO;;AMjgBtB,sBAAsC;EAAE,OAAO,ENua1B,GAAO;;AMta5B,uBAAuC;EAAE,OAAO,ENqa1B,GAAO;;AMpa7B,oBAAoC;EAAE,OAAO,EN+X1B,GAAO;;AM9X1B,iBAAiC;EAAE,OAAO,ENsb1B,GAAO;;AMrbvB;cAC8B;EAAE,OAAO,ENwH1B,GAAO;;AMvHpB,kBAAkC;EAAE,OAAO,ENygB1B,GAAO;;AMxgBxB,eAA+B;EAAE,OAAO,ENmQ1B,GAAO;;AMlQrB,iBAAiC;EAAE,OAAO,EN6L1B,GAAO;;AM5LvB,kBAAkC;EAAE,OAAO,EN0G1B,GAAO;;AMzGxB,eAA+B;EAAE,OAAO,EN+Y1B,GAAO;;AM9YrB,mBAAmC;EAAE,OAAO,ENiJ1B,GAAO;;AMhJzB,8BAA8C;EAAE,OAAO,ENI1B,GAAO;;AMHpC,4BAA4C;EAAE,OAAO,ENM1B,GAAO;;AMLlC,gBAAgC;EAAE,OAAO,ENkQ1B,GAAO;;AMjQtB,wBAAwC;EAAE,OAAO,EN4W1B,GAAO;;AM3W9B;iBACiC;EAAE,OAAO,ENmY1B,GAAO;;AMlYvB,kBAAkC;EAAE,OAAO,EN8X1B,GAAO;;AM7XxB,mBAAmC;EAAE,OAAO,ENiS1B,GAAO;;AMhSzB,eAA+B;EAAE,OAAO,ENoS1B,GAAO;;AMnSrB,eAA+B;EAAE,OAAO,ENgM1B,GAAO;;AM/LrB,qBAAqC;EAAE,OAAO,EN+O1B,GAAO;;AM9O3B,qBAAqC;EAAE,OAAO,EN8hB1B,GAAO;;AM7hB3B,sBAAsC;EAAE,OAAO,EN4hB1B,GAAO;;AM3hB5B,oBAAoC;EAAE,OAAO,EN6hB1B,GAAO;;AM5hB1B,iBAAiC;EAAE,OAAO,EN2W1B,GAAO;;AM1WvB,kBAAkC;EAAE,OAAO,ENW1B,GAAO;;AMVxB,cAA8B;EAAE,OAAO,ENod1B,GAAO;;AMndpB,eAA+B;EAAE,OAAO,ENod1B,GAAO;;AMndrB,eAA+B;EAAE,OAAO,EN2B1B,GAAO;;AM1BrB,mBAAmC;EAAE,OAAO,EN2B1B,GAAO;;AM1BzB,gBAAgC;EAAE,OAAO,ENkW1B,GAAO;;AMjWtB,iBAAiC;EAAE,OAAO,ENwC1B,GAAO;;AMvCvB,eAA+B;EAAE,OAAO,EN8L1B,GAAO;;AM7LrB,eAA+B;EAAE,OAAO,ENmB1B,GAAO;;AMlBrB,iBAAiC;EAAE,OAAO,ENoP1B,GAAO;;AMnPvB,sBAAsC;EAAE,OAAO,ENid1B,GAAO;;AMhd5B,qBAAqC;EAAE,OAAO,ENid1B,GAAO;;AMhd3B,qBAAqC;EAAE,OAAO,EN1C1B,GAAO;;AM2C3B,uBAAuC;EAAE,OAAO,EN7C1B,GAAO;;AM8C7B,sBAAsC;EAAE,OAAO,EN3C1B,GAAO;;AM4C5B,wBAAwC;EAAE,OAAO,EN9C1B,GAAO;;AM+C9B,eAA+B;EAAE,OAAO,ENwQ1B,GAAO;;AMvQrB;kBACkC;EAAE,OAAO,ENmT1B,GAAO;;AMlTxB,iBAAiC;EAAE,OAAO,ENmO1B,GAAO;;AMlOvB,uBAAuC;EAAE,OAAO,ENigB1B,GAAO;;AMhgB7B;;oBAEoC;EAAE,OAAO,EN+T1B,GAAO;;AM9T1B,iBAAiC;EAAE,OAAO,ENwT1B,GAAO;;AMvTvB,qBAAqC;EAAE,OAAO,EN+Q1B,GAAO;;AM9Q3B,iBAAiC;EAAE,OAAO,EN5D1B,GAAO;;AM6DvB,eAA+B;EAAE,OAAO,EN8c1B,GAAO;;AM7crB;0BAC0C;EAAE,OAAO,ENqT1B,GAAO;;AMpThC,yBAAyC;EAAE,OAAO,ENuX1B,GAAO;;AMtX/B,yBAAyC;EAAE,OAAO,EN0C1B,GAAO;;AMzC/B,iBAAiC;EAAE,OAAO,ENjC1B,GAAO;;AMkCvB,wBAAwC;EAAE,OAAO,ENma1B,GAAO;;AMla9B,wBAAwC;EAAE,OAAO,EN4H1B,GAAO;;AM3H9B,mBAAmC;EAAE,OAAO,EN7B1B,GAAO;;AM8BzB,eAA+B;EAAE,OAAO,EN0T1B,GAAO;;AMzTrB,gBAAgC;EAAE,OAAO,ENwS1B,GAAO;;AMvStB,eAA+B;EAAE,OAAO,ENia1B,GAAO;;AMharB,kBAAkC;EAAE,OAAO,ENgK1B,GAAO;;AM/JxB,uBAAuC;EAAE,OAAO,ENuH1B,GAAO;;AMtH7B,uBAAuC;EAAE,OAAO,EN4Z1B,GAAO;;AM3Z7B,gBAAgC;EAAE,OAAO,EN4F1B,GAAO;;AM3FtB,uBAAuC;EAAE,OAAO,ENoC1B,GAAO;;AMnC7B,wBAAwC;EAAE,OAAO,ENoC1B,GAAO;;AMnC9B,sBAAsC;EAAE,OAAO,ENsT1B,GAAO;;AMrT5B,uBAAuC;EAAE,OAAO,ENyQ1B,GAAO;;AMxQ7B,uBAAuC;EAAE,OAAO,ENwb1B,GAAO;;AMvb7B,uBAAuC;EAAE,OAAO,ENsB1B,GAAO;;AMrB7B,0BAA0C;EAAE,OAAO,EN2T1B,GAAO;;AM1ThC,sBAAsC;EAAE,OAAO,ENsM1B,GAAO;;AMrM5B,qBAAqC;EAAE,OAAO,EN6D1B,GAAO;;AM5D3B,yBAAyC;EAAE,OAAO,ENob1B,GAAO;;AMnb/B,yBAAyC;EAAE,OAAO,ENkB1B,GAAO;;AMjB/B,cAA8B;EAAE,OAAO,EN/C1B,GAAO;;AMgDpB,qBAAqC;EAAE,OAAO,EN3D1B,GAAO;;AM4D3B,sBAAsC;EAAE,OAAO,EN3D1B,GAAO;;AM4D5B,mBAAmC;EAAE,OAAO,EN3D1B,GAAO;;AM4DzB,qBAAqC;EAAE,OAAO,EN/D1B,GAAO;;AMgE3B;gBACgC;EAAE,OAAO,ENqV1B,GAAO;;AMpVtB,iBAAiC;EAAE,OAAO,ENuF1B,GAAO;;AMtFvB,mBAAmC;EAAE,OAAO,EN4C1B,GAAO;;AM3CzB,eAA+B;EAAE,OAAO,ENmS1B,GAAO;;AMlSrB,gBAAgC;EAAE,OAAO,ENsP1B,GAAO;;AMrPtB,mBAAmC;EAAE,OAAO,EN9D1B,GAAO;;AM+DzB,6BAA6C;EAAE,OAAO,ENgF1B,GAAO;;AM/EnC,eAA+B;EAAE,OAAO,EN+I1B,GAAO;;AM9IrB,eAA+B;EAAE,OAAO,ENoM1B,GAAO;;AMnMrB,eAA+B;EAAE,OAAO,ENmH1B,GAAO;;AMlHrB,cAA8B;EAAE,OAAO,ENiF1B,GAAO;;AMhFpB,oBAAoC;EAAE,OAAO,ENiF1B,GAAO;;AMhF1B;+BAC+C;EAAE,OAAO,EN0E1B,GAAO;;AMzErC,gBAAgC;EAAE,OAAO,ENmR1B,GAAO;;AMlRtB,mBAAmC;EAAE,OAAO,EN/B1B,GAAO;;AMgCzB,iBAAiC;EAAE,OAAO,ENoS1B,GAAO;;AMnSvB,kBAAkC;EAAE,OAAO,ENwB1B,GAAO;;AMvBxB,iBAAiC;EAAE,OAAO,ENqN1B,GAAO;;AMpNvB,qBAAqC;EAAE,OAAO,ENE1B,GAAO;;AMD3B,uBAAuC;EAAE,OAAO,ENF1B,GAAO;;AMG7B,kBAAkC;EAAE,OAAO,EN2S1B,GAAO;;AM1SxB,wBAAwC;EAAE,OAAO,ENyU1B,GAAO;;AMxU9B,iBAAiC;EAAE,OAAO,EN8G1B,GAAO;;AM7GvB,sBAAsC;EAAE,OAAO,EN+G1B,GAAO;;AM9G5B,mBAAmC;EAAE,OAAO,ENnF1B,GAAO;;AMoFzB,mBAAmC;EAAE,OAAO,ENrF1B,GAAO;;AMsFzB;oBACoC;EAAE,OAAO,EN/E1B,GAAO;;AMgF1B,yBAAyC;EAAE,OAAO,ENua1B,GAAO;;AMta/B,0BAA0C;EAAE,OAAO,ENmE1B,GAAO;;AMlEhC,uBAAuC;EAAE,OAAO,EN5C1B,GAAO;;AM6C7B,cAA8B;EAAE,OAAO,ENqK1B,GAAO;;AMpKpB;eAC+B;EAAE,OAAO,ENK1B,GAAO;;AMJrB,mBAAmC;EAAE,OAAO,ENQ1B,GAAO;;AMPzB,sBAAsC;EAAE,OAAO,ENmY1B,GAAO;;AMlY5B,wBAAwC;EAAE,OAAO,ENiY1B,GAAO;;AMhY9B,oBAAoC;EAAE,OAAO,EN2V1B,GAAO;;AM1V1B,kBAAkC;EAAE,OAAO,ENyI1B,GAAO;;AMxIxB,mBAAmC;EAAE,OAAO,ENyT1B,GAAO;;AMxTzB,0BAA0C;EAAE,OAAO,ENiL1B,GAAO;;AMhLhC,qBAAqC;EAAE,OAAO,EN0X1B,GAAO;;AMzX3B,wBAAwC;EAAE,OAAO,EN8C1B,GAAO;;AM7C9B,kBAAkC;EAAE,OAAO,ENoT1B,GAAO;;AMnTxB,iBAAiC;EAAE,OAAO,EN8Y1B,GAAO;;AM7YvB,wBAAwC;EAAE,OAAO,EN6G1B,GAAO;;AM5G9B,iBAAiC;EAAE,OAAO,EN8Z1B,GAAO;;AM7ZvB,kBAAkC;EAAE,OAAO,EN+J1B,GAAO;;AM9JxB,gBAAgC;EAAE,OAAO,ENsO1B,GAAO;;AMrOtB,mBAAmC;EAAE,OAAO,EN2U1B,GAAO;;AM1UzB,qBAAqC;EAAE,OAAO,EN/E1B,GAAO;;AMgF3B,uBAAuC;EAAE,OAAO,ENoO1B,GAAO;;AMnO7B,kBAAkC;EAAE,OAAO,EN8Y1B,GAAO;;AM7YxB;mBACmC;EAAE,OAAO,ENuC1B,GAAO;;AMtCzB,iBAAiC;EAAE,OAAO,ENiG1B,GAAO;;AMhGvB,iBAAiC;EAAE,OAAO,ENiZ1B,GAAO;;AMhZvB,sBAAsC;EAAE,OAAO,ENR1B,GAAO;;AMS5B,cAA8B;EAAE,OAAO,EN4Q1B,GAAO;;AM3QpB,gBAAgC;EAAE,OAAO,ENgH1B,GAAO;;AM/GtB,mBAAmC;EAAE,OAAO,ENnF1B,GAAO;;AMoFzB,eAA+B;EAAE,OAAO,ENzG1B,GAAO;;AM0GrB,sBAAsC;EAAE,OAAO,ENzD1B,GAAO;;AM0D5B,uBAAuC;EAAE,OAAO,EN0G1B,GAAO;;AMzG7B,sBAAsC;EAAE,OAAO,ENwG1B,GAAO;;AMvG5B,oBAAoC;EAAE,OAAO,ENyG1B,GAAO;;AMxG1B,sBAAsC;EAAE,OAAO,ENqG1B,GAAO;;AMpG5B,4BAA4C;EAAE,OAAO,EN5I1B,GAAO;;AM6IlC,6BAA6C;EAAE,OAAO,ENxI1B,GAAO;;AMyInC,0BAA0C;EAAE,OAAO,ENxI1B,GAAO;;AMyIhC,4BAA4C;EAAE,OAAO,ENhJ1B,GAAO;;AMiJlC,gBAAgC;EAAE,OAAO,ENsF1B,GAAO;;AMrFtB,iBAAiC;EAAE,OAAO,ENia1B,GAAO;;AMhavB,gBAAgC;EAAE,OAAO,ENiV1B,GAAO;;AMhVtB,iBAAiC;EAAE,OAAO,ENgD1B,GAAO;;AM/CvB,oBAAoC;EAAE,OAAO,ENvG1B,GAAO;;AMwG1B,qBAAqC;EAAE,OAAO,ENzI1B,GAAO;;AM0I3B;gBACgC;EAAE,OAAO,ENqY1B,GAAO;;AMpYtB;eAC+B;EAAE,OAAO,ENuI1B,GAAO;;AMtIrB,gBAAgC;EAAE,OAAO,ENpD1B,GAAO;;AMqDtB,gBAAgC;EAAE,OAAO,EN+C1B,GAAO;;AM9CtB;mBACmC;EAAE,OAAO,ENwP1B,GAAO;;AMvPzB;kBACkC;EAAE,OAAO,ENkC1B,GAAO;;AMjCxB,oBAAoC;EAAE,OAAO,ENsL1B,GAAO;;AMrL1B;mBACmC;EAAE,OAAO,EN0C1B,GAAO;;AMzCzB,iBAAiC;EAAE,OAAO,ENiS1B,GAAO;;AMhSvB;;eAE+B;EAAE,OAAO,EN9I1B,GAAO;;AM+IrB,kBAAkC;EAAE,OAAO,ENgI1B,GAAO;;AM/HxB,kBAAkC;EAAE,OAAO,EN8H1B,GAAO;;AM7HxB,wBAAwC;EAAE,OAAO,EN4S1B,GAAO;;AM3S9B,oBAAoC;EAAE,OAAO,ENoW1B,GAAO;;AMnW1B,gBAAgC;EAAE,OAAO,ENmT1B,GAAO;;AMlTtB,gBAAgC;EAAE,OAAO,ENkI1B,GAAO;;AMjItB,gBAAgC;EAAE,OAAO,ENuV1B,GAAO;;AMtVtB,oBAAoC;EAAE,OAAO,ENwL1B,GAAO;;AMvL1B,2BAA2C;EAAE,OAAO,ENyL1B,GAAO;;AMxLjC,6BAA6C;EAAE,OAAO,ENyD1B,GAAO;;AMxDnC,sBAAsC;EAAE,OAAO,ENuD1B,GAAO;;AMtD5B,gBAAgC;EAAE,OAAO,ENsJ1B,GAAO;;AMrJtB,qBAAqC;EAAE,OAAO,ENtH1B,GAAO;;AMuH3B,mBAAmC;EAAE,OAAO,ENhH1B,GAAO;;AMiHzB,qBAAqC;EAAE,OAAO,ENvH1B,GAAO;;AMwH3B,sBAAsC;EAAE,OAAO,ENvH1B,GAAO;;AMwH5B,kBAAkC;EAAE,OAAO,ENvE1B,GAAO;;AMwExB;eAC+B;EAAE,OAAO,EN2P1B,GAAO;;AM1PrB;oBACoC;EAAE,OAAO,EN+P1B,GAAO;;AM9P1B;mBACmC;EAAE,OAAO,EN4P1B,GAAO;;AM3PzB,mBAAmC;EAAE,OAAO,ENxC1B,GAAO;;AMyCzB,mBAAmC;EAAE,OAAO,ENkG1B,GAAO;;AMjGzB;eAC+B;EAAE,OAAO,EN8U1B,GAAO;;AM7UrB;gBACgC;EAAE,OAAO,ENqB1B,GAAO;;AMpBtB;qBACqC;EAAE,OAAO,EN2R1B,GAAO;;AM1R3B,oBAAoC;EAAE,OAAO,ENpF1B,GAAO;;AMqF1B,qBAAqC;EAAE,OAAO,ENnF1B,GAAO;;AMoF3B;eAC+B;EAAE,OAAO,ENjK1B,GAAO;;AMkKrB,kBAAkC;EAAE,OAAO,ENkO1B,GAAO;;AMjOxB,mBAAmC;EAAE,OAAO,ENkU1B,GAAO;;AMjUzB;oBACoC;EAAE,OAAO,EN1G1B,GAAO;;AM2G1B,sBAAsC;EAAE,OAAO,ENgF1B,GAAO;;AM/E5B,mBAAmC;EAAE,OAAO,ENnD1B,GAAO;;AMoDzB,yBAAyC;EAAE,OAAO,ENzG1B,GAAO;;AM0G/B,uBAAuC;EAAE,OAAO,ENzG1B,GAAO;;AM0G7B,kBAAkC;EAAE,OAAO,ENsU1B,GAAO;;AMrUxB,sBAAsC;EAAE,OAAO,EN+P1B,GAAO;;AM9P5B,mBAAmC;EAAE,OAAO,ENsQ1B,GAAO;;AMrQzB,iBAAiC;EAAE,OAAO,ENvL1B,GAAO;;AMwLvB,iBAAiC;EAAE,OAAO,ENzG1B,GAAO;;AM0GvB,kBAAkC;EAAE,OAAO,ENtF1B,GAAO;;AMuFxB,sBAAsC;EAAE,OAAO,EN3B1B,GAAO;;AM4B5B,qBAAqC;EAAE,OAAO,ENxK1B,GAAO;;AMyK3B,qBAAqC;EAAE,OAAO,ENkC1B,GAAO;;AMjC3B,oBAAoC;EAAE,OAAO,EN3O1B,GAAO;;AM4O1B,iBAAiC;EAAE,OAAO,ENiG1B,GAAO;;AMhGvB,sBAAsC;EAAE,OAAO,EN/C1B,GAAO;;AMgD5B,eAA+B;EAAE,OAAO,ENpM1B,GAAO;;AMqMrB,mBAAmC;EAAE,OAAO,ENe1B,GAAO;;AMdzB,sBAAsC;EAAE,OAAO,ENgJ1B,GAAO;;AM/I5B,4BAA4C;EAAE,OAAO,EN5O1B,GAAO;;AM6OlC,6BAA6C;EAAE,OAAO,EN5O1B,GAAO;;AM6OnC,0BAA0C;EAAE,OAAO,EN5O1B,GAAO;;AM6OhC,4BAA4C;EAAE,OAAO,ENhP1B,GAAO;;AMiPlC,qBAAqC;EAAE,OAAO,EN5O1B,GAAO;;AM6O3B,sBAAsC;EAAE,OAAO,EN5O1B,GAAO;;AM6O5B,mBAAmC;EAAE,OAAO,EN5O1B,GAAO;;AM6OzB,qBAAqC;EAAE,OAAO,ENhP1B,GAAO;;AMiP3B,kBAAkC;EAAE,OAAO,ENlG1B,GAAO;;AMmGxB,iBAAiC;EAAE,OAAO,ENuC1B,GAAO;;AMtCvB,iBAAiC;EAAE,OAAO,ENoP1B,GAAO;;AMnPvB;iBACiC;EAAE,OAAO,ENyF1B,GAAO;;AMxFvB,mBAAmC;EAAE,OAAO,EN9I1B,GAAO;;AM+IzB,qBAAqC;EAAE,OAAO,EN0I1B,GAAO;;AMzI3B,sBAAsC;EAAE,OAAO,EN0I1B,GAAO;;AMzI5B,kBAAkC;EAAE,OAAO,ENgN1B,GAAO;;AM/MxB,iBAAiC;EAAE,OAAO,ENnJ1B,GAAO;;AMoJvB;gBACgC;EAAE,OAAO,ENkJ1B,GAAO;;AMjJtB,qBAAqC;EAAE,OAAO,ENnB1B,GAAO;;AMoB3B,mBAAmC;EAAE,OAAO,ENxC1B,GAAO;;AMyCzB,wBAAwC;EAAE,OAAO,ENvC1B,GAAO;;AMwC9B,kBAAkC;EAAE,OAAO,EN0L1B,GAAO;;AMzLxB,kBAAkC;EAAE,OAAO,ENpC1B,GAAO;;AMqCxB,gBAAgC;EAAE,OAAO,ENoE1B,GAAO;;AMnEtB,kBAAkC;EAAE,OAAO,ENpC1B,GAAO;;AMqCxB,qBAAqC;EAAE,OAAO,ENkB1B,GAAO;;AMjB3B,iBAAiC;EAAE,OAAO,ENrD1B,GAAO;;AMsDvB,yBAAyC;EAAE,OAAO,ENvD1B,GAAO;;AMwD/B,mBAAmC;EAAE,OAAO,ENuO1B,GAAO;;AMtOzB,eAA+B;EAAE,OAAO,ENtJ1B,GAAO;;AMuJrB;oBACoC;EAAE,OAAO,ENqI1B,GAAO;;AMpI1B;;sBAEsC;EAAE,OAAO,ENuM1B,GAAO;;AMtM5B,yBAAyC;EAAE,OAAO,ENkC1B,GAAO;;AMjC/B,eAA+B;EAAE,OAAO,EN5I1B,GAAO;;AM6IrB,oBAAoC;EAAE,OAAO,EN7J1B,GAAO;;AM8J1B;uBACuC;EAAE,OAAO,EN1L1B,GAAO;;AM2L7B,mBAAmC;EAAE,OAAO,EN4G1B,GAAO;;AM3GzB,eAA+B;EAAE,OAAO,ENT1B,GAAO;;AMUrB,sBAAsC;EAAE,OAAO,ENhH1B,GAAO;;AMiH5B,sBAAsC;EAAE,OAAO,EN8M1B,GAAO;;AM7M5B,oBAAoC;EAAE,OAAO,ENyM1B,GAAO;;AMxM1B,iBAAiC;EAAE,OAAO,ENvH1B,GAAO;;AMwHvB,uBAAuC;EAAE,OAAO,ENmG1B,GAAO;;AMlG7B,qBAAqC;EAAE,OAAO,EN8C1B,GAAO;;AM7C3B,2BAA2C;EAAE,OAAO,EN8C1B,GAAO;;AM7CjC,iBAAiC;EAAE,OAAO,ENgJ1B,GAAO;;AM/IvB,qBAAqC;EAAE,OAAO,EN5N1B,GAAO;;AM6N3B,4BAA4C;EAAE,OAAO,ENjF1B,GAAO;;AMkFlC,iBAAiC;EAAE,OAAO,ENoH1B,GAAO;;AMnHvB,iBAAiC;EAAE,OAAO,ENkC1B,GAAO;;AMjCvB,8BAA8C;EAAE,OAAO,ENlM1B,GAAO;;AMmMpC,+BAA+C;EAAE,OAAO,ENlM1B,GAAO;;AMmMrC,4BAA4C;EAAE,OAAO,ENlM1B,GAAO;;AMmMlC,8BAA8C;EAAE,OAAO,ENtM1B,GAAO;;AMuMpC,gBAAgC;EAAE,OAAO,EN/B1B,GAAO;;AMgCtB,eAA+B;EAAE,OAAO,ENjK1B,GAAO;;AMkKrB,iBAAiC;EAAE,OAAO,EN9S1B,GAAO;;AM+SvB,qBAAqC;EAAE,OAAO,ENmP1B,GAAO;;AMlP3B,mBAAmC;EAAE,OAAO,EN9O1B,GAAO;;AM+OzB,qBAAqC;EAAE,OAAO,EN/I1B,GAAO;;AMgJ3B,qBAAqC;EAAE,OAAO,EN/I1B,GAAO;;AMgJ3B,qBAAqC;EAAE,OAAO,EN4G1B,GAAO;;AM3G3B,sBAAsC;EAAE,OAAO,ENsE1B,GAAO;;AMrE5B,iBAAiC;EAAE,OAAO,EN2M1B,GAAO;;AM1MvB,uBAAuC;EAAE,OAAO,EN6B1B,GAAO;;AM5B7B,yBAAyC;EAAE,OAAO,EN6B1B,GAAO;;AM5B/B,mBAAmC;EAAE,OAAO,ENhB1B,GAAO;;AMiBzB,qBAAqC;EAAE,OAAO,ENlB1B,GAAO;;AMmB3B,uBAAuC;EAAE,OAAO,ENvN1B,GAAO;;AMwN7B,wBAAwC;EAAE,OAAO,ENiD1B,GAAO;;AMhD9B,+BAA+C;EAAE,OAAO,EN3I1B,GAAO;;AM4IrC,uBAAuC;EAAE,OAAO,ENkH1B,GAAO;;AMjH7B,kBAAkC;EAAE,OAAO,EN1L1B,GAAO;;AM2LxB;8BAC8C;EAAE,OAAO,ENjP1B,GAAO;;AMkPpC;4BAC4C;EAAE,OAAO,ENhP1B,GAAO;;AMiPlC;+BAC+C;EAAE,OAAO,ENnP1B,GAAO;;AMoPrC;cAC8B;EAAE,OAAO,EN7J1B,GAAO;;AM8JpB,cAA8B;EAAE,OAAO,EN/F1B,GAAO;;AMgGpB;cAC8B;EAAE,OAAO,EN4N1B,GAAO;;AM3NpB;cAC8B;EAAE,OAAO,ENvD1B,GAAO;;AMwDpB;;;cAG8B;EAAE,OAAO,ENrD1B,GAAO;;AMsDpB;;cAE8B;EAAE,OAAO,EN8E1B,GAAO;;AM7EpB;cAC8B;EAAE,OAAO,ENtD1B,GAAO;;AMuDpB;cAC8B;EAAE,OAAO,ENzR1B,GAAO;;AM0RpB,eAA+B;EAAE,OAAO,ENzJ1B,GAAO;;AM0JrB,oBAAoC;EAAE,OAAO,EN7I1B,GAAO;;AM8I1B,yBAAyC;EAAE,OAAO,EN2G1B,GAAO;;AM1G/B,0BAA0C;EAAE,OAAO,EN2G1B,GAAO;;AM1GhC,0BAA0C;EAAE,OAAO,EN2G1B,GAAO;;AM1GhC,2BAA2C;EAAE,OAAO,EN2G1B,GAAO;;AM1GjC,2BAA2C;EAAE,OAAO,EN8G1B,GAAO;;AM7GjC,4BAA4C;EAAE,OAAO,EN8G1B,GAAO;;AM7GlC,oBAAoC;EAAE,OAAO,ENgK1B,GAAO;;AM/J1B,sBAAsC;EAAE,OAAO,EN4J1B,GAAO;;AM3J5B,yBAAyC;EAAE,OAAO,ENwO1B,GAAO;;AMvO/B,kBAAkC;EAAE,OAAO,ENqO1B,GAAO;;AMpOxB,eAA+B;EAAE,OAAO,EN+N1B,GAAO;;AM9NrB,sBAAsC;EAAE,OAAO,EN+N1B,GAAO;;AM9N5B,uBAAuC;EAAE,OAAO,ENmO1B,GAAO;;AMlO7B,kBAAkC;EAAE,OAAO,ENxM1B,GAAO;;AMyMxB,yBAAyC;EAAE,OAAO,EN+G1B,GAAO;;AM9G/B,oBAAoC;EAAE,OAAO,ENnF1B,GAAO;;AMoF1B,iBAAiC;EAAE,OAAO,EN/I1B,GAAO;;AMgJvB,cAA8B;EAAE,OAAO,ENhX1B,GAAO;;AMiXpB,oBAAoC;EAAE,OAAO,ENxT1B,GAAO;;AMyT1B,2BAA2C;EAAE,OAAO,ENxT1B,GAAO;;AMyTjC,iBAAiC;EAAE,OAAO,ENyK1B,GAAO;;AMxKvB,wBAAwC;EAAE,OAAO,ENyK1B,GAAO;;AMxK9B,0BAA0C;EAAE,OAAO,ENtD1B,GAAO;;AMuDhC,wBAAwC;EAAE,OAAO,ENpD1B,GAAO;;AMqD9B,0BAA0C;EAAE,OAAO,ENvD1B,GAAO;;AMwDhC,2BAA2C;EAAE,OAAO,ENvD1B,GAAO;;AMwDjC,gBAAgC;EAAE,OAAO,ENxW1B,GAAO;;AMyWtB,kBAAkC;EAAE,OAAO,EN0M1B,GAAO;;AMzMxB,kBAAkC;EAAE,OAAO,ENpX1B,GAAO;;AMqXxB,gBAAgC;EAAE,OAAO,ENpE1B,GAAO;;AMqEtB,mBAAmC;EAAE,OAAO,EN1N1B,GAAO;;AM2NzB,gBAAgC;EAAE,OAAO,ENqE1B,GAAO;;AMpEtB,qBAAqC;EAAE,OAAO,ENtJ1B,GAAO;;AMuJ3B,iBAAiC;EAAE,OAAO,ENuJ1B,GAAO;;AMtJvB,iBAAiC;EAAE,OAAO,EN/L1B,GAAO;;AMgMvB,eAA+B;EAAE,OAAO,EN1D1B,GAAO;;AM2DrB;mBACmC;EAAE,OAAO,ENnI1B,GAAO;;AMoIzB,gBAAgC;EAAE,OAAO,EN2G1B,GAAO;;AM1GtB,iBAAiC;EAAE,OAAO,ENxC1B,GAAO;;AMyCvB,kBAAkC;EAAE,OAAO,ENrX1B,GAAO;;AMsXxB,cAA8B;EAAE,OAAO,ENpU1B,GAAO;;AMqUpB,aAA6B;EAAE,OAAO,ENgL1B,GAAO;;AM/KnB,gBAAgC;EAAE,OAAO,ENqL1B,GAAO;;AMpLtB,iBAAiC;EAAE,OAAO,ENa1B,GAAO;;AMZvB,oBAAoC;EAAE,OAAO,ENrC1B,GAAO;;AMsC1B,yBAAyC;EAAE,OAAO,EN8E1B,GAAO;;AM7E/B,+BAA+C;EAAE,OAAO,ENtX1B,GAAO;;AMuXrC,8BAA8C;EAAE,OAAO,ENxX1B,GAAO;;AMyXpC;8BAC8C;EAAE,OAAO,EN3T1B,GAAO;;AM4TpC,uBAAuC;EAAE,OAAO,ENjP1B,GAAO;;AMkP7B,qBAAqC;EAAE,OAAO,EN+K1B,GAAO;;AM9K3B,uBAAuC;EAAE,OAAO,ENmK1B,GAAO;;AMlK7B;cAC8B;EAAE,OAAO,ENoI1B,GAAO;;AMnIpB,wBAAwC;EAAE,OAAO,ENjB1B,GAAO;;AMkB9B,wBAAwC;EAAE,OAAO,EN6D1B,GAAO;;AM5D9B,gBAAgC;EAAE,OAAO,EN2C1B,GAAO;;AM1CtB,0BAA0C;EAAE,OAAO,EN7O1B,GAAO;;AM8OhC,oBAAoC;EAAE,OAAO,EN2K1B,GAAO;;AM1K1B,iBAAiC;EAAE,OAAO,ENvD1B,GAAO;;AMwDvB;;qBAEqC;EAAE,OAAO,ENsI1B,GAAO;;AMrI3B;yBACyC;EAAE,OAAO,ENjK1B,GAAO;;AMkK/B,gBAAgC;EAAE,OAAO,ENwK1B,GAAO;;AMvKtB,iBAAiC;EAAE,OAAO,ENvK1B,GAAO;;AMwKvB,iBAAiC;EAAE,OAAO,ENhB1B,GAAO;;AMiBvB,wBAAwC;EAAE,OAAO,ENhB1B,GAAO;;AMiB9B,6BAA6C;EAAE,OAAO,ENsE1B,GAAO;;AMrEnC,sBAAsC;EAAE,OAAO,ENoE1B,GAAO;;AMnE5B,oBAAoC;EAAE,OAAO,EN7Q1B,GAAO;;AM8Q1B,eAA+B;EAAE,OAAO,EN1Q1B,GAAO;;AM2QrB,qBAAqC;EAAE,OAAO,ENjD1B,GAAO;;AMkD3B,yBAAyC;EAAE,OAAO,ENjD1B,GAAO;;AMkD/B,iBAAiC;EAAE,OAAO,ENvQ1B,GAAO;;AMwQvB,iBAAiC;EAAE,OAAO,EN9I1B,GAAO;;AM+IvB,mBAAmC;EAAE,OAAO,ENzI1B,GAAO;;AM0IzB,cAA8B;EAAE,OAAO,EN9O1B,GAAO;;AM+OpB,mBAAmC;EAAE,OAAO,EN3W1B,GAAO;;AM4WzB,gBAAgC;EAAE,OAAO,EN9T1B,GAAO;;AM+TtB,cAA8B;EAAE,OAAO,ENnE1B,GAAO;;AMoEpB,gBAAgC;EAAE,OAAO,ENoC1B,GAAO;;AMnCtB,eAA+B;EAAE,OAAO,ENjS1B,GAAO;;AMkSrB,gBAAgC;EAAE,OAAO,ENjS1B,GAAO;;AMkStB,kBAAkC;EAAE,OAAO,ENtY1B,GAAO;;AMuYxB,yBAAyC;EAAE,OAAO,ENtY1B,GAAO;;AMuY/B,gBAAgC;EAAE,OAAO,EN2C1B,GAAO;;AM1CtB,uBAAuC;EAAE,OAAO,EN2C1B,GAAO;;AM1C7B,kBAAkC;EAAE,OAAO,ENvC1B,GAAO;;AMwCxB;cAC8B;EAAE,OAAO,EN3W1B,GAAO;;AM4WpB;eAC+B;EAAE,OAAO,EN2D1B,GAAO;;AM1DrB,eAA+B;EAAE,OAAO,ENuF1B,GAAO;;AMtFrB,kBAAkC;EAAE,OAAO,ENwB1B,GAAO;;AMvBxB,qBAAqC;EAAE,OAAO,ENpS1B,GAAO;;AMqS3B,qBAAqC;EAAE,OAAO,ENkB1B,GAAO;;AMjB3B,mBAAmC;EAAE,OAAO,EN1S1B,GAAO;;AM2SzB,qBAAqC;EAAE,OAAO,ENxP1B,GAAO;;AMyP3B,sBAAsC;EAAE,OAAO,ENjP1B,GAAO;;AMkP5B,uBAAuC;EAAE,OAAO,EN9P1B,GAAO;;AM+P7B,4BAA4C;EAAE,OAAO,ENxP1B,GAAO;;AMyPlC;;uBAEuC;EAAE,OAAO,ENjQ1B,GAAO;;AMkQ7B;yBACyC;EAAE,OAAO,ENvQ1B,GAAO;;AMwQ/B;uBACuC;EAAE,OAAO,ENxQ1B,GAAO;;AMyQ7B;uBACuC;EAAE,OAAO,EN7P1B,GAAO;;AM8P7B,sBAAsC;EAAE,OAAO,EN1Q1B,GAAO;;AM2Q5B,eAA+B;EAAE,OAAO,ENsG1B,GAAO;;AMrGrB,kBAAkC;EAAE,OAAO,ENlV1B,GAAO;;AMmVxB,mBAAmC;EAAE,OAAO,ENnL1B,GAAO;;AMoLzB;;;;oBAIoC;EAAE,OAAO,ENxK1B,GAAO;;AMyK1B,yBAAyC;EAAE,OAAO,ENpW1B,GAAO;;AMqW/B;gBACgC;EAAE,OAAO,EN1E1B,GAAO;;AM2EtB;iBACiC;EAAE,OAAO,ENpT1B,GAAO;;AMqTvB,qBAAqC;EAAE,OAAO,EN1O1B,GAAO;;AM2O3B,cAA8B;EAAE,OAAO,EN5O1B,GAAO;;AM6OpB,sBAAsC;EAAE,OAAO,EN7N1B,GAAO;;AM8N5B,wBAAwC;EAAE,OAAO,ENwB1B,GAAO;;AMvB9B,aAA6B;EAAE,OAAO,ENzF1B,GAAO;;AM0FnB;iBACiC;EAAE,OAAO,EN2F1B,GAAO;;AM1FvB;sBACsC;EAAE,OAAO,EN9H1B,GAAO;;AM+H5B;wBACwC;EAAE,OAAO,EN/H1B,GAAO;;AMgI9B,kBAAkC;EAAE,OAAO,EN3N1B,GAAO;;AM4NxB;sBACsC;EAAE,OAAO,ENrX1B,GAAO;;AMsX5B,iBAAiC;EAAE,OAAO,ENnO1B,GAAO;;AMoOvB,oBAAoC;EAAE,OAAO,ENlI1B,GAAO;;AMmI1B,kBAAkC;EAAE,OAAO,EN1C1B,GAAO;;AM2CxB,oBAAoC;EAAE,OAAO,EN7D1B,GAAO;;AM8D1B,2BAA2C;EAAE,OAAO,EN7D1B,GAAO;;AM8DjC,eAA+B;EAAE,OAAO,ENpb1B,GAAO;;AMqbrB;mBACmC;EAAE,OAAO,ENzQ1B,GAAO;;AM0QzB,cAA8B;EAAE,OAAO,ENsC1B,GAAO;;AMrCpB,qBAAqC;EAAE,OAAO,EN/b1B,GAAO;;AMgc3B,eAA+B;EAAE,OAAO,ENrH1B,GAAO;;AMsHrB,qBAAqC;EAAE,OAAO,ENlD1B,GAAO;;AMmD3B,iBAAiC;EAAE,OAAO,ENsC1B,GAAO;;AMrCvB,eAA+B;EAAE,OAAO,ENiF1B,GAAO;;AMhFrB,sBAAsC;EAAE,OAAO,ENvJ1B,GAAO;;AMwJ5B,eAA+B;EAAE,OAAO,ENuE1B,GAAO;;AMtErB,qBAAqC;EAAE,OAAO,ENjb1B,GAAO;;AMkb3B,iBAAiC;EAAE,OAAO,EN9I1B,GAAO;;AM+IvB,wBAAwC;EAAE,OAAO,ENhQ1B,GAAO;;AMiQ9B,kBAAkC;EAAE,OAAO,EN9Z1B,GAAO;;AM+ZxB,wBAAwC;EAAE,OAAO,ENla1B,GAAO;;AMma9B,sBAAsC;EAAE,OAAO,ENpa1B,GAAO;;AMqa5B,kBAAkC;EAAE,OAAO,ENta1B,GAAO;;AMuaxB,oBAAoC;EAAE,OAAO,ENpa1B,GAAO;;AMqa1B,oBAAoC;EAAE,OAAO,ENpa1B,GAAO;;AMqa1B,qBAAqC;EAAE,OAAO,ENld1B,GAAO;;AMmd3B,uBAAuC;EAAE,OAAO,ENld1B,GAAO;;AMmd7B,gBAAgC;EAAE,OAAO,ENY1B,GAAO;;AMXtB,oBAAoC;EAAE,OAAO,EN3X1B,GAAO;;AM4X1B,aAA6B;EAAE,OAAO,ENre1B,GAAO;;AMsenB,qBAAqC;EAAE,OAAO,ENjV1B,GAAO;;AMkV3B,sBAAsC;EAAE,OAAO,ENpK1B,GAAO;;AMqK5B,wBAAwC;EAAE,OAAO,ENrd1B,GAAO;;AMsd9B,qBAAqC;EAAE,OAAO,EN3f1B,GAAO;;AM4f3B,oBAAoC;EAAE,OAAO,ENvJ1B,GAAO;;AMwJ1B,qBAAqC;EAAE,OAAO,EN5N1B,GAAO;;AM6N3B,iBAAiC;EAAE,OAAO,EN1O1B,GAAO;;AM2OvB,wBAAwC;EAAE,OAAO,EN1O1B,GAAO;;AM2O9B,qBAAqC;EAAE,OAAO,ENN1B,GAAO;;AMO3B,oBAAoC;EAAE,OAAO,ENN1B,GAAO;;AMO1B,kBAAkC;EAAE,OAAO,EN/d1B,GAAO;;AMgexB,cAA8B;EAAE,OAAO,EN7c1B,GAAO;;AM8cpB,kBAAkC;EAAE,OAAO,EN1P1B,GAAO;;AM2PxB,oBAAoC;EAAE,OAAO,ENhhB1B,GAAO;;AMihB1B,aAA6B;EAAE,OAAO,EN7b1B,GAAO;;AM8bnB;;cAE8B;EAAE,OAAO,ENxQ1B,GAAO;;AMyQpB,mBAAmC;EAAE,OAAO,EN7M1B,GAAO;;AM8MzB,qBAAqC;EAAE,OAAO,ENpd1B,GAAO;;AMqd3B,yBAAyC;EAAE,OAAO,ENnZ1B,GAAO;;AMoZ/B,mBAAmC;EAAE,OAAO,ENxY1B,GAAO;;AMyYzB,mBAAmC;EAAE,OAAO,EN1T1B,GAAO;;AM2TzB,kBAAkC;EAAE,OAAO,ENxP1B,GAAO;;AMyPxB,iBAAiC;EAAE,OAAO,ENrH1B,GAAO;;AMsHvB,uBAAuC;EAAE,OAAO,ENzG1B,GAAO;;AM0G7B,sBAAsC;EAAE,OAAO,ENrG1B,GAAO;;AMsG5B,mBAAmC;EAAE,OAAO,ENpG1B,GAAO;;AMqGzB,oBAAoC;EAAE,OAAO,EN5c1B,GAAO;;AM6c1B,0BAA0C;EAAE,OAAO,EN9c1B,GAAO;;AM+chC,kBAAkC;EAAE,OAAO,EN3Y1B,GAAO;;AM4YxB,eAA+B;EAAE,OAAO,ENhH1B,GAAO;;AMiHrB,sBAAsC;EAAE,OAAO,ENI1B,GAAO;;AMH5B,qBAAqC;EAAE,OAAO,EN5M1B,GAAO;;AM6M3B,sBAAsC;EAAE,OAAO,ENpE1B,GAAO;;AMqE5B,oBAAoC;EAAE,OAAO,ENhS1B,GAAO;;AMiS1B,gBAAgC;EAAE,OAAO,ENG1B,GAAO;;AMFtB,eAA+B;EAAE,OAAO,ENtO1B,GAAO;;AMuOrB,kBAAkC;EAAE,OAAO,EN7N1B,GAAO;;AM8NxB,sBAAsC;EAAE,OAAO,ENhC1B,GAAO;;AMiC5B,0BAA0C;EAAE,OAAO,ENhC1B,GAAO;;AMiChC,uBAAuC;EAAE,OAAO,END1B,GAAO;;AME7B,sBAAsC;EAAE,OAAO,EN1O1B,GAAO;;AM2O5B,qBAAqC;EAAE,OAAO,ENF1B,GAAO;;AMG3B,sBAAsC;EAAE,OAAO,EN3O1B,GAAO;;AM4O5B,wBAAwC;EAAE,OAAO,EN1O1B,GAAO;;AM2O9B,wBAAwC;EAAE,OAAO,EN5O1B,GAAO;;AM6O9B,iBAAiC;EAAE,OAAO,ENvN1B,GAAO;;AMwNvB,4BAA4C;EAAE,OAAO,EN9X1B,GAAO;;AM+XlC,sBAAsC;EAAE,OAAO,ENhM1B,GAAO;;AMiM5B,mBAAmC;EAAE,OAAO,ENI1B,GAAO;;AMHzB,iBAAiC;EAAE,OAAO,EN7I1B,GAAO;;AM8IvB,oBAAoC;EAAE,OAAO,ENjB1B,GAAO;;AMkB1B,qBAAqC;EAAE,OAAO,ENhB1B,GAAO;;AMiB3B;cAC8B;EAAE,OAAO,ENphB1B,GAAO;;AMqhBpB,kBAAkC;EAAE,OAAO,ENd1B,GAAO;;AMexB,gBAAgC;EAAE,OAAO,ENnD1B,GAAO;;AMoDtB,iBAAiC;EAAE,OAAO,ENvF1B,GAAO;;AMwFvB,iBAAiC;EAAE,OAAO,ENrP1B,GAAO", -"sources": ["../scss/_path.scss","../scss/_core.scss","../scss/_larger.scss","../scss/_fixed-width.scss","../scss/_list.scss","../scss/_variables.scss","../scss/_bordered-pulled.scss","../scss/_animated.scss","../scss/_rotated-flipped.scss","../scss/_mixins.scss","../scss/_stacked.scss","../scss/_icons.scss"], -"names": [], -"file": "font-awesome.css" -} diff --git a/library/font_awesome/css/font-awesome.min.css b/library/font_awesome/css/font-awesome.min.css deleted file mode 100644 index 540440ce8..000000000 --- a/library/font_awesome/css/font-awesome.min.css +++ /dev/null @@ -1,4 +0,0 @@ -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/library/font_awesome/fonts/FontAwesome.otf b/library/font_awesome/fonts/FontAwesome.otf deleted file mode 100644 index 401ec0f36..000000000 Binary files a/library/font_awesome/fonts/FontAwesome.otf and /dev/null differ diff --git a/library/font_awesome/fonts/fontawesome-webfont.svg b/library/font_awesome/fonts/fontawesome-webfont.svg deleted file mode 100644 index 855c845e5..000000000 --- a/library/font_awesome/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,2671 +0,0 @@ - - - - -Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 - By ,,, -Copyright Dave Gandy 2016. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/library/font_awesome/fonts/fontawesome-webfont.ttf b/library/font_awesome/fonts/fontawesome-webfont.ttf deleted file mode 100644 index 35acda2fa..000000000 Binary files a/library/font_awesome/fonts/fontawesome-webfont.ttf and /dev/null differ diff --git a/library/font_awesome/fonts/fontawesome-webfont.woff b/library/font_awesome/fonts/fontawesome-webfont.woff deleted file mode 100644 index 400014a4b..000000000 Binary files a/library/font_awesome/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/library/font_awesome/fonts/fontawesome-webfont.woff2 b/library/font_awesome/fonts/fontawesome-webfont.woff2 deleted file mode 100644 index 4d13fc604..000000000 Binary files a/library/font_awesome/fonts/fontawesome-webfont.woff2 and /dev/null differ diff --git a/library/font_awesome/less/animated.less b/library/font_awesome/less/animated.less deleted file mode 100644 index 66ad52a5b..000000000 --- a/library/font_awesome/less/animated.less +++ /dev/null @@ -1,34 +0,0 @@ -// Animated Icons -// -------------------------- - -.@{fa-css-prefix}-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} - -.@{fa-css-prefix}-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} diff --git a/library/font_awesome/less/bordered-pulled.less b/library/font_awesome/less/bordered-pulled.less deleted file mode 100644 index f1c8ad75f..000000000 --- a/library/font_awesome/less/bordered-pulled.less +++ /dev/null @@ -1,25 +0,0 @@ -// Bordered & Pulled -// ------------------------- - -.@{fa-css-prefix}-border { - padding: .2em .25em .15em; - border: solid .08em @fa-border-color; - border-radius: .1em; -} - -.@{fa-css-prefix}-pull-left { float: left; } -.@{fa-css-prefix}-pull-right { float: right; } - -.@{fa-css-prefix} { - &.@{fa-css-prefix}-pull-left { margin-right: .3em; } - &.@{fa-css-prefix}-pull-right { margin-left: .3em; } -} - -/* Deprecated as of 4.4.0 */ -.pull-right { float: right; } -.pull-left { float: left; } - -.@{fa-css-prefix} { - &.pull-left { margin-right: .3em; } - &.pull-right { margin-left: .3em; } -} diff --git a/library/font_awesome/less/core.less b/library/font_awesome/less/core.less deleted file mode 100644 index c577ac84a..000000000 --- a/library/font_awesome/less/core.less +++ /dev/null @@ -1,12 +0,0 @@ -// Base Class Definition -// ------------------------- - -.@{fa-css-prefix} { - display: inline-block; - font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration - font-size: inherit; // can't have font-size inherit on line above, so need to override - text-rendering: auto; // optimizelegibility throws things off #1094 - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -} diff --git a/library/font_awesome/less/fixed-width.less b/library/font_awesome/less/fixed-width.less deleted file mode 100644 index 110289f2f..000000000 --- a/library/font_awesome/less/fixed-width.less +++ /dev/null @@ -1,6 +0,0 @@ -// Fixed Width Icons -// ------------------------- -.@{fa-css-prefix}-fw { - width: (18em / 14); - text-align: center; -} diff --git a/library/font_awesome/less/font-awesome.less b/library/font_awesome/less/font-awesome.less deleted file mode 100644 index c3677def3..000000000 --- a/library/font_awesome/less/font-awesome.less +++ /dev/null @@ -1,18 +0,0 @@ -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */ - -@import "variables.less"; -@import "mixins.less"; -@import "path.less"; -@import "core.less"; -@import "larger.less"; -@import "fixed-width.less"; -@import "list.less"; -@import "bordered-pulled.less"; -@import "animated.less"; -@import "rotated-flipped.less"; -@import "stacked.less"; -@import "icons.less"; -@import "screen-reader.less"; diff --git a/library/font_awesome/less/icons.less b/library/font_awesome/less/icons.less deleted file mode 100644 index 159d60042..000000000 --- a/library/font_awesome/less/icons.less +++ /dev/null @@ -1,789 +0,0 @@ -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ - -.@{fa-css-prefix}-glass:before { content: @fa-var-glass; } -.@{fa-css-prefix}-music:before { content: @fa-var-music; } -.@{fa-css-prefix}-search:before { content: @fa-var-search; } -.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; } -.@{fa-css-prefix}-heart:before { content: @fa-var-heart; } -.@{fa-css-prefix}-star:before { content: @fa-var-star; } -.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; } -.@{fa-css-prefix}-user:before { content: @fa-var-user; } -.@{fa-css-prefix}-film:before { content: @fa-var-film; } -.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; } -.@{fa-css-prefix}-th:before { content: @fa-var-th; } -.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; } -.@{fa-css-prefix}-check:before { content: @fa-var-check; } -.@{fa-css-prefix}-remove:before, -.@{fa-css-prefix}-close:before, -.@{fa-css-prefix}-times:before { content: @fa-var-times; } -.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; } -.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; } -.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; } -.@{fa-css-prefix}-signal:before { content: @fa-var-signal; } -.@{fa-css-prefix}-gear:before, -.@{fa-css-prefix}-cog:before { content: @fa-var-cog; } -.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; } -.@{fa-css-prefix}-home:before { content: @fa-var-home; } -.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; } -.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; } -.@{fa-css-prefix}-road:before { content: @fa-var-road; } -.@{fa-css-prefix}-download:before { content: @fa-var-download; } -.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; } -.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; } -.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; } -.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; } -.@{fa-css-prefix}-rotate-right:before, -.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; } -.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; } -.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; } -.@{fa-css-prefix}-lock:before { content: @fa-var-lock; } -.@{fa-css-prefix}-flag:before { content: @fa-var-flag; } -.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; } -.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; } -.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; } -.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; } -.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; } -.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; } -.@{fa-css-prefix}-tag:before { content: @fa-var-tag; } -.@{fa-css-prefix}-tags:before { content: @fa-var-tags; } -.@{fa-css-prefix}-book:before { content: @fa-var-book; } -.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; } -.@{fa-css-prefix}-print:before { content: @fa-var-print; } -.@{fa-css-prefix}-camera:before { content: @fa-var-camera; } -.@{fa-css-prefix}-font:before { content: @fa-var-font; } -.@{fa-css-prefix}-bold:before { content: @fa-var-bold; } -.@{fa-css-prefix}-italic:before { content: @fa-var-italic; } -.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; } -.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; } -.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; } -.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; } -.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; } -.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; } -.@{fa-css-prefix}-list:before { content: @fa-var-list; } -.@{fa-css-prefix}-dedent:before, -.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; } -.@{fa-css-prefix}-indent:before { content: @fa-var-indent; } -.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; } -.@{fa-css-prefix}-photo:before, -.@{fa-css-prefix}-image:before, -.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; } -.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; } -.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; } -.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; } -.@{fa-css-prefix}-tint:before { content: @fa-var-tint; } -.@{fa-css-prefix}-edit:before, -.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; } -.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; } -.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; } -.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; } -.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; } -.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; } -.@{fa-css-prefix}-backward:before { content: @fa-var-backward; } -.@{fa-css-prefix}-play:before { content: @fa-var-play; } -.@{fa-css-prefix}-pause:before { content: @fa-var-pause; } -.@{fa-css-prefix}-stop:before { content: @fa-var-stop; } -.@{fa-css-prefix}-forward:before { content: @fa-var-forward; } -.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; } -.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; } -.@{fa-css-prefix}-eject:before { content: @fa-var-eject; } -.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; } -.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; } -.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; } -.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; } -.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; } -.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; } -.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; } -.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; } -.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; } -.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; } -.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; } -.@{fa-css-prefix}-ban:before { content: @fa-var-ban; } -.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; } -.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; } -.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; } -.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; } -.@{fa-css-prefix}-mail-forward:before, -.@{fa-css-prefix}-share:before { content: @fa-var-share; } -.@{fa-css-prefix}-expand:before { content: @fa-var-expand; } -.@{fa-css-prefix}-compress:before { content: @fa-var-compress; } -.@{fa-css-prefix}-plus:before { content: @fa-var-plus; } -.@{fa-css-prefix}-minus:before { content: @fa-var-minus; } -.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; } -.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; } -.@{fa-css-prefix}-gift:before { content: @fa-var-gift; } -.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; } -.@{fa-css-prefix}-fire:before { content: @fa-var-fire; } -.@{fa-css-prefix}-eye:before { content: @fa-var-eye; } -.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; } -.@{fa-css-prefix}-warning:before, -.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; } -.@{fa-css-prefix}-plane:before { content: @fa-var-plane; } -.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; } -.@{fa-css-prefix}-random:before { content: @fa-var-random; } -.@{fa-css-prefix}-comment:before { content: @fa-var-comment; } -.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; } -.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; } -.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; } -.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; } -.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; } -.@{fa-css-prefix}-folder:before { content: @fa-var-folder; } -.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; } -.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; } -.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; } -.@{fa-css-prefix}-bar-chart-o:before, -.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; } -.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; } -.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; } -.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; } -.@{fa-css-prefix}-key:before { content: @fa-var-key; } -.@{fa-css-prefix}-gears:before, -.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; } -.@{fa-css-prefix}-comments:before { content: @fa-var-comments; } -.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; } -.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; } -.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; } -.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; } -.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; } -.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; } -.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; } -.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; } -.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; } -.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; } -.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; } -.@{fa-css-prefix}-upload:before { content: @fa-var-upload; } -.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; } -.@{fa-css-prefix}-phone:before { content: @fa-var-phone; } -.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; } -.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; } -.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; } -.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; } -.@{fa-css-prefix}-facebook-f:before, -.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; } -.@{fa-css-prefix}-github:before { content: @fa-var-github; } -.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; } -.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; } -.@{fa-css-prefix}-feed:before, -.@{fa-css-prefix}-rss:before { content: @fa-var-rss; } -.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; } -.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; } -.@{fa-css-prefix}-bell:before { content: @fa-var-bell; } -.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; } -.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; } -.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; } -.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; } -.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; } -.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; } -.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; } -.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; } -.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; } -.@{fa-css-prefix}-globe:before { content: @fa-var-globe; } -.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; } -.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; } -.@{fa-css-prefix}-filter:before { content: @fa-var-filter; } -.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; } -.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; } -.@{fa-css-prefix}-group:before, -.@{fa-css-prefix}-users:before { content: @fa-var-users; } -.@{fa-css-prefix}-chain:before, -.@{fa-css-prefix}-link:before { content: @fa-var-link; } -.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; } -.@{fa-css-prefix}-flask:before { content: @fa-var-flask; } -.@{fa-css-prefix}-cut:before, -.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; } -.@{fa-css-prefix}-copy:before, -.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; } -.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; } -.@{fa-css-prefix}-save:before, -.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; } -.@{fa-css-prefix}-square:before { content: @fa-var-square; } -.@{fa-css-prefix}-navicon:before, -.@{fa-css-prefix}-reorder:before, -.@{fa-css-prefix}-bars:before { content: @fa-var-bars; } -.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; } -.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; } -.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; } -.@{fa-css-prefix}-underline:before { content: @fa-var-underline; } -.@{fa-css-prefix}-table:before { content: @fa-var-table; } -.@{fa-css-prefix}-magic:before { content: @fa-var-magic; } -.@{fa-css-prefix}-truck:before { content: @fa-var-truck; } -.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; } -.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; } -.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; } -.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; } -.@{fa-css-prefix}-money:before { content: @fa-var-money; } -.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; } -.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; } -.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; } -.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; } -.@{fa-css-prefix}-columns:before { content: @fa-var-columns; } -.@{fa-css-prefix}-unsorted:before, -.@{fa-css-prefix}-sort:before { content: @fa-var-sort; } -.@{fa-css-prefix}-sort-down:before, -.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; } -.@{fa-css-prefix}-sort-up:before, -.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; } -.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; } -.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; } -.@{fa-css-prefix}-rotate-left:before, -.@{fa-css-prefix}-undo:before { content: @fa-var-undo; } -.@{fa-css-prefix}-legal:before, -.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; } -.@{fa-css-prefix}-dashboard:before, -.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; } -.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; } -.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; } -.@{fa-css-prefix}-flash:before, -.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; } -.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; } -.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; } -.@{fa-css-prefix}-paste:before, -.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; } -.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; } -.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; } -.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; } -.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; } -.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; } -.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; } -.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; } -.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; } -.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; } -.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; } -.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; } -.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; } -.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; } -.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; } -.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; } -.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; } -.@{fa-css-prefix}-beer:before { content: @fa-var-beer; } -.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; } -.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; } -.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; } -.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; } -.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; } -.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; } -.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; } -.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; } -.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; } -.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; } -.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; } -.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; } -.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; } -.@{fa-css-prefix}-mobile-phone:before, -.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; } -.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; } -.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; } -.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; } -.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; } -.@{fa-css-prefix}-circle:before { content: @fa-var-circle; } -.@{fa-css-prefix}-mail-reply:before, -.@{fa-css-prefix}-reply:before { content: @fa-var-reply; } -.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; } -.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; } -.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; } -.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; } -.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; } -.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; } -.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; } -.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; } -.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; } -.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; } -.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; } -.@{fa-css-prefix}-code:before { content: @fa-var-code; } -.@{fa-css-prefix}-mail-reply-all:before, -.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; } -.@{fa-css-prefix}-star-half-empty:before, -.@{fa-css-prefix}-star-half-full:before, -.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; } -.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; } -.@{fa-css-prefix}-crop:before { content: @fa-var-crop; } -.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; } -.@{fa-css-prefix}-unlink:before, -.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; } -.@{fa-css-prefix}-question:before { content: @fa-var-question; } -.@{fa-css-prefix}-info:before { content: @fa-var-info; } -.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; } -.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; } -.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; } -.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; } -.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; } -.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; } -.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; } -.@{fa-css-prefix}-shield:before { content: @fa-var-shield; } -.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; } -.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; } -.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; } -.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; } -.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; } -.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; } -.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; } -.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; } -.@{fa-css-prefix}-html5:before { content: @fa-var-html5; } -.@{fa-css-prefix}-css3:before { content: @fa-var-css3; } -.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; } -.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; } -.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; } -.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; } -.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; } -.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; } -.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; } -.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; } -.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; } -.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; } -.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; } -.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; } -.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; } -.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; } -.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; } -.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; } -.@{fa-css-prefix}-compass:before { content: @fa-var-compass; } -.@{fa-css-prefix}-toggle-down:before, -.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; } -.@{fa-css-prefix}-toggle-up:before, -.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; } -.@{fa-css-prefix}-toggle-right:before, -.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; } -.@{fa-css-prefix}-euro:before, -.@{fa-css-prefix}-eur:before { content: @fa-var-eur; } -.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; } -.@{fa-css-prefix}-dollar:before, -.@{fa-css-prefix}-usd:before { content: @fa-var-usd; } -.@{fa-css-prefix}-rupee:before, -.@{fa-css-prefix}-inr:before { content: @fa-var-inr; } -.@{fa-css-prefix}-cny:before, -.@{fa-css-prefix}-rmb:before, -.@{fa-css-prefix}-yen:before, -.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; } -.@{fa-css-prefix}-ruble:before, -.@{fa-css-prefix}-rouble:before, -.@{fa-css-prefix}-rub:before { content: @fa-var-rub; } -.@{fa-css-prefix}-won:before, -.@{fa-css-prefix}-krw:before { content: @fa-var-krw; } -.@{fa-css-prefix}-bitcoin:before, -.@{fa-css-prefix}-btc:before { content: @fa-var-btc; } -.@{fa-css-prefix}-file:before { content: @fa-var-file; } -.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; } -.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; } -.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; } -.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; } -.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; } -.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; } -.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; } -.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; } -.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; } -.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; } -.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; } -.@{fa-css-prefix}-xing:before { content: @fa-var-xing; } -.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; } -.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; } -.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; } -.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; } -.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; } -.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; } -.@{fa-css-prefix}-adn:before { content: @fa-var-adn; } -.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; } -.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; } -.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; } -.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; } -.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; } -.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; } -.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; } -.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; } -.@{fa-css-prefix}-apple:before { content: @fa-var-apple; } -.@{fa-css-prefix}-windows:before { content: @fa-var-windows; } -.@{fa-css-prefix}-android:before { content: @fa-var-android; } -.@{fa-css-prefix}-linux:before { content: @fa-var-linux; } -.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; } -.@{fa-css-prefix}-skype:before { content: @fa-var-skype; } -.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; } -.@{fa-css-prefix}-trello:before { content: @fa-var-trello; } -.@{fa-css-prefix}-female:before { content: @fa-var-female; } -.@{fa-css-prefix}-male:before { content: @fa-var-male; } -.@{fa-css-prefix}-gittip:before, -.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; } -.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; } -.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; } -.@{fa-css-prefix}-archive:before { content: @fa-var-archive; } -.@{fa-css-prefix}-bug:before { content: @fa-var-bug; } -.@{fa-css-prefix}-vk:before { content: @fa-var-vk; } -.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; } -.@{fa-css-prefix}-renren:before { content: @fa-var-renren; } -.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; } -.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; } -.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; } -.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; } -.@{fa-css-prefix}-toggle-left:before, -.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; } -.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; } -.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; } -.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; } -.@{fa-css-prefix}-turkish-lira:before, -.@{fa-css-prefix}-try:before { content: @fa-var-try; } -.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; } -.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; } -.@{fa-css-prefix}-slack:before { content: @fa-var-slack; } -.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; } -.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; } -.@{fa-css-prefix}-openid:before { content: @fa-var-openid; } -.@{fa-css-prefix}-institution:before, -.@{fa-css-prefix}-bank:before, -.@{fa-css-prefix}-university:before { content: @fa-var-university; } -.@{fa-css-prefix}-mortar-board:before, -.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; } -.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; } -.@{fa-css-prefix}-google:before { content: @fa-var-google; } -.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; } -.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; } -.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; } -.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; } -.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; } -.@{fa-css-prefix}-digg:before { content: @fa-var-digg; } -.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; } -.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; } -.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; } -.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; } -.@{fa-css-prefix}-language:before { content: @fa-var-language; } -.@{fa-css-prefix}-fax:before { content: @fa-var-fax; } -.@{fa-css-prefix}-building:before { content: @fa-var-building; } -.@{fa-css-prefix}-child:before { content: @fa-var-child; } -.@{fa-css-prefix}-paw:before { content: @fa-var-paw; } -.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; } -.@{fa-css-prefix}-cube:before { content: @fa-var-cube; } -.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; } -.@{fa-css-prefix}-behance:before { content: @fa-var-behance; } -.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; } -.@{fa-css-prefix}-steam:before { content: @fa-var-steam; } -.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; } -.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; } -.@{fa-css-prefix}-automobile:before, -.@{fa-css-prefix}-car:before { content: @fa-var-car; } -.@{fa-css-prefix}-cab:before, -.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; } -.@{fa-css-prefix}-tree:before { content: @fa-var-tree; } -.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; } -.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; } -.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; } -.@{fa-css-prefix}-database:before { content: @fa-var-database; } -.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; } -.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; } -.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; } -.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; } -.@{fa-css-prefix}-file-photo-o:before, -.@{fa-css-prefix}-file-picture-o:before, -.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; } -.@{fa-css-prefix}-file-zip-o:before, -.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; } -.@{fa-css-prefix}-file-sound-o:before, -.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; } -.@{fa-css-prefix}-file-movie-o:before, -.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; } -.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; } -.@{fa-css-prefix}-vine:before { content: @fa-var-vine; } -.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; } -.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; } -.@{fa-css-prefix}-life-bouy:before, -.@{fa-css-prefix}-life-buoy:before, -.@{fa-css-prefix}-life-saver:before, -.@{fa-css-prefix}-support:before, -.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; } -.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; } -.@{fa-css-prefix}-ra:before, -.@{fa-css-prefix}-resistance:before, -.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; } -.@{fa-css-prefix}-ge:before, -.@{fa-css-prefix}-empire:before { content: @fa-var-empire; } -.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; } -.@{fa-css-prefix}-git:before { content: @fa-var-git; } -.@{fa-css-prefix}-y-combinator-square:before, -.@{fa-css-prefix}-yc-square:before, -.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; } -.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; } -.@{fa-css-prefix}-qq:before { content: @fa-var-qq; } -.@{fa-css-prefix}-wechat:before, -.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; } -.@{fa-css-prefix}-send:before, -.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; } -.@{fa-css-prefix}-send-o:before, -.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; } -.@{fa-css-prefix}-history:before { content: @fa-var-history; } -.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; } -.@{fa-css-prefix}-header:before { content: @fa-var-header; } -.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; } -.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; } -.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; } -.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; } -.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; } -.@{fa-css-prefix}-soccer-ball-o:before, -.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; } -.@{fa-css-prefix}-tty:before { content: @fa-var-tty; } -.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; } -.@{fa-css-prefix}-plug:before { content: @fa-var-plug; } -.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; } -.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; } -.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; } -.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; } -.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; } -.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; } -.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; } -.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; } -.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; } -.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; } -.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; } -.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; } -.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; } -.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; } -.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; } -.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; } -.@{fa-css-prefix}-trash:before { content: @fa-var-trash; } -.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; } -.@{fa-css-prefix}-at:before { content: @fa-var-at; } -.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; } -.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; } -.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; } -.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; } -.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; } -.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; } -.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; } -.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; } -.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; } -.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; } -.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; } -.@{fa-css-prefix}-bus:before { content: @fa-var-bus; } -.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; } -.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; } -.@{fa-css-prefix}-cc:before { content: @fa-var-cc; } -.@{fa-css-prefix}-shekel:before, -.@{fa-css-prefix}-sheqel:before, -.@{fa-css-prefix}-ils:before { content: @fa-var-ils; } -.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; } -.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; } -.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; } -.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; } -.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; } -.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; } -.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; } -.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; } -.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; } -.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; } -.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; } -.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; } -.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; } -.@{fa-css-prefix}-ship:before { content: @fa-var-ship; } -.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; } -.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; } -.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; } -.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; } -.@{fa-css-prefix}-venus:before { content: @fa-var-venus; } -.@{fa-css-prefix}-mars:before { content: @fa-var-mars; } -.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; } -.@{fa-css-prefix}-intersex:before, -.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; } -.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; } -.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; } -.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; } -.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; } -.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; } -.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; } -.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; } -.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; } -.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; } -.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; } -.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; } -.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; } -.@{fa-css-prefix}-server:before { content: @fa-var-server; } -.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; } -.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; } -.@{fa-css-prefix}-hotel:before, -.@{fa-css-prefix}-bed:before { content: @fa-var-bed; } -.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; } -.@{fa-css-prefix}-train:before { content: @fa-var-train; } -.@{fa-css-prefix}-subway:before { content: @fa-var-subway; } -.@{fa-css-prefix}-medium:before { content: @fa-var-medium; } -.@{fa-css-prefix}-yc:before, -.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; } -.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; } -.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; } -.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; } -.@{fa-css-prefix}-battery-4:before, -.@{fa-css-prefix}-battery:before, -.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; } -.@{fa-css-prefix}-battery-3:before, -.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; } -.@{fa-css-prefix}-battery-2:before, -.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; } -.@{fa-css-prefix}-battery-1:before, -.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; } -.@{fa-css-prefix}-battery-0:before, -.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; } -.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; } -.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; } -.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; } -.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; } -.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; } -.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; } -.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; } -.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; } -.@{fa-css-prefix}-clone:before { content: @fa-var-clone; } -.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; } -.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; } -.@{fa-css-prefix}-hourglass-1:before, -.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; } -.@{fa-css-prefix}-hourglass-2:before, -.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; } -.@{fa-css-prefix}-hourglass-3:before, -.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; } -.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; } -.@{fa-css-prefix}-hand-grab-o:before, -.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; } -.@{fa-css-prefix}-hand-stop-o:before, -.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; } -.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; } -.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; } -.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; } -.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; } -.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; } -.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; } -.@{fa-css-prefix}-registered:before { content: @fa-var-registered; } -.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; } -.@{fa-css-prefix}-gg:before { content: @fa-var-gg; } -.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; } -.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; } -.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; } -.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; } -.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; } -.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; } -.@{fa-css-prefix}-safari:before { content: @fa-var-safari; } -.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; } -.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; } -.@{fa-css-prefix}-opera:before { content: @fa-var-opera; } -.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; } -.@{fa-css-prefix}-tv:before, -.@{fa-css-prefix}-television:before { content: @fa-var-television; } -.@{fa-css-prefix}-contao:before { content: @fa-var-contao; } -.@{fa-css-prefix}-500px:before { content: @fa-var-500px; } -.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; } -.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; } -.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; } -.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; } -.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; } -.@{fa-css-prefix}-industry:before { content: @fa-var-industry; } -.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; } -.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; } -.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; } -.@{fa-css-prefix}-map:before { content: @fa-var-map; } -.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; } -.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; } -.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; } -.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; } -.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; } -.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; } -.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; } -.@{fa-css-prefix}-edge:before { content: @fa-var-edge; } -.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; } -.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; } -.@{fa-css-prefix}-modx:before { content: @fa-var-modx; } -.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; } -.@{fa-css-prefix}-usb:before { content: @fa-var-usb; } -.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; } -.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; } -.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; } -.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; } -.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; } -.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; } -.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; } -.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; } -.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; } -.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; } -.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; } -.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; } -.@{fa-css-prefix}-percent:before { content: @fa-var-percent; } -.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; } -.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; } -.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; } -.@{fa-css-prefix}-envira:before { content: @fa-var-envira; } -.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; } -.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; } -.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; } -.@{fa-css-prefix}-blind:before { content: @fa-var-blind; } -.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; } -.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; } -.@{fa-css-prefix}-braille:before { content: @fa-var-braille; } -.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; } -.@{fa-css-prefix}-asl-interpreting:before, -.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; } -.@{fa-css-prefix}-deafness:before, -.@{fa-css-prefix}-hard-of-hearing:before, -.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; } -.@{fa-css-prefix}-glide:before { content: @fa-var-glide; } -.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; } -.@{fa-css-prefix}-signing:before, -.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; } -.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; } -.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; } -.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; } -.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; } -.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; } -.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; } -.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; } -.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; } -.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; } -.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; } -.@{fa-css-prefix}-google-plus-circle:before, -.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; } -.@{fa-css-prefix}-fa:before, -.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; } -.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; } -.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; } -.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; } -.@{fa-css-prefix}-linode:before { content: @fa-var-linode; } -.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; } -.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; } -.@{fa-css-prefix}-vcard:before, -.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; } -.@{fa-css-prefix}-vcard-o:before, -.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; } -.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; } -.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; } -.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; } -.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; } -.@{fa-css-prefix}-drivers-license:before, -.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; } -.@{fa-css-prefix}-drivers-license-o:before, -.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; } -.@{fa-css-prefix}-quora:before { content: @fa-var-quora; } -.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; } -.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; } -.@{fa-css-prefix}-thermometer-4:before, -.@{fa-css-prefix}-thermometer:before, -.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; } -.@{fa-css-prefix}-thermometer-3:before, -.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; } -.@{fa-css-prefix}-thermometer-2:before, -.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; } -.@{fa-css-prefix}-thermometer-1:before, -.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; } -.@{fa-css-prefix}-thermometer-0:before, -.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; } -.@{fa-css-prefix}-shower:before { content: @fa-var-shower; } -.@{fa-css-prefix}-bathtub:before, -.@{fa-css-prefix}-s15:before, -.@{fa-css-prefix}-bath:before { content: @fa-var-bath; } -.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; } -.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; } -.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; } -.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; } -.@{fa-css-prefix}-times-rectangle:before, -.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; } -.@{fa-css-prefix}-times-rectangle-o:before, -.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; } -.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; } -.@{fa-css-prefix}-grav:before { content: @fa-var-grav; } -.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; } -.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; } -.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; } -.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; } -.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; } -.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; } -.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; } -.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; } -.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; } diff --git a/library/font_awesome/less/larger.less b/library/font_awesome/less/larger.less deleted file mode 100644 index c9d646770..000000000 --- a/library/font_awesome/less/larger.less +++ /dev/null @@ -1,13 +0,0 @@ -// Icon Sizes -// ------------------------- - -/* makes the font 33% larger relative to the icon container */ -.@{fa-css-prefix}-lg { - font-size: (4em / 3); - line-height: (3em / 4); - vertical-align: -15%; -} -.@{fa-css-prefix}-2x { font-size: 2em; } -.@{fa-css-prefix}-3x { font-size: 3em; } -.@{fa-css-prefix}-4x { font-size: 4em; } -.@{fa-css-prefix}-5x { font-size: 5em; } diff --git a/library/font_awesome/less/list.less b/library/font_awesome/less/list.less deleted file mode 100644 index 0b440382f..000000000 --- a/library/font_awesome/less/list.less +++ /dev/null @@ -1,19 +0,0 @@ -// List Icons -// ------------------------- - -.@{fa-css-prefix}-ul { - padding-left: 0; - margin-left: @fa-li-width; - list-style-type: none; - > li { position: relative; } -} -.@{fa-css-prefix}-li { - position: absolute; - left: -@fa-li-width; - width: @fa-li-width; - top: (2em / 14); - text-align: center; - &.@{fa-css-prefix}-lg { - left: (-@fa-li-width + (4em / 14)); - } -} diff --git a/library/font_awesome/less/mixins.less b/library/font_awesome/less/mixins.less deleted file mode 100644 index beef231d0..000000000 --- a/library/font_awesome/less/mixins.less +++ /dev/null @@ -1,60 +0,0 @@ -// Mixins -// -------------------------- - -.fa-icon() { - display: inline-block; - font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration - font-size: inherit; // can't have font-size inherit on line above, so need to override - text-rendering: auto; // optimizelegibility throws things off #1094 - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -} - -.fa-icon-rotate(@degrees, @rotation) { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; - -webkit-transform: rotate(@degrees); - -ms-transform: rotate(@degrees); - transform: rotate(@degrees); -} - -.fa-icon-flip(@horiz, @vert, @rotation) { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; - -webkit-transform: scale(@horiz, @vert); - -ms-transform: scale(@horiz, @vert); - transform: scale(@horiz, @vert); -} - - -// Only display content to screen readers. A la Bootstrap 4. -// -// See: http://a11yproject.com/posts/how-to-hide-content/ - -.sr-only() { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0,0,0,0); - border: 0; -} - -// Use in conjunction with .sr-only to only display content when it's focused. -// -// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 -// -// Credit: HTML5 Boilerplate - -.sr-only-focusable() { - &:active, - &:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; - } -} diff --git a/library/font_awesome/less/path.less b/library/font_awesome/less/path.less deleted file mode 100644 index 835be41f8..000000000 --- a/library/font_awesome/less/path.less +++ /dev/null @@ -1,15 +0,0 @@ -/* FONT PATH - * -------------------------- */ - -@font-face { - font-family: 'FontAwesome'; - src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); - src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), - url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), - url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), - url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), - url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); - // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts - font-weight: normal; - font-style: normal; -} diff --git a/library/font_awesome/less/rotated-flipped.less b/library/font_awesome/less/rotated-flipped.less deleted file mode 100644 index f6ba81475..000000000 --- a/library/font_awesome/less/rotated-flipped.less +++ /dev/null @@ -1,20 +0,0 @@ -// Rotated & Flipped Icons -// ------------------------- - -.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } -.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } -.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } - -.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } -.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } - -// Hook for IE8-9 -// ------------------------- - -:root .@{fa-css-prefix}-rotate-90, -:root .@{fa-css-prefix}-rotate-180, -:root .@{fa-css-prefix}-rotate-270, -:root .@{fa-css-prefix}-flip-horizontal, -:root .@{fa-css-prefix}-flip-vertical { - filter: none; -} diff --git a/library/font_awesome/less/screen-reader.less b/library/font_awesome/less/screen-reader.less deleted file mode 100644 index 11c188196..000000000 --- a/library/font_awesome/less/screen-reader.less +++ /dev/null @@ -1,5 +0,0 @@ -// Screen Readers -// ------------------------- - -.sr-only { .sr-only(); } -.sr-only-focusable { .sr-only-focusable(); } diff --git a/library/font_awesome/less/stacked.less b/library/font_awesome/less/stacked.less deleted file mode 100644 index fc53fb0e7..000000000 --- a/library/font_awesome/less/stacked.less +++ /dev/null @@ -1,20 +0,0 @@ -// Stacked Icons -// ------------------------- - -.@{fa-css-prefix}-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle; -} -.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center; -} -.@{fa-css-prefix}-stack-1x { line-height: inherit; } -.@{fa-css-prefix}-stack-2x { font-size: 2em; } -.@{fa-css-prefix}-inverse { color: @fa-inverse; } diff --git a/library/font_awesome/less/variables.less b/library/font_awesome/less/variables.less deleted file mode 100644 index 7ddbbc011..000000000 --- a/library/font_awesome/less/variables.less +++ /dev/null @@ -1,800 +0,0 @@ -// Variables -// -------------------------- - -@fa-font-path: "../fonts"; -@fa-font-size-base: 14px; -@fa-line-height-base: 1; -//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts"; // for referencing Bootstrap CDN font files directly -@fa-css-prefix: fa; -@fa-version: "4.7.0"; -@fa-border-color: #eee; -@fa-inverse: #fff; -@fa-li-width: (30em / 14); - -@fa-var-500px: "\f26e"; -@fa-var-address-book: "\f2b9"; -@fa-var-address-book-o: "\f2ba"; -@fa-var-address-card: "\f2bb"; -@fa-var-address-card-o: "\f2bc"; -@fa-var-adjust: "\f042"; -@fa-var-adn: "\f170"; -@fa-var-align-center: "\f037"; -@fa-var-align-justify: "\f039"; -@fa-var-align-left: "\f036"; -@fa-var-align-right: "\f038"; -@fa-var-amazon: "\f270"; -@fa-var-ambulance: "\f0f9"; -@fa-var-american-sign-language-interpreting: "\f2a3"; -@fa-var-anchor: "\f13d"; -@fa-var-android: "\f17b"; -@fa-var-angellist: "\f209"; -@fa-var-angle-double-down: "\f103"; -@fa-var-angle-double-left: "\f100"; -@fa-var-angle-double-right: "\f101"; -@fa-var-angle-double-up: "\f102"; -@fa-var-angle-down: "\f107"; -@fa-var-angle-left: "\f104"; -@fa-var-angle-right: "\f105"; -@fa-var-angle-up: "\f106"; -@fa-var-apple: "\f179"; -@fa-var-archive: "\f187"; -@fa-var-area-chart: "\f1fe"; -@fa-var-arrow-circle-down: "\f0ab"; -@fa-var-arrow-circle-left: "\f0a8"; -@fa-var-arrow-circle-o-down: "\f01a"; -@fa-var-arrow-circle-o-left: "\f190"; -@fa-var-arrow-circle-o-right: "\f18e"; -@fa-var-arrow-circle-o-up: "\f01b"; -@fa-var-arrow-circle-right: "\f0a9"; -@fa-var-arrow-circle-up: "\f0aa"; -@fa-var-arrow-down: "\f063"; -@fa-var-arrow-left: "\f060"; -@fa-var-arrow-right: "\f061"; -@fa-var-arrow-up: "\f062"; -@fa-var-arrows: "\f047"; -@fa-var-arrows-alt: "\f0b2"; -@fa-var-arrows-h: "\f07e"; -@fa-var-arrows-v: "\f07d"; -@fa-var-asl-interpreting: "\f2a3"; -@fa-var-assistive-listening-systems: "\f2a2"; -@fa-var-asterisk: "\f069"; -@fa-var-at: "\f1fa"; -@fa-var-audio-description: "\f29e"; -@fa-var-automobile: "\f1b9"; -@fa-var-backward: "\f04a"; -@fa-var-balance-scale: "\f24e"; -@fa-var-ban: "\f05e"; -@fa-var-bandcamp: "\f2d5"; -@fa-var-bank: "\f19c"; -@fa-var-bar-chart: "\f080"; -@fa-var-bar-chart-o: "\f080"; -@fa-var-barcode: "\f02a"; -@fa-var-bars: "\f0c9"; -@fa-var-bath: "\f2cd"; -@fa-var-bathtub: "\f2cd"; -@fa-var-battery: "\f240"; -@fa-var-battery-0: "\f244"; -@fa-var-battery-1: "\f243"; -@fa-var-battery-2: "\f242"; -@fa-var-battery-3: "\f241"; -@fa-var-battery-4: "\f240"; -@fa-var-battery-empty: "\f244"; -@fa-var-battery-full: "\f240"; -@fa-var-battery-half: "\f242"; -@fa-var-battery-quarter: "\f243"; -@fa-var-battery-three-quarters: "\f241"; -@fa-var-bed: "\f236"; -@fa-var-beer: "\f0fc"; -@fa-var-behance: "\f1b4"; -@fa-var-behance-square: "\f1b5"; -@fa-var-bell: "\f0f3"; -@fa-var-bell-o: "\f0a2"; -@fa-var-bell-slash: "\f1f6"; -@fa-var-bell-slash-o: "\f1f7"; -@fa-var-bicycle: "\f206"; -@fa-var-binoculars: "\f1e5"; -@fa-var-birthday-cake: "\f1fd"; -@fa-var-bitbucket: "\f171"; -@fa-var-bitbucket-square: "\f172"; -@fa-var-bitcoin: "\f15a"; -@fa-var-black-tie: "\f27e"; -@fa-var-blind: "\f29d"; -@fa-var-bluetooth: "\f293"; -@fa-var-bluetooth-b: "\f294"; -@fa-var-bold: "\f032"; -@fa-var-bolt: "\f0e7"; -@fa-var-bomb: "\f1e2"; -@fa-var-book: "\f02d"; -@fa-var-bookmark: "\f02e"; -@fa-var-bookmark-o: "\f097"; -@fa-var-braille: "\f2a1"; -@fa-var-briefcase: "\f0b1"; -@fa-var-btc: "\f15a"; -@fa-var-bug: "\f188"; -@fa-var-building: "\f1ad"; -@fa-var-building-o: "\f0f7"; -@fa-var-bullhorn: "\f0a1"; -@fa-var-bullseye: "\f140"; -@fa-var-bus: "\f207"; -@fa-var-buysellads: "\f20d"; -@fa-var-cab: "\f1ba"; -@fa-var-calculator: "\f1ec"; -@fa-var-calendar: "\f073"; -@fa-var-calendar-check-o: "\f274"; -@fa-var-calendar-minus-o: "\f272"; -@fa-var-calendar-o: "\f133"; -@fa-var-calendar-plus-o: "\f271"; -@fa-var-calendar-times-o: "\f273"; -@fa-var-camera: "\f030"; -@fa-var-camera-retro: "\f083"; -@fa-var-car: "\f1b9"; -@fa-var-caret-down: "\f0d7"; -@fa-var-caret-left: "\f0d9"; -@fa-var-caret-right: "\f0da"; -@fa-var-caret-square-o-down: "\f150"; -@fa-var-caret-square-o-left: "\f191"; -@fa-var-caret-square-o-right: "\f152"; -@fa-var-caret-square-o-up: "\f151"; -@fa-var-caret-up: "\f0d8"; -@fa-var-cart-arrow-down: "\f218"; -@fa-var-cart-plus: "\f217"; -@fa-var-cc: "\f20a"; -@fa-var-cc-amex: "\f1f3"; -@fa-var-cc-diners-club: "\f24c"; -@fa-var-cc-discover: "\f1f2"; -@fa-var-cc-jcb: "\f24b"; -@fa-var-cc-mastercard: "\f1f1"; -@fa-var-cc-paypal: "\f1f4"; -@fa-var-cc-stripe: "\f1f5"; -@fa-var-cc-visa: "\f1f0"; -@fa-var-certificate: "\f0a3"; -@fa-var-chain: "\f0c1"; -@fa-var-chain-broken: "\f127"; -@fa-var-check: "\f00c"; -@fa-var-check-circle: "\f058"; -@fa-var-check-circle-o: "\f05d"; -@fa-var-check-square: "\f14a"; -@fa-var-check-square-o: "\f046"; -@fa-var-chevron-circle-down: "\f13a"; -@fa-var-chevron-circle-left: "\f137"; -@fa-var-chevron-circle-right: "\f138"; -@fa-var-chevron-circle-up: "\f139"; -@fa-var-chevron-down: "\f078"; -@fa-var-chevron-left: "\f053"; -@fa-var-chevron-right: "\f054"; -@fa-var-chevron-up: "\f077"; -@fa-var-child: "\f1ae"; -@fa-var-chrome: "\f268"; -@fa-var-circle: "\f111"; -@fa-var-circle-o: "\f10c"; -@fa-var-circle-o-notch: "\f1ce"; -@fa-var-circle-thin: "\f1db"; -@fa-var-clipboard: "\f0ea"; -@fa-var-clock-o: "\f017"; -@fa-var-clone: "\f24d"; -@fa-var-close: "\f00d"; -@fa-var-cloud: "\f0c2"; -@fa-var-cloud-download: "\f0ed"; -@fa-var-cloud-upload: "\f0ee"; -@fa-var-cny: "\f157"; -@fa-var-code: "\f121"; -@fa-var-code-fork: "\f126"; -@fa-var-codepen: "\f1cb"; -@fa-var-codiepie: "\f284"; -@fa-var-coffee: "\f0f4"; -@fa-var-cog: "\f013"; -@fa-var-cogs: "\f085"; -@fa-var-columns: "\f0db"; -@fa-var-comment: "\f075"; -@fa-var-comment-o: "\f0e5"; -@fa-var-commenting: "\f27a"; -@fa-var-commenting-o: "\f27b"; -@fa-var-comments: "\f086"; -@fa-var-comments-o: "\f0e6"; -@fa-var-compass: "\f14e"; -@fa-var-compress: "\f066"; -@fa-var-connectdevelop: "\f20e"; -@fa-var-contao: "\f26d"; -@fa-var-copy: "\f0c5"; -@fa-var-copyright: "\f1f9"; -@fa-var-creative-commons: "\f25e"; -@fa-var-credit-card: "\f09d"; -@fa-var-credit-card-alt: "\f283"; -@fa-var-crop: "\f125"; -@fa-var-crosshairs: "\f05b"; -@fa-var-css3: "\f13c"; -@fa-var-cube: "\f1b2"; -@fa-var-cubes: "\f1b3"; -@fa-var-cut: "\f0c4"; -@fa-var-cutlery: "\f0f5"; -@fa-var-dashboard: "\f0e4"; -@fa-var-dashcube: "\f210"; -@fa-var-database: "\f1c0"; -@fa-var-deaf: "\f2a4"; -@fa-var-deafness: "\f2a4"; -@fa-var-dedent: "\f03b"; -@fa-var-delicious: "\f1a5"; -@fa-var-desktop: "\f108"; -@fa-var-deviantart: "\f1bd"; -@fa-var-diamond: "\f219"; -@fa-var-digg: "\f1a6"; -@fa-var-dollar: "\f155"; -@fa-var-dot-circle-o: "\f192"; -@fa-var-download: "\f019"; -@fa-var-dribbble: "\f17d"; -@fa-var-drivers-license: "\f2c2"; -@fa-var-drivers-license-o: "\f2c3"; -@fa-var-dropbox: "\f16b"; -@fa-var-drupal: "\f1a9"; -@fa-var-edge: "\f282"; -@fa-var-edit: "\f044"; -@fa-var-eercast: "\f2da"; -@fa-var-eject: "\f052"; -@fa-var-ellipsis-h: "\f141"; -@fa-var-ellipsis-v: "\f142"; -@fa-var-empire: "\f1d1"; -@fa-var-envelope: "\f0e0"; -@fa-var-envelope-o: "\f003"; -@fa-var-envelope-open: "\f2b6"; -@fa-var-envelope-open-o: "\f2b7"; -@fa-var-envelope-square: "\f199"; -@fa-var-envira: "\f299"; -@fa-var-eraser: "\f12d"; -@fa-var-etsy: "\f2d7"; -@fa-var-eur: "\f153"; -@fa-var-euro: "\f153"; -@fa-var-exchange: "\f0ec"; -@fa-var-exclamation: "\f12a"; -@fa-var-exclamation-circle: "\f06a"; -@fa-var-exclamation-triangle: "\f071"; -@fa-var-expand: "\f065"; -@fa-var-expeditedssl: "\f23e"; -@fa-var-external-link: "\f08e"; -@fa-var-external-link-square: "\f14c"; -@fa-var-eye: "\f06e"; -@fa-var-eye-slash: "\f070"; -@fa-var-eyedropper: "\f1fb"; -@fa-var-fa: "\f2b4"; -@fa-var-facebook: "\f09a"; -@fa-var-facebook-f: "\f09a"; -@fa-var-facebook-official: "\f230"; -@fa-var-facebook-square: "\f082"; -@fa-var-fast-backward: "\f049"; -@fa-var-fast-forward: "\f050"; -@fa-var-fax: "\f1ac"; -@fa-var-feed: "\f09e"; -@fa-var-female: "\f182"; -@fa-var-fighter-jet: "\f0fb"; -@fa-var-file: "\f15b"; -@fa-var-file-archive-o: "\f1c6"; -@fa-var-file-audio-o: "\f1c7"; -@fa-var-file-code-o: "\f1c9"; -@fa-var-file-excel-o: "\f1c3"; -@fa-var-file-image-o: "\f1c5"; -@fa-var-file-movie-o: "\f1c8"; -@fa-var-file-o: "\f016"; -@fa-var-file-pdf-o: "\f1c1"; -@fa-var-file-photo-o: "\f1c5"; -@fa-var-file-picture-o: "\f1c5"; -@fa-var-file-powerpoint-o: "\f1c4"; -@fa-var-file-sound-o: "\f1c7"; -@fa-var-file-text: "\f15c"; -@fa-var-file-text-o: "\f0f6"; -@fa-var-file-video-o: "\f1c8"; -@fa-var-file-word-o: "\f1c2"; -@fa-var-file-zip-o: "\f1c6"; -@fa-var-files-o: "\f0c5"; -@fa-var-film: "\f008"; -@fa-var-filter: "\f0b0"; -@fa-var-fire: "\f06d"; -@fa-var-fire-extinguisher: "\f134"; -@fa-var-firefox: "\f269"; -@fa-var-first-order: "\f2b0"; -@fa-var-flag: "\f024"; -@fa-var-flag-checkered: "\f11e"; -@fa-var-flag-o: "\f11d"; -@fa-var-flash: "\f0e7"; -@fa-var-flask: "\f0c3"; -@fa-var-flickr: "\f16e"; -@fa-var-floppy-o: "\f0c7"; -@fa-var-folder: "\f07b"; -@fa-var-folder-o: "\f114"; -@fa-var-folder-open: "\f07c"; -@fa-var-folder-open-o: "\f115"; -@fa-var-font: "\f031"; -@fa-var-font-awesome: "\f2b4"; -@fa-var-fonticons: "\f280"; -@fa-var-fort-awesome: "\f286"; -@fa-var-forumbee: "\f211"; -@fa-var-forward: "\f04e"; -@fa-var-foursquare: "\f180"; -@fa-var-free-code-camp: "\f2c5"; -@fa-var-frown-o: "\f119"; -@fa-var-futbol-o: "\f1e3"; -@fa-var-gamepad: "\f11b"; -@fa-var-gavel: "\f0e3"; -@fa-var-gbp: "\f154"; -@fa-var-ge: "\f1d1"; -@fa-var-gear: "\f013"; -@fa-var-gears: "\f085"; -@fa-var-genderless: "\f22d"; -@fa-var-get-pocket: "\f265"; -@fa-var-gg: "\f260"; -@fa-var-gg-circle: "\f261"; -@fa-var-gift: "\f06b"; -@fa-var-git: "\f1d3"; -@fa-var-git-square: "\f1d2"; -@fa-var-github: "\f09b"; -@fa-var-github-alt: "\f113"; -@fa-var-github-square: "\f092"; -@fa-var-gitlab: "\f296"; -@fa-var-gittip: "\f184"; -@fa-var-glass: "\f000"; -@fa-var-glide: "\f2a5"; -@fa-var-glide-g: "\f2a6"; -@fa-var-globe: "\f0ac"; -@fa-var-google: "\f1a0"; -@fa-var-google-plus: "\f0d5"; -@fa-var-google-plus-circle: "\f2b3"; -@fa-var-google-plus-official: "\f2b3"; -@fa-var-google-plus-square: "\f0d4"; -@fa-var-google-wallet: "\f1ee"; -@fa-var-graduation-cap: "\f19d"; -@fa-var-gratipay: "\f184"; -@fa-var-grav: "\f2d6"; -@fa-var-group: "\f0c0"; -@fa-var-h-square: "\f0fd"; -@fa-var-hacker-news: "\f1d4"; -@fa-var-hand-grab-o: "\f255"; -@fa-var-hand-lizard-o: "\f258"; -@fa-var-hand-o-down: "\f0a7"; -@fa-var-hand-o-left: "\f0a5"; -@fa-var-hand-o-right: "\f0a4"; -@fa-var-hand-o-up: "\f0a6"; -@fa-var-hand-paper-o: "\f256"; -@fa-var-hand-peace-o: "\f25b"; -@fa-var-hand-pointer-o: "\f25a"; -@fa-var-hand-rock-o: "\f255"; -@fa-var-hand-scissors-o: "\f257"; -@fa-var-hand-spock-o: "\f259"; -@fa-var-hand-stop-o: "\f256"; -@fa-var-handshake-o: "\f2b5"; -@fa-var-hard-of-hearing: "\f2a4"; -@fa-var-hashtag: "\f292"; -@fa-var-hdd-o: "\f0a0"; -@fa-var-header: "\f1dc"; -@fa-var-headphones: "\f025"; -@fa-var-heart: "\f004"; -@fa-var-heart-o: "\f08a"; -@fa-var-heartbeat: "\f21e"; -@fa-var-history: "\f1da"; -@fa-var-home: "\f015"; -@fa-var-hospital-o: "\f0f8"; -@fa-var-hotel: "\f236"; -@fa-var-hourglass: "\f254"; -@fa-var-hourglass-1: "\f251"; -@fa-var-hourglass-2: "\f252"; -@fa-var-hourglass-3: "\f253"; -@fa-var-hourglass-end: "\f253"; -@fa-var-hourglass-half: "\f252"; -@fa-var-hourglass-o: "\f250"; -@fa-var-hourglass-start: "\f251"; -@fa-var-houzz: "\f27c"; -@fa-var-html5: "\f13b"; -@fa-var-i-cursor: "\f246"; -@fa-var-id-badge: "\f2c1"; -@fa-var-id-card: "\f2c2"; -@fa-var-id-card-o: "\f2c3"; -@fa-var-ils: "\f20b"; -@fa-var-image: "\f03e"; -@fa-var-imdb: "\f2d8"; -@fa-var-inbox: "\f01c"; -@fa-var-indent: "\f03c"; -@fa-var-industry: "\f275"; -@fa-var-info: "\f129"; -@fa-var-info-circle: "\f05a"; -@fa-var-inr: "\f156"; -@fa-var-instagram: "\f16d"; -@fa-var-institution: "\f19c"; -@fa-var-internet-explorer: "\f26b"; -@fa-var-intersex: "\f224"; -@fa-var-ioxhost: "\f208"; -@fa-var-italic: "\f033"; -@fa-var-joomla: "\f1aa"; -@fa-var-jpy: "\f157"; -@fa-var-jsfiddle: "\f1cc"; -@fa-var-key: "\f084"; -@fa-var-keyboard-o: "\f11c"; -@fa-var-krw: "\f159"; -@fa-var-language: "\f1ab"; -@fa-var-laptop: "\f109"; -@fa-var-lastfm: "\f202"; -@fa-var-lastfm-square: "\f203"; -@fa-var-leaf: "\f06c"; -@fa-var-leanpub: "\f212"; -@fa-var-legal: "\f0e3"; -@fa-var-lemon-o: "\f094"; -@fa-var-level-down: "\f149"; -@fa-var-level-up: "\f148"; -@fa-var-life-bouy: "\f1cd"; -@fa-var-life-buoy: "\f1cd"; -@fa-var-life-ring: "\f1cd"; -@fa-var-life-saver: "\f1cd"; -@fa-var-lightbulb-o: "\f0eb"; -@fa-var-line-chart: "\f201"; -@fa-var-link: "\f0c1"; -@fa-var-linkedin: "\f0e1"; -@fa-var-linkedin-square: "\f08c"; -@fa-var-linode: "\f2b8"; -@fa-var-linux: "\f17c"; -@fa-var-list: "\f03a"; -@fa-var-list-alt: "\f022"; -@fa-var-list-ol: "\f0cb"; -@fa-var-list-ul: "\f0ca"; -@fa-var-location-arrow: "\f124"; -@fa-var-lock: "\f023"; -@fa-var-long-arrow-down: "\f175"; -@fa-var-long-arrow-left: "\f177"; -@fa-var-long-arrow-right: "\f178"; -@fa-var-long-arrow-up: "\f176"; -@fa-var-low-vision: "\f2a8"; -@fa-var-magic: "\f0d0"; -@fa-var-magnet: "\f076"; -@fa-var-mail-forward: "\f064"; -@fa-var-mail-reply: "\f112"; -@fa-var-mail-reply-all: "\f122"; -@fa-var-male: "\f183"; -@fa-var-map: "\f279"; -@fa-var-map-marker: "\f041"; -@fa-var-map-o: "\f278"; -@fa-var-map-pin: "\f276"; -@fa-var-map-signs: "\f277"; -@fa-var-mars: "\f222"; -@fa-var-mars-double: "\f227"; -@fa-var-mars-stroke: "\f229"; -@fa-var-mars-stroke-h: "\f22b"; -@fa-var-mars-stroke-v: "\f22a"; -@fa-var-maxcdn: "\f136"; -@fa-var-meanpath: "\f20c"; -@fa-var-medium: "\f23a"; -@fa-var-medkit: "\f0fa"; -@fa-var-meetup: "\f2e0"; -@fa-var-meh-o: "\f11a"; -@fa-var-mercury: "\f223"; -@fa-var-microchip: "\f2db"; -@fa-var-microphone: "\f130"; -@fa-var-microphone-slash: "\f131"; -@fa-var-minus: "\f068"; -@fa-var-minus-circle: "\f056"; -@fa-var-minus-square: "\f146"; -@fa-var-minus-square-o: "\f147"; -@fa-var-mixcloud: "\f289"; -@fa-var-mobile: "\f10b"; -@fa-var-mobile-phone: "\f10b"; -@fa-var-modx: "\f285"; -@fa-var-money: "\f0d6"; -@fa-var-moon-o: "\f186"; -@fa-var-mortar-board: "\f19d"; -@fa-var-motorcycle: "\f21c"; -@fa-var-mouse-pointer: "\f245"; -@fa-var-music: "\f001"; -@fa-var-navicon: "\f0c9"; -@fa-var-neuter: "\f22c"; -@fa-var-newspaper-o: "\f1ea"; -@fa-var-object-group: "\f247"; -@fa-var-object-ungroup: "\f248"; -@fa-var-odnoklassniki: "\f263"; -@fa-var-odnoklassniki-square: "\f264"; -@fa-var-opencart: "\f23d"; -@fa-var-openid: "\f19b"; -@fa-var-opera: "\f26a"; -@fa-var-optin-monster: "\f23c"; -@fa-var-outdent: "\f03b"; -@fa-var-pagelines: "\f18c"; -@fa-var-paint-brush: "\f1fc"; -@fa-var-paper-plane: "\f1d8"; -@fa-var-paper-plane-o: "\f1d9"; -@fa-var-paperclip: "\f0c6"; -@fa-var-paragraph: "\f1dd"; -@fa-var-paste: "\f0ea"; -@fa-var-pause: "\f04c"; -@fa-var-pause-circle: "\f28b"; -@fa-var-pause-circle-o: "\f28c"; -@fa-var-paw: "\f1b0"; -@fa-var-paypal: "\f1ed"; -@fa-var-pencil: "\f040"; -@fa-var-pencil-square: "\f14b"; -@fa-var-pencil-square-o: "\f044"; -@fa-var-percent: "\f295"; -@fa-var-phone: "\f095"; -@fa-var-phone-square: "\f098"; -@fa-var-photo: "\f03e"; -@fa-var-picture-o: "\f03e"; -@fa-var-pie-chart: "\f200"; -@fa-var-pied-piper: "\f2ae"; -@fa-var-pied-piper-alt: "\f1a8"; -@fa-var-pied-piper-pp: "\f1a7"; -@fa-var-pinterest: "\f0d2"; -@fa-var-pinterest-p: "\f231"; -@fa-var-pinterest-square: "\f0d3"; -@fa-var-plane: "\f072"; -@fa-var-play: "\f04b"; -@fa-var-play-circle: "\f144"; -@fa-var-play-circle-o: "\f01d"; -@fa-var-plug: "\f1e6"; -@fa-var-plus: "\f067"; -@fa-var-plus-circle: "\f055"; -@fa-var-plus-square: "\f0fe"; -@fa-var-plus-square-o: "\f196"; -@fa-var-podcast: "\f2ce"; -@fa-var-power-off: "\f011"; -@fa-var-print: "\f02f"; -@fa-var-product-hunt: "\f288"; -@fa-var-puzzle-piece: "\f12e"; -@fa-var-qq: "\f1d6"; -@fa-var-qrcode: "\f029"; -@fa-var-question: "\f128"; -@fa-var-question-circle: "\f059"; -@fa-var-question-circle-o: "\f29c"; -@fa-var-quora: "\f2c4"; -@fa-var-quote-left: "\f10d"; -@fa-var-quote-right: "\f10e"; -@fa-var-ra: "\f1d0"; -@fa-var-random: "\f074"; -@fa-var-ravelry: "\f2d9"; -@fa-var-rebel: "\f1d0"; -@fa-var-recycle: "\f1b8"; -@fa-var-reddit: "\f1a1"; -@fa-var-reddit-alien: "\f281"; -@fa-var-reddit-square: "\f1a2"; -@fa-var-refresh: "\f021"; -@fa-var-registered: "\f25d"; -@fa-var-remove: "\f00d"; -@fa-var-renren: "\f18b"; -@fa-var-reorder: "\f0c9"; -@fa-var-repeat: "\f01e"; -@fa-var-reply: "\f112"; -@fa-var-reply-all: "\f122"; -@fa-var-resistance: "\f1d0"; -@fa-var-retweet: "\f079"; -@fa-var-rmb: "\f157"; -@fa-var-road: "\f018"; -@fa-var-rocket: "\f135"; -@fa-var-rotate-left: "\f0e2"; -@fa-var-rotate-right: "\f01e"; -@fa-var-rouble: "\f158"; -@fa-var-rss: "\f09e"; -@fa-var-rss-square: "\f143"; -@fa-var-rub: "\f158"; -@fa-var-ruble: "\f158"; -@fa-var-rupee: "\f156"; -@fa-var-s15: "\f2cd"; -@fa-var-safari: "\f267"; -@fa-var-save: "\f0c7"; -@fa-var-scissors: "\f0c4"; -@fa-var-scribd: "\f28a"; -@fa-var-search: "\f002"; -@fa-var-search-minus: "\f010"; -@fa-var-search-plus: "\f00e"; -@fa-var-sellsy: "\f213"; -@fa-var-send: "\f1d8"; -@fa-var-send-o: "\f1d9"; -@fa-var-server: "\f233"; -@fa-var-share: "\f064"; -@fa-var-share-alt: "\f1e0"; -@fa-var-share-alt-square: "\f1e1"; -@fa-var-share-square: "\f14d"; -@fa-var-share-square-o: "\f045"; -@fa-var-shekel: "\f20b"; -@fa-var-sheqel: "\f20b"; -@fa-var-shield: "\f132"; -@fa-var-ship: "\f21a"; -@fa-var-shirtsinbulk: "\f214"; -@fa-var-shopping-bag: "\f290"; -@fa-var-shopping-basket: "\f291"; -@fa-var-shopping-cart: "\f07a"; -@fa-var-shower: "\f2cc"; -@fa-var-sign-in: "\f090"; -@fa-var-sign-language: "\f2a7"; -@fa-var-sign-out: "\f08b"; -@fa-var-signal: "\f012"; -@fa-var-signing: "\f2a7"; -@fa-var-simplybuilt: "\f215"; -@fa-var-sitemap: "\f0e8"; -@fa-var-skyatlas: "\f216"; -@fa-var-skype: "\f17e"; -@fa-var-slack: "\f198"; -@fa-var-sliders: "\f1de"; -@fa-var-slideshare: "\f1e7"; -@fa-var-smile-o: "\f118"; -@fa-var-snapchat: "\f2ab"; -@fa-var-snapchat-ghost: "\f2ac"; -@fa-var-snapchat-square: "\f2ad"; -@fa-var-snowflake-o: "\f2dc"; -@fa-var-soccer-ball-o: "\f1e3"; -@fa-var-sort: "\f0dc"; -@fa-var-sort-alpha-asc: "\f15d"; -@fa-var-sort-alpha-desc: "\f15e"; -@fa-var-sort-amount-asc: "\f160"; -@fa-var-sort-amount-desc: "\f161"; -@fa-var-sort-asc: "\f0de"; -@fa-var-sort-desc: "\f0dd"; -@fa-var-sort-down: "\f0dd"; -@fa-var-sort-numeric-asc: "\f162"; -@fa-var-sort-numeric-desc: "\f163"; -@fa-var-sort-up: "\f0de"; -@fa-var-soundcloud: "\f1be"; -@fa-var-space-shuttle: "\f197"; -@fa-var-spinner: "\f110"; -@fa-var-spoon: "\f1b1"; -@fa-var-spotify: "\f1bc"; -@fa-var-square: "\f0c8"; -@fa-var-square-o: "\f096"; -@fa-var-stack-exchange: "\f18d"; -@fa-var-stack-overflow: "\f16c"; -@fa-var-star: "\f005"; -@fa-var-star-half: "\f089"; -@fa-var-star-half-empty: "\f123"; -@fa-var-star-half-full: "\f123"; -@fa-var-star-half-o: "\f123"; -@fa-var-star-o: "\f006"; -@fa-var-steam: "\f1b6"; -@fa-var-steam-square: "\f1b7"; -@fa-var-step-backward: "\f048"; -@fa-var-step-forward: "\f051"; -@fa-var-stethoscope: "\f0f1"; -@fa-var-sticky-note: "\f249"; -@fa-var-sticky-note-o: "\f24a"; -@fa-var-stop: "\f04d"; -@fa-var-stop-circle: "\f28d"; -@fa-var-stop-circle-o: "\f28e"; -@fa-var-street-view: "\f21d"; -@fa-var-strikethrough: "\f0cc"; -@fa-var-stumbleupon: "\f1a4"; -@fa-var-stumbleupon-circle: "\f1a3"; -@fa-var-subscript: "\f12c"; -@fa-var-subway: "\f239"; -@fa-var-suitcase: "\f0f2"; -@fa-var-sun-o: "\f185"; -@fa-var-superpowers: "\f2dd"; -@fa-var-superscript: "\f12b"; -@fa-var-support: "\f1cd"; -@fa-var-table: "\f0ce"; -@fa-var-tablet: "\f10a"; -@fa-var-tachometer: "\f0e4"; -@fa-var-tag: "\f02b"; -@fa-var-tags: "\f02c"; -@fa-var-tasks: "\f0ae"; -@fa-var-taxi: "\f1ba"; -@fa-var-telegram: "\f2c6"; -@fa-var-television: "\f26c"; -@fa-var-tencent-weibo: "\f1d5"; -@fa-var-terminal: "\f120"; -@fa-var-text-height: "\f034"; -@fa-var-text-width: "\f035"; -@fa-var-th: "\f00a"; -@fa-var-th-large: "\f009"; -@fa-var-th-list: "\f00b"; -@fa-var-themeisle: "\f2b2"; -@fa-var-thermometer: "\f2c7"; -@fa-var-thermometer-0: "\f2cb"; -@fa-var-thermometer-1: "\f2ca"; -@fa-var-thermometer-2: "\f2c9"; -@fa-var-thermometer-3: "\f2c8"; -@fa-var-thermometer-4: "\f2c7"; -@fa-var-thermometer-empty: "\f2cb"; -@fa-var-thermometer-full: "\f2c7"; -@fa-var-thermometer-half: "\f2c9"; -@fa-var-thermometer-quarter: "\f2ca"; -@fa-var-thermometer-three-quarters: "\f2c8"; -@fa-var-thumb-tack: "\f08d"; -@fa-var-thumbs-down: "\f165"; -@fa-var-thumbs-o-down: "\f088"; -@fa-var-thumbs-o-up: "\f087"; -@fa-var-thumbs-up: "\f164"; -@fa-var-ticket: "\f145"; -@fa-var-times: "\f00d"; -@fa-var-times-circle: "\f057"; -@fa-var-times-circle-o: "\f05c"; -@fa-var-times-rectangle: "\f2d3"; -@fa-var-times-rectangle-o: "\f2d4"; -@fa-var-tint: "\f043"; -@fa-var-toggle-down: "\f150"; -@fa-var-toggle-left: "\f191"; -@fa-var-toggle-off: "\f204"; -@fa-var-toggle-on: "\f205"; -@fa-var-toggle-right: "\f152"; -@fa-var-toggle-up: "\f151"; -@fa-var-trademark: "\f25c"; -@fa-var-train: "\f238"; -@fa-var-transgender: "\f224"; -@fa-var-transgender-alt: "\f225"; -@fa-var-trash: "\f1f8"; -@fa-var-trash-o: "\f014"; -@fa-var-tree: "\f1bb"; -@fa-var-trello: "\f181"; -@fa-var-tripadvisor: "\f262"; -@fa-var-trophy: "\f091"; -@fa-var-truck: "\f0d1"; -@fa-var-try: "\f195"; -@fa-var-tty: "\f1e4"; -@fa-var-tumblr: "\f173"; -@fa-var-tumblr-square: "\f174"; -@fa-var-turkish-lira: "\f195"; -@fa-var-tv: "\f26c"; -@fa-var-twitch: "\f1e8"; -@fa-var-twitter: "\f099"; -@fa-var-twitter-square: "\f081"; -@fa-var-umbrella: "\f0e9"; -@fa-var-underline: "\f0cd"; -@fa-var-undo: "\f0e2"; -@fa-var-universal-access: "\f29a"; -@fa-var-university: "\f19c"; -@fa-var-unlink: "\f127"; -@fa-var-unlock: "\f09c"; -@fa-var-unlock-alt: "\f13e"; -@fa-var-unsorted: "\f0dc"; -@fa-var-upload: "\f093"; -@fa-var-usb: "\f287"; -@fa-var-usd: "\f155"; -@fa-var-user: "\f007"; -@fa-var-user-circle: "\f2bd"; -@fa-var-user-circle-o: "\f2be"; -@fa-var-user-md: "\f0f0"; -@fa-var-user-o: "\f2c0"; -@fa-var-user-plus: "\f234"; -@fa-var-user-secret: "\f21b"; -@fa-var-user-times: "\f235"; -@fa-var-users: "\f0c0"; -@fa-var-vcard: "\f2bb"; -@fa-var-vcard-o: "\f2bc"; -@fa-var-venus: "\f221"; -@fa-var-venus-double: "\f226"; -@fa-var-venus-mars: "\f228"; -@fa-var-viacoin: "\f237"; -@fa-var-viadeo: "\f2a9"; -@fa-var-viadeo-square: "\f2aa"; -@fa-var-video-camera: "\f03d"; -@fa-var-vimeo: "\f27d"; -@fa-var-vimeo-square: "\f194"; -@fa-var-vine: "\f1ca"; -@fa-var-vk: "\f189"; -@fa-var-volume-control-phone: "\f2a0"; -@fa-var-volume-down: "\f027"; -@fa-var-volume-off: "\f026"; -@fa-var-volume-up: "\f028"; -@fa-var-warning: "\f071"; -@fa-var-wechat: "\f1d7"; -@fa-var-weibo: "\f18a"; -@fa-var-weixin: "\f1d7"; -@fa-var-whatsapp: "\f232"; -@fa-var-wheelchair: "\f193"; -@fa-var-wheelchair-alt: "\f29b"; -@fa-var-wifi: "\f1eb"; -@fa-var-wikipedia-w: "\f266"; -@fa-var-window-close: "\f2d3"; -@fa-var-window-close-o: "\f2d4"; -@fa-var-window-maximize: "\f2d0"; -@fa-var-window-minimize: "\f2d1"; -@fa-var-window-restore: "\f2d2"; -@fa-var-windows: "\f17a"; -@fa-var-won: "\f159"; -@fa-var-wordpress: "\f19a"; -@fa-var-wpbeginner: "\f297"; -@fa-var-wpexplorer: "\f2de"; -@fa-var-wpforms: "\f298"; -@fa-var-wrench: "\f0ad"; -@fa-var-xing: "\f168"; -@fa-var-xing-square: "\f169"; -@fa-var-y-combinator: "\f23b"; -@fa-var-y-combinator-square: "\f1d4"; -@fa-var-yahoo: "\f19e"; -@fa-var-yc: "\f23b"; -@fa-var-yc-square: "\f1d4"; -@fa-var-yelp: "\f1e9"; -@fa-var-yen: "\f157"; -@fa-var-yoast: "\f2b1"; -@fa-var-youtube: "\f167"; -@fa-var-youtube-play: "\f16a"; -@fa-var-youtube-square: "\f166"; - diff --git a/library/font_awesome/package.json b/library/font_awesome/package.json deleted file mode 100644 index 86f58db06..000000000 --- a/library/font_awesome/package.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "name": "font-awesome", - "description": "The iconic font and CSS framework", - "version": "4.7.0", - "style": "css/font-awesome.css", - "keywords": ["font", "awesome", "fontawesome", "icon", "font", "bootstrap"], - "homepage": "http://fontawesome.io/", - "bugs": { - "url" : "http://github.com/FortAwesome/Font-Awesome/issues" - }, - "author": { - "name": "Dave Gandy", - "email": "dave@fontawesome.io", - "web": "http://twitter.com/davegandy" - }, - "repository": { - "type": "git", - "url": "https://github.com/FortAwesome/Font-Awesome.git" - }, - "contributors": [ - { - "name": "Brian Talbot", - "web": "http://twitter.com/talbs" - }, - { - "name": "Travis Chase", - "web": "http://twitter.com/supercodepoet" - }, - { - "name": "Rob Madole", - "web": "http://twitter.com/robmadole" - }, - { - "name": "Geremia Taglialatela", - "web": "http://twitter.com/gtagliala" - } - ], - "license": "(OFL-1.1 AND MIT)", - "dependencies": { - }, - "engines" : { - "node" : ">=0.10.3" - } -} diff --git a/library/font_awesome/scss/_animated.scss b/library/font_awesome/scss/_animated.scss deleted file mode 100644 index 8a020dbff..000000000 --- a/library/font_awesome/scss/_animated.scss +++ /dev/null @@ -1,34 +0,0 @@ -// Spinning Icons -// -------------------------- - -.#{$fa-css-prefix}-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} - -.#{$fa-css-prefix}-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} diff --git a/library/font_awesome/scss/_bordered-pulled.scss b/library/font_awesome/scss/_bordered-pulled.scss deleted file mode 100644 index d4b85a02f..000000000 --- a/library/font_awesome/scss/_bordered-pulled.scss +++ /dev/null @@ -1,25 +0,0 @@ -// Bordered & Pulled -// ------------------------- - -.#{$fa-css-prefix}-border { - padding: .2em .25em .15em; - border: solid .08em $fa-border-color; - border-radius: .1em; -} - -.#{$fa-css-prefix}-pull-left { float: left; } -.#{$fa-css-prefix}-pull-right { float: right; } - -.#{$fa-css-prefix} { - &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } - &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } -} - -/* Deprecated as of 4.4.0 */ -.pull-right { float: right; } -.pull-left { float: left; } - -.#{$fa-css-prefix} { - &.pull-left { margin-right: .3em; } - &.pull-right { margin-left: .3em; } -} diff --git a/library/font_awesome/scss/_core.scss b/library/font_awesome/scss/_core.scss deleted file mode 100644 index 7425ef85f..000000000 --- a/library/font_awesome/scss/_core.scss +++ /dev/null @@ -1,12 +0,0 @@ -// Base Class Definition -// ------------------------- - -.#{$fa-css-prefix} { - display: inline-block; - font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration - font-size: inherit; // can't have font-size inherit on line above, so need to override - text-rendering: auto; // optimizelegibility throws things off #1094 - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -} diff --git a/library/font_awesome/scss/_fixed-width.scss b/library/font_awesome/scss/_fixed-width.scss deleted file mode 100644 index b221c9813..000000000 --- a/library/font_awesome/scss/_fixed-width.scss +++ /dev/null @@ -1,6 +0,0 @@ -// Fixed Width Icons -// ------------------------- -.#{$fa-css-prefix}-fw { - width: (18em / 14); - text-align: center; -} diff --git a/library/font_awesome/scss/_icons.scss b/library/font_awesome/scss/_icons.scss deleted file mode 100644 index e63e702c4..000000000 --- a/library/font_awesome/scss/_icons.scss +++ /dev/null @@ -1,789 +0,0 @@ -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ - -.#{$fa-css-prefix}-glass:before { content: $fa-var-glass; } -.#{$fa-css-prefix}-music:before { content: $fa-var-music; } -.#{$fa-css-prefix}-search:before { content: $fa-var-search; } -.#{$fa-css-prefix}-envelope-o:before { content: $fa-var-envelope-o; } -.#{$fa-css-prefix}-heart:before { content: $fa-var-heart; } -.#{$fa-css-prefix}-star:before { content: $fa-var-star; } -.#{$fa-css-prefix}-star-o:before { content: $fa-var-star-o; } -.#{$fa-css-prefix}-user:before { content: $fa-var-user; } -.#{$fa-css-prefix}-film:before { content: $fa-var-film; } -.#{$fa-css-prefix}-th-large:before { content: $fa-var-th-large; } -.#{$fa-css-prefix}-th:before { content: $fa-var-th; } -.#{$fa-css-prefix}-th-list:before { content: $fa-var-th-list; } -.#{$fa-css-prefix}-check:before { content: $fa-var-check; } -.#{$fa-css-prefix}-remove:before, -.#{$fa-css-prefix}-close:before, -.#{$fa-css-prefix}-times:before { content: $fa-var-times; } -.#{$fa-css-prefix}-search-plus:before { content: $fa-var-search-plus; } -.#{$fa-css-prefix}-search-minus:before { content: $fa-var-search-minus; } -.#{$fa-css-prefix}-power-off:before { content: $fa-var-power-off; } -.#{$fa-css-prefix}-signal:before { content: $fa-var-signal; } -.#{$fa-css-prefix}-gear:before, -.#{$fa-css-prefix}-cog:before { content: $fa-var-cog; } -.#{$fa-css-prefix}-trash-o:before { content: $fa-var-trash-o; } -.#{$fa-css-prefix}-home:before { content: $fa-var-home; } -.#{$fa-css-prefix}-file-o:before { content: $fa-var-file-o; } -.#{$fa-css-prefix}-clock-o:before { content: $fa-var-clock-o; } -.#{$fa-css-prefix}-road:before { content: $fa-var-road; } -.#{$fa-css-prefix}-download:before { content: $fa-var-download; } -.#{$fa-css-prefix}-arrow-circle-o-down:before { content: $fa-var-arrow-circle-o-down; } -.#{$fa-css-prefix}-arrow-circle-o-up:before { content: $fa-var-arrow-circle-o-up; } -.#{$fa-css-prefix}-inbox:before { content: $fa-var-inbox; } -.#{$fa-css-prefix}-play-circle-o:before { content: $fa-var-play-circle-o; } -.#{$fa-css-prefix}-rotate-right:before, -.#{$fa-css-prefix}-repeat:before { content: $fa-var-repeat; } -.#{$fa-css-prefix}-refresh:before { content: $fa-var-refresh; } -.#{$fa-css-prefix}-list-alt:before { content: $fa-var-list-alt; } -.#{$fa-css-prefix}-lock:before { content: $fa-var-lock; } -.#{$fa-css-prefix}-flag:before { content: $fa-var-flag; } -.#{$fa-css-prefix}-headphones:before { content: $fa-var-headphones; } -.#{$fa-css-prefix}-volume-off:before { content: $fa-var-volume-off; } -.#{$fa-css-prefix}-volume-down:before { content: $fa-var-volume-down; } -.#{$fa-css-prefix}-volume-up:before { content: $fa-var-volume-up; } -.#{$fa-css-prefix}-qrcode:before { content: $fa-var-qrcode; } -.#{$fa-css-prefix}-barcode:before { content: $fa-var-barcode; } -.#{$fa-css-prefix}-tag:before { content: $fa-var-tag; } -.#{$fa-css-prefix}-tags:before { content: $fa-var-tags; } -.#{$fa-css-prefix}-book:before { content: $fa-var-book; } -.#{$fa-css-prefix}-bookmark:before { content: $fa-var-bookmark; } -.#{$fa-css-prefix}-print:before { content: $fa-var-print; } -.#{$fa-css-prefix}-camera:before { content: $fa-var-camera; } -.#{$fa-css-prefix}-font:before { content: $fa-var-font; } -.#{$fa-css-prefix}-bold:before { content: $fa-var-bold; } -.#{$fa-css-prefix}-italic:before { content: $fa-var-italic; } -.#{$fa-css-prefix}-text-height:before { content: $fa-var-text-height; } -.#{$fa-css-prefix}-text-width:before { content: $fa-var-text-width; } -.#{$fa-css-prefix}-align-left:before { content: $fa-var-align-left; } -.#{$fa-css-prefix}-align-center:before { content: $fa-var-align-center; } -.#{$fa-css-prefix}-align-right:before { content: $fa-var-align-right; } -.#{$fa-css-prefix}-align-justify:before { content: $fa-var-align-justify; } -.#{$fa-css-prefix}-list:before { content: $fa-var-list; } -.#{$fa-css-prefix}-dedent:before, -.#{$fa-css-prefix}-outdent:before { content: $fa-var-outdent; } -.#{$fa-css-prefix}-indent:before { content: $fa-var-indent; } -.#{$fa-css-prefix}-video-camera:before { content: $fa-var-video-camera; } -.#{$fa-css-prefix}-photo:before, -.#{$fa-css-prefix}-image:before, -.#{$fa-css-prefix}-picture-o:before { content: $fa-var-picture-o; } -.#{$fa-css-prefix}-pencil:before { content: $fa-var-pencil; } -.#{$fa-css-prefix}-map-marker:before { content: $fa-var-map-marker; } -.#{$fa-css-prefix}-adjust:before { content: $fa-var-adjust; } -.#{$fa-css-prefix}-tint:before { content: $fa-var-tint; } -.#{$fa-css-prefix}-edit:before, -.#{$fa-css-prefix}-pencil-square-o:before { content: $fa-var-pencil-square-o; } -.#{$fa-css-prefix}-share-square-o:before { content: $fa-var-share-square-o; } -.#{$fa-css-prefix}-check-square-o:before { content: $fa-var-check-square-o; } -.#{$fa-css-prefix}-arrows:before { content: $fa-var-arrows; } -.#{$fa-css-prefix}-step-backward:before { content: $fa-var-step-backward; } -.#{$fa-css-prefix}-fast-backward:before { content: $fa-var-fast-backward; } -.#{$fa-css-prefix}-backward:before { content: $fa-var-backward; } -.#{$fa-css-prefix}-play:before { content: $fa-var-play; } -.#{$fa-css-prefix}-pause:before { content: $fa-var-pause; } -.#{$fa-css-prefix}-stop:before { content: $fa-var-stop; } -.#{$fa-css-prefix}-forward:before { content: $fa-var-forward; } -.#{$fa-css-prefix}-fast-forward:before { content: $fa-var-fast-forward; } -.#{$fa-css-prefix}-step-forward:before { content: $fa-var-step-forward; } -.#{$fa-css-prefix}-eject:before { content: $fa-var-eject; } -.#{$fa-css-prefix}-chevron-left:before { content: $fa-var-chevron-left; } -.#{$fa-css-prefix}-chevron-right:before { content: $fa-var-chevron-right; } -.#{$fa-css-prefix}-plus-circle:before { content: $fa-var-plus-circle; } -.#{$fa-css-prefix}-minus-circle:before { content: $fa-var-minus-circle; } -.#{$fa-css-prefix}-times-circle:before { content: $fa-var-times-circle; } -.#{$fa-css-prefix}-check-circle:before { content: $fa-var-check-circle; } -.#{$fa-css-prefix}-question-circle:before { content: $fa-var-question-circle; } -.#{$fa-css-prefix}-info-circle:before { content: $fa-var-info-circle; } -.#{$fa-css-prefix}-crosshairs:before { content: $fa-var-crosshairs; } -.#{$fa-css-prefix}-times-circle-o:before { content: $fa-var-times-circle-o; } -.#{$fa-css-prefix}-check-circle-o:before { content: $fa-var-check-circle-o; } -.#{$fa-css-prefix}-ban:before { content: $fa-var-ban; } -.#{$fa-css-prefix}-arrow-left:before { content: $fa-var-arrow-left; } -.#{$fa-css-prefix}-arrow-right:before { content: $fa-var-arrow-right; } -.#{$fa-css-prefix}-arrow-up:before { content: $fa-var-arrow-up; } -.#{$fa-css-prefix}-arrow-down:before { content: $fa-var-arrow-down; } -.#{$fa-css-prefix}-mail-forward:before, -.#{$fa-css-prefix}-share:before { content: $fa-var-share; } -.#{$fa-css-prefix}-expand:before { content: $fa-var-expand; } -.#{$fa-css-prefix}-compress:before { content: $fa-var-compress; } -.#{$fa-css-prefix}-plus:before { content: $fa-var-plus; } -.#{$fa-css-prefix}-minus:before { content: $fa-var-minus; } -.#{$fa-css-prefix}-asterisk:before { content: $fa-var-asterisk; } -.#{$fa-css-prefix}-exclamation-circle:before { content: $fa-var-exclamation-circle; } -.#{$fa-css-prefix}-gift:before { content: $fa-var-gift; } -.#{$fa-css-prefix}-leaf:before { content: $fa-var-leaf; } -.#{$fa-css-prefix}-fire:before { content: $fa-var-fire; } -.#{$fa-css-prefix}-eye:before { content: $fa-var-eye; } -.#{$fa-css-prefix}-eye-slash:before { content: $fa-var-eye-slash; } -.#{$fa-css-prefix}-warning:before, -.#{$fa-css-prefix}-exclamation-triangle:before { content: $fa-var-exclamation-triangle; } -.#{$fa-css-prefix}-plane:before { content: $fa-var-plane; } -.#{$fa-css-prefix}-calendar:before { content: $fa-var-calendar; } -.#{$fa-css-prefix}-random:before { content: $fa-var-random; } -.#{$fa-css-prefix}-comment:before { content: $fa-var-comment; } -.#{$fa-css-prefix}-magnet:before { content: $fa-var-magnet; } -.#{$fa-css-prefix}-chevron-up:before { content: $fa-var-chevron-up; } -.#{$fa-css-prefix}-chevron-down:before { content: $fa-var-chevron-down; } -.#{$fa-css-prefix}-retweet:before { content: $fa-var-retweet; } -.#{$fa-css-prefix}-shopping-cart:before { content: $fa-var-shopping-cart; } -.#{$fa-css-prefix}-folder:before { content: $fa-var-folder; } -.#{$fa-css-prefix}-folder-open:before { content: $fa-var-folder-open; } -.#{$fa-css-prefix}-arrows-v:before { content: $fa-var-arrows-v; } -.#{$fa-css-prefix}-arrows-h:before { content: $fa-var-arrows-h; } -.#{$fa-css-prefix}-bar-chart-o:before, -.#{$fa-css-prefix}-bar-chart:before { content: $fa-var-bar-chart; } -.#{$fa-css-prefix}-twitter-square:before { content: $fa-var-twitter-square; } -.#{$fa-css-prefix}-facebook-square:before { content: $fa-var-facebook-square; } -.#{$fa-css-prefix}-camera-retro:before { content: $fa-var-camera-retro; } -.#{$fa-css-prefix}-key:before { content: $fa-var-key; } -.#{$fa-css-prefix}-gears:before, -.#{$fa-css-prefix}-cogs:before { content: $fa-var-cogs; } -.#{$fa-css-prefix}-comments:before { content: $fa-var-comments; } -.#{$fa-css-prefix}-thumbs-o-up:before { content: $fa-var-thumbs-o-up; } -.#{$fa-css-prefix}-thumbs-o-down:before { content: $fa-var-thumbs-o-down; } -.#{$fa-css-prefix}-star-half:before { content: $fa-var-star-half; } -.#{$fa-css-prefix}-heart-o:before { content: $fa-var-heart-o; } -.#{$fa-css-prefix}-sign-out:before { content: $fa-var-sign-out; } -.#{$fa-css-prefix}-linkedin-square:before { content: $fa-var-linkedin-square; } -.#{$fa-css-prefix}-thumb-tack:before { content: $fa-var-thumb-tack; } -.#{$fa-css-prefix}-external-link:before { content: $fa-var-external-link; } -.#{$fa-css-prefix}-sign-in:before { content: $fa-var-sign-in; } -.#{$fa-css-prefix}-trophy:before { content: $fa-var-trophy; } -.#{$fa-css-prefix}-github-square:before { content: $fa-var-github-square; } -.#{$fa-css-prefix}-upload:before { content: $fa-var-upload; } -.#{$fa-css-prefix}-lemon-o:before { content: $fa-var-lemon-o; } -.#{$fa-css-prefix}-phone:before { content: $fa-var-phone; } -.#{$fa-css-prefix}-square-o:before { content: $fa-var-square-o; } -.#{$fa-css-prefix}-bookmark-o:before { content: $fa-var-bookmark-o; } -.#{$fa-css-prefix}-phone-square:before { content: $fa-var-phone-square; } -.#{$fa-css-prefix}-twitter:before { content: $fa-var-twitter; } -.#{$fa-css-prefix}-facebook-f:before, -.#{$fa-css-prefix}-facebook:before { content: $fa-var-facebook; } -.#{$fa-css-prefix}-github:before { content: $fa-var-github; } -.#{$fa-css-prefix}-unlock:before { content: $fa-var-unlock; } -.#{$fa-css-prefix}-credit-card:before { content: $fa-var-credit-card; } -.#{$fa-css-prefix}-feed:before, -.#{$fa-css-prefix}-rss:before { content: $fa-var-rss; } -.#{$fa-css-prefix}-hdd-o:before { content: $fa-var-hdd-o; } -.#{$fa-css-prefix}-bullhorn:before { content: $fa-var-bullhorn; } -.#{$fa-css-prefix}-bell:before { content: $fa-var-bell; } -.#{$fa-css-prefix}-certificate:before { content: $fa-var-certificate; } -.#{$fa-css-prefix}-hand-o-right:before { content: $fa-var-hand-o-right; } -.#{$fa-css-prefix}-hand-o-left:before { content: $fa-var-hand-o-left; } -.#{$fa-css-prefix}-hand-o-up:before { content: $fa-var-hand-o-up; } -.#{$fa-css-prefix}-hand-o-down:before { content: $fa-var-hand-o-down; } -.#{$fa-css-prefix}-arrow-circle-left:before { content: $fa-var-arrow-circle-left; } -.#{$fa-css-prefix}-arrow-circle-right:before { content: $fa-var-arrow-circle-right; } -.#{$fa-css-prefix}-arrow-circle-up:before { content: $fa-var-arrow-circle-up; } -.#{$fa-css-prefix}-arrow-circle-down:before { content: $fa-var-arrow-circle-down; } -.#{$fa-css-prefix}-globe:before { content: $fa-var-globe; } -.#{$fa-css-prefix}-wrench:before { content: $fa-var-wrench; } -.#{$fa-css-prefix}-tasks:before { content: $fa-var-tasks; } -.#{$fa-css-prefix}-filter:before { content: $fa-var-filter; } -.#{$fa-css-prefix}-briefcase:before { content: $fa-var-briefcase; } -.#{$fa-css-prefix}-arrows-alt:before { content: $fa-var-arrows-alt; } -.#{$fa-css-prefix}-group:before, -.#{$fa-css-prefix}-users:before { content: $fa-var-users; } -.#{$fa-css-prefix}-chain:before, -.#{$fa-css-prefix}-link:before { content: $fa-var-link; } -.#{$fa-css-prefix}-cloud:before { content: $fa-var-cloud; } -.#{$fa-css-prefix}-flask:before { content: $fa-var-flask; } -.#{$fa-css-prefix}-cut:before, -.#{$fa-css-prefix}-scissors:before { content: $fa-var-scissors; } -.#{$fa-css-prefix}-copy:before, -.#{$fa-css-prefix}-files-o:before { content: $fa-var-files-o; } -.#{$fa-css-prefix}-paperclip:before { content: $fa-var-paperclip; } -.#{$fa-css-prefix}-save:before, -.#{$fa-css-prefix}-floppy-o:before { content: $fa-var-floppy-o; } -.#{$fa-css-prefix}-square:before { content: $fa-var-square; } -.#{$fa-css-prefix}-navicon:before, -.#{$fa-css-prefix}-reorder:before, -.#{$fa-css-prefix}-bars:before { content: $fa-var-bars; } -.#{$fa-css-prefix}-list-ul:before { content: $fa-var-list-ul; } -.#{$fa-css-prefix}-list-ol:before { content: $fa-var-list-ol; } -.#{$fa-css-prefix}-strikethrough:before { content: $fa-var-strikethrough; } -.#{$fa-css-prefix}-underline:before { content: $fa-var-underline; } -.#{$fa-css-prefix}-table:before { content: $fa-var-table; } -.#{$fa-css-prefix}-magic:before { content: $fa-var-magic; } -.#{$fa-css-prefix}-truck:before { content: $fa-var-truck; } -.#{$fa-css-prefix}-pinterest:before { content: $fa-var-pinterest; } -.#{$fa-css-prefix}-pinterest-square:before { content: $fa-var-pinterest-square; } -.#{$fa-css-prefix}-google-plus-square:before { content: $fa-var-google-plus-square; } -.#{$fa-css-prefix}-google-plus:before { content: $fa-var-google-plus; } -.#{$fa-css-prefix}-money:before { content: $fa-var-money; } -.#{$fa-css-prefix}-caret-down:before { content: $fa-var-caret-down; } -.#{$fa-css-prefix}-caret-up:before { content: $fa-var-caret-up; } -.#{$fa-css-prefix}-caret-left:before { content: $fa-var-caret-left; } -.#{$fa-css-prefix}-caret-right:before { content: $fa-var-caret-right; } -.#{$fa-css-prefix}-columns:before { content: $fa-var-columns; } -.#{$fa-css-prefix}-unsorted:before, -.#{$fa-css-prefix}-sort:before { content: $fa-var-sort; } -.#{$fa-css-prefix}-sort-down:before, -.#{$fa-css-prefix}-sort-desc:before { content: $fa-var-sort-desc; } -.#{$fa-css-prefix}-sort-up:before, -.#{$fa-css-prefix}-sort-asc:before { content: $fa-var-sort-asc; } -.#{$fa-css-prefix}-envelope:before { content: $fa-var-envelope; } -.#{$fa-css-prefix}-linkedin:before { content: $fa-var-linkedin; } -.#{$fa-css-prefix}-rotate-left:before, -.#{$fa-css-prefix}-undo:before { content: $fa-var-undo; } -.#{$fa-css-prefix}-legal:before, -.#{$fa-css-prefix}-gavel:before { content: $fa-var-gavel; } -.#{$fa-css-prefix}-dashboard:before, -.#{$fa-css-prefix}-tachometer:before { content: $fa-var-tachometer; } -.#{$fa-css-prefix}-comment-o:before { content: $fa-var-comment-o; } -.#{$fa-css-prefix}-comments-o:before { content: $fa-var-comments-o; } -.#{$fa-css-prefix}-flash:before, -.#{$fa-css-prefix}-bolt:before { content: $fa-var-bolt; } -.#{$fa-css-prefix}-sitemap:before { content: $fa-var-sitemap; } -.#{$fa-css-prefix}-umbrella:before { content: $fa-var-umbrella; } -.#{$fa-css-prefix}-paste:before, -.#{$fa-css-prefix}-clipboard:before { content: $fa-var-clipboard; } -.#{$fa-css-prefix}-lightbulb-o:before { content: $fa-var-lightbulb-o; } -.#{$fa-css-prefix}-exchange:before { content: $fa-var-exchange; } -.#{$fa-css-prefix}-cloud-download:before { content: $fa-var-cloud-download; } -.#{$fa-css-prefix}-cloud-upload:before { content: $fa-var-cloud-upload; } -.#{$fa-css-prefix}-user-md:before { content: $fa-var-user-md; } -.#{$fa-css-prefix}-stethoscope:before { content: $fa-var-stethoscope; } -.#{$fa-css-prefix}-suitcase:before { content: $fa-var-suitcase; } -.#{$fa-css-prefix}-bell-o:before { content: $fa-var-bell-o; } -.#{$fa-css-prefix}-coffee:before { content: $fa-var-coffee; } -.#{$fa-css-prefix}-cutlery:before { content: $fa-var-cutlery; } -.#{$fa-css-prefix}-file-text-o:before { content: $fa-var-file-text-o; } -.#{$fa-css-prefix}-building-o:before { content: $fa-var-building-o; } -.#{$fa-css-prefix}-hospital-o:before { content: $fa-var-hospital-o; } -.#{$fa-css-prefix}-ambulance:before { content: $fa-var-ambulance; } -.#{$fa-css-prefix}-medkit:before { content: $fa-var-medkit; } -.#{$fa-css-prefix}-fighter-jet:before { content: $fa-var-fighter-jet; } -.#{$fa-css-prefix}-beer:before { content: $fa-var-beer; } -.#{$fa-css-prefix}-h-square:before { content: $fa-var-h-square; } -.#{$fa-css-prefix}-plus-square:before { content: $fa-var-plus-square; } -.#{$fa-css-prefix}-angle-double-left:before { content: $fa-var-angle-double-left; } -.#{$fa-css-prefix}-angle-double-right:before { content: $fa-var-angle-double-right; } -.#{$fa-css-prefix}-angle-double-up:before { content: $fa-var-angle-double-up; } -.#{$fa-css-prefix}-angle-double-down:before { content: $fa-var-angle-double-down; } -.#{$fa-css-prefix}-angle-left:before { content: $fa-var-angle-left; } -.#{$fa-css-prefix}-angle-right:before { content: $fa-var-angle-right; } -.#{$fa-css-prefix}-angle-up:before { content: $fa-var-angle-up; } -.#{$fa-css-prefix}-angle-down:before { content: $fa-var-angle-down; } -.#{$fa-css-prefix}-desktop:before { content: $fa-var-desktop; } -.#{$fa-css-prefix}-laptop:before { content: $fa-var-laptop; } -.#{$fa-css-prefix}-tablet:before { content: $fa-var-tablet; } -.#{$fa-css-prefix}-mobile-phone:before, -.#{$fa-css-prefix}-mobile:before { content: $fa-var-mobile; } -.#{$fa-css-prefix}-circle-o:before { content: $fa-var-circle-o; } -.#{$fa-css-prefix}-quote-left:before { content: $fa-var-quote-left; } -.#{$fa-css-prefix}-quote-right:before { content: $fa-var-quote-right; } -.#{$fa-css-prefix}-spinner:before { content: $fa-var-spinner; } -.#{$fa-css-prefix}-circle:before { content: $fa-var-circle; } -.#{$fa-css-prefix}-mail-reply:before, -.#{$fa-css-prefix}-reply:before { content: $fa-var-reply; } -.#{$fa-css-prefix}-github-alt:before { content: $fa-var-github-alt; } -.#{$fa-css-prefix}-folder-o:before { content: $fa-var-folder-o; } -.#{$fa-css-prefix}-folder-open-o:before { content: $fa-var-folder-open-o; } -.#{$fa-css-prefix}-smile-o:before { content: $fa-var-smile-o; } -.#{$fa-css-prefix}-frown-o:before { content: $fa-var-frown-o; } -.#{$fa-css-prefix}-meh-o:before { content: $fa-var-meh-o; } -.#{$fa-css-prefix}-gamepad:before { content: $fa-var-gamepad; } -.#{$fa-css-prefix}-keyboard-o:before { content: $fa-var-keyboard-o; } -.#{$fa-css-prefix}-flag-o:before { content: $fa-var-flag-o; } -.#{$fa-css-prefix}-flag-checkered:before { content: $fa-var-flag-checkered; } -.#{$fa-css-prefix}-terminal:before { content: $fa-var-terminal; } -.#{$fa-css-prefix}-code:before { content: $fa-var-code; } -.#{$fa-css-prefix}-mail-reply-all:before, -.#{$fa-css-prefix}-reply-all:before { content: $fa-var-reply-all; } -.#{$fa-css-prefix}-star-half-empty:before, -.#{$fa-css-prefix}-star-half-full:before, -.#{$fa-css-prefix}-star-half-o:before { content: $fa-var-star-half-o; } -.#{$fa-css-prefix}-location-arrow:before { content: $fa-var-location-arrow; } -.#{$fa-css-prefix}-crop:before { content: $fa-var-crop; } -.#{$fa-css-prefix}-code-fork:before { content: $fa-var-code-fork; } -.#{$fa-css-prefix}-unlink:before, -.#{$fa-css-prefix}-chain-broken:before { content: $fa-var-chain-broken; } -.#{$fa-css-prefix}-question:before { content: $fa-var-question; } -.#{$fa-css-prefix}-info:before { content: $fa-var-info; } -.#{$fa-css-prefix}-exclamation:before { content: $fa-var-exclamation; } -.#{$fa-css-prefix}-superscript:before { content: $fa-var-superscript; } -.#{$fa-css-prefix}-subscript:before { content: $fa-var-subscript; } -.#{$fa-css-prefix}-eraser:before { content: $fa-var-eraser; } -.#{$fa-css-prefix}-puzzle-piece:before { content: $fa-var-puzzle-piece; } -.#{$fa-css-prefix}-microphone:before { content: $fa-var-microphone; } -.#{$fa-css-prefix}-microphone-slash:before { content: $fa-var-microphone-slash; } -.#{$fa-css-prefix}-shield:before { content: $fa-var-shield; } -.#{$fa-css-prefix}-calendar-o:before { content: $fa-var-calendar-o; } -.#{$fa-css-prefix}-fire-extinguisher:before { content: $fa-var-fire-extinguisher; } -.#{$fa-css-prefix}-rocket:before { content: $fa-var-rocket; } -.#{$fa-css-prefix}-maxcdn:before { content: $fa-var-maxcdn; } -.#{$fa-css-prefix}-chevron-circle-left:before { content: $fa-var-chevron-circle-left; } -.#{$fa-css-prefix}-chevron-circle-right:before { content: $fa-var-chevron-circle-right; } -.#{$fa-css-prefix}-chevron-circle-up:before { content: $fa-var-chevron-circle-up; } -.#{$fa-css-prefix}-chevron-circle-down:before { content: $fa-var-chevron-circle-down; } -.#{$fa-css-prefix}-html5:before { content: $fa-var-html5; } -.#{$fa-css-prefix}-css3:before { content: $fa-var-css3; } -.#{$fa-css-prefix}-anchor:before { content: $fa-var-anchor; } -.#{$fa-css-prefix}-unlock-alt:before { content: $fa-var-unlock-alt; } -.#{$fa-css-prefix}-bullseye:before { content: $fa-var-bullseye; } -.#{$fa-css-prefix}-ellipsis-h:before { content: $fa-var-ellipsis-h; } -.#{$fa-css-prefix}-ellipsis-v:before { content: $fa-var-ellipsis-v; } -.#{$fa-css-prefix}-rss-square:before { content: $fa-var-rss-square; } -.#{$fa-css-prefix}-play-circle:before { content: $fa-var-play-circle; } -.#{$fa-css-prefix}-ticket:before { content: $fa-var-ticket; } -.#{$fa-css-prefix}-minus-square:before { content: $fa-var-minus-square; } -.#{$fa-css-prefix}-minus-square-o:before { content: $fa-var-minus-square-o; } -.#{$fa-css-prefix}-level-up:before { content: $fa-var-level-up; } -.#{$fa-css-prefix}-level-down:before { content: $fa-var-level-down; } -.#{$fa-css-prefix}-check-square:before { content: $fa-var-check-square; } -.#{$fa-css-prefix}-pencil-square:before { content: $fa-var-pencil-square; } -.#{$fa-css-prefix}-external-link-square:before { content: $fa-var-external-link-square; } -.#{$fa-css-prefix}-share-square:before { content: $fa-var-share-square; } -.#{$fa-css-prefix}-compass:before { content: $fa-var-compass; } -.#{$fa-css-prefix}-toggle-down:before, -.#{$fa-css-prefix}-caret-square-o-down:before { content: $fa-var-caret-square-o-down; } -.#{$fa-css-prefix}-toggle-up:before, -.#{$fa-css-prefix}-caret-square-o-up:before { content: $fa-var-caret-square-o-up; } -.#{$fa-css-prefix}-toggle-right:before, -.#{$fa-css-prefix}-caret-square-o-right:before { content: $fa-var-caret-square-o-right; } -.#{$fa-css-prefix}-euro:before, -.#{$fa-css-prefix}-eur:before { content: $fa-var-eur; } -.#{$fa-css-prefix}-gbp:before { content: $fa-var-gbp; } -.#{$fa-css-prefix}-dollar:before, -.#{$fa-css-prefix}-usd:before { content: $fa-var-usd; } -.#{$fa-css-prefix}-rupee:before, -.#{$fa-css-prefix}-inr:before { content: $fa-var-inr; } -.#{$fa-css-prefix}-cny:before, -.#{$fa-css-prefix}-rmb:before, -.#{$fa-css-prefix}-yen:before, -.#{$fa-css-prefix}-jpy:before { content: $fa-var-jpy; } -.#{$fa-css-prefix}-ruble:before, -.#{$fa-css-prefix}-rouble:before, -.#{$fa-css-prefix}-rub:before { content: $fa-var-rub; } -.#{$fa-css-prefix}-won:before, -.#{$fa-css-prefix}-krw:before { content: $fa-var-krw; } -.#{$fa-css-prefix}-bitcoin:before, -.#{$fa-css-prefix}-btc:before { content: $fa-var-btc; } -.#{$fa-css-prefix}-file:before { content: $fa-var-file; } -.#{$fa-css-prefix}-file-text:before { content: $fa-var-file-text; } -.#{$fa-css-prefix}-sort-alpha-asc:before { content: $fa-var-sort-alpha-asc; } -.#{$fa-css-prefix}-sort-alpha-desc:before { content: $fa-var-sort-alpha-desc; } -.#{$fa-css-prefix}-sort-amount-asc:before { content: $fa-var-sort-amount-asc; } -.#{$fa-css-prefix}-sort-amount-desc:before { content: $fa-var-sort-amount-desc; } -.#{$fa-css-prefix}-sort-numeric-asc:before { content: $fa-var-sort-numeric-asc; } -.#{$fa-css-prefix}-sort-numeric-desc:before { content: $fa-var-sort-numeric-desc; } -.#{$fa-css-prefix}-thumbs-up:before { content: $fa-var-thumbs-up; } -.#{$fa-css-prefix}-thumbs-down:before { content: $fa-var-thumbs-down; } -.#{$fa-css-prefix}-youtube-square:before { content: $fa-var-youtube-square; } -.#{$fa-css-prefix}-youtube:before { content: $fa-var-youtube; } -.#{$fa-css-prefix}-xing:before { content: $fa-var-xing; } -.#{$fa-css-prefix}-xing-square:before { content: $fa-var-xing-square; } -.#{$fa-css-prefix}-youtube-play:before { content: $fa-var-youtube-play; } -.#{$fa-css-prefix}-dropbox:before { content: $fa-var-dropbox; } -.#{$fa-css-prefix}-stack-overflow:before { content: $fa-var-stack-overflow; } -.#{$fa-css-prefix}-instagram:before { content: $fa-var-instagram; } -.#{$fa-css-prefix}-flickr:before { content: $fa-var-flickr; } -.#{$fa-css-prefix}-adn:before { content: $fa-var-adn; } -.#{$fa-css-prefix}-bitbucket:before { content: $fa-var-bitbucket; } -.#{$fa-css-prefix}-bitbucket-square:before { content: $fa-var-bitbucket-square; } -.#{$fa-css-prefix}-tumblr:before { content: $fa-var-tumblr; } -.#{$fa-css-prefix}-tumblr-square:before { content: $fa-var-tumblr-square; } -.#{$fa-css-prefix}-long-arrow-down:before { content: $fa-var-long-arrow-down; } -.#{$fa-css-prefix}-long-arrow-up:before { content: $fa-var-long-arrow-up; } -.#{$fa-css-prefix}-long-arrow-left:before { content: $fa-var-long-arrow-left; } -.#{$fa-css-prefix}-long-arrow-right:before { content: $fa-var-long-arrow-right; } -.#{$fa-css-prefix}-apple:before { content: $fa-var-apple; } -.#{$fa-css-prefix}-windows:before { content: $fa-var-windows; } -.#{$fa-css-prefix}-android:before { content: $fa-var-android; } -.#{$fa-css-prefix}-linux:before { content: $fa-var-linux; } -.#{$fa-css-prefix}-dribbble:before { content: $fa-var-dribbble; } -.#{$fa-css-prefix}-skype:before { content: $fa-var-skype; } -.#{$fa-css-prefix}-foursquare:before { content: $fa-var-foursquare; } -.#{$fa-css-prefix}-trello:before { content: $fa-var-trello; } -.#{$fa-css-prefix}-female:before { content: $fa-var-female; } -.#{$fa-css-prefix}-male:before { content: $fa-var-male; } -.#{$fa-css-prefix}-gittip:before, -.#{$fa-css-prefix}-gratipay:before { content: $fa-var-gratipay; } -.#{$fa-css-prefix}-sun-o:before { content: $fa-var-sun-o; } -.#{$fa-css-prefix}-moon-o:before { content: $fa-var-moon-o; } -.#{$fa-css-prefix}-archive:before { content: $fa-var-archive; } -.#{$fa-css-prefix}-bug:before { content: $fa-var-bug; } -.#{$fa-css-prefix}-vk:before { content: $fa-var-vk; } -.#{$fa-css-prefix}-weibo:before { content: $fa-var-weibo; } -.#{$fa-css-prefix}-renren:before { content: $fa-var-renren; } -.#{$fa-css-prefix}-pagelines:before { content: $fa-var-pagelines; } -.#{$fa-css-prefix}-stack-exchange:before { content: $fa-var-stack-exchange; } -.#{$fa-css-prefix}-arrow-circle-o-right:before { content: $fa-var-arrow-circle-o-right; } -.#{$fa-css-prefix}-arrow-circle-o-left:before { content: $fa-var-arrow-circle-o-left; } -.#{$fa-css-prefix}-toggle-left:before, -.#{$fa-css-prefix}-caret-square-o-left:before { content: $fa-var-caret-square-o-left; } -.#{$fa-css-prefix}-dot-circle-o:before { content: $fa-var-dot-circle-o; } -.#{$fa-css-prefix}-wheelchair:before { content: $fa-var-wheelchair; } -.#{$fa-css-prefix}-vimeo-square:before { content: $fa-var-vimeo-square; } -.#{$fa-css-prefix}-turkish-lira:before, -.#{$fa-css-prefix}-try:before { content: $fa-var-try; } -.#{$fa-css-prefix}-plus-square-o:before { content: $fa-var-plus-square-o; } -.#{$fa-css-prefix}-space-shuttle:before { content: $fa-var-space-shuttle; } -.#{$fa-css-prefix}-slack:before { content: $fa-var-slack; } -.#{$fa-css-prefix}-envelope-square:before { content: $fa-var-envelope-square; } -.#{$fa-css-prefix}-wordpress:before { content: $fa-var-wordpress; } -.#{$fa-css-prefix}-openid:before { content: $fa-var-openid; } -.#{$fa-css-prefix}-institution:before, -.#{$fa-css-prefix}-bank:before, -.#{$fa-css-prefix}-university:before { content: $fa-var-university; } -.#{$fa-css-prefix}-mortar-board:before, -.#{$fa-css-prefix}-graduation-cap:before { content: $fa-var-graduation-cap; } -.#{$fa-css-prefix}-yahoo:before { content: $fa-var-yahoo; } -.#{$fa-css-prefix}-google:before { content: $fa-var-google; } -.#{$fa-css-prefix}-reddit:before { content: $fa-var-reddit; } -.#{$fa-css-prefix}-reddit-square:before { content: $fa-var-reddit-square; } -.#{$fa-css-prefix}-stumbleupon-circle:before { content: $fa-var-stumbleupon-circle; } -.#{$fa-css-prefix}-stumbleupon:before { content: $fa-var-stumbleupon; } -.#{$fa-css-prefix}-delicious:before { content: $fa-var-delicious; } -.#{$fa-css-prefix}-digg:before { content: $fa-var-digg; } -.#{$fa-css-prefix}-pied-piper-pp:before { content: $fa-var-pied-piper-pp; } -.#{$fa-css-prefix}-pied-piper-alt:before { content: $fa-var-pied-piper-alt; } -.#{$fa-css-prefix}-drupal:before { content: $fa-var-drupal; } -.#{$fa-css-prefix}-joomla:before { content: $fa-var-joomla; } -.#{$fa-css-prefix}-language:before { content: $fa-var-language; } -.#{$fa-css-prefix}-fax:before { content: $fa-var-fax; } -.#{$fa-css-prefix}-building:before { content: $fa-var-building; } -.#{$fa-css-prefix}-child:before { content: $fa-var-child; } -.#{$fa-css-prefix}-paw:before { content: $fa-var-paw; } -.#{$fa-css-prefix}-spoon:before { content: $fa-var-spoon; } -.#{$fa-css-prefix}-cube:before { content: $fa-var-cube; } -.#{$fa-css-prefix}-cubes:before { content: $fa-var-cubes; } -.#{$fa-css-prefix}-behance:before { content: $fa-var-behance; } -.#{$fa-css-prefix}-behance-square:before { content: $fa-var-behance-square; } -.#{$fa-css-prefix}-steam:before { content: $fa-var-steam; } -.#{$fa-css-prefix}-steam-square:before { content: $fa-var-steam-square; } -.#{$fa-css-prefix}-recycle:before { content: $fa-var-recycle; } -.#{$fa-css-prefix}-automobile:before, -.#{$fa-css-prefix}-car:before { content: $fa-var-car; } -.#{$fa-css-prefix}-cab:before, -.#{$fa-css-prefix}-taxi:before { content: $fa-var-taxi; } -.#{$fa-css-prefix}-tree:before { content: $fa-var-tree; } -.#{$fa-css-prefix}-spotify:before { content: $fa-var-spotify; } -.#{$fa-css-prefix}-deviantart:before { content: $fa-var-deviantart; } -.#{$fa-css-prefix}-soundcloud:before { content: $fa-var-soundcloud; } -.#{$fa-css-prefix}-database:before { content: $fa-var-database; } -.#{$fa-css-prefix}-file-pdf-o:before { content: $fa-var-file-pdf-o; } -.#{$fa-css-prefix}-file-word-o:before { content: $fa-var-file-word-o; } -.#{$fa-css-prefix}-file-excel-o:before { content: $fa-var-file-excel-o; } -.#{$fa-css-prefix}-file-powerpoint-o:before { content: $fa-var-file-powerpoint-o; } -.#{$fa-css-prefix}-file-photo-o:before, -.#{$fa-css-prefix}-file-picture-o:before, -.#{$fa-css-prefix}-file-image-o:before { content: $fa-var-file-image-o; } -.#{$fa-css-prefix}-file-zip-o:before, -.#{$fa-css-prefix}-file-archive-o:before { content: $fa-var-file-archive-o; } -.#{$fa-css-prefix}-file-sound-o:before, -.#{$fa-css-prefix}-file-audio-o:before { content: $fa-var-file-audio-o; } -.#{$fa-css-prefix}-file-movie-o:before, -.#{$fa-css-prefix}-file-video-o:before { content: $fa-var-file-video-o; } -.#{$fa-css-prefix}-file-code-o:before { content: $fa-var-file-code-o; } -.#{$fa-css-prefix}-vine:before { content: $fa-var-vine; } -.#{$fa-css-prefix}-codepen:before { content: $fa-var-codepen; } -.#{$fa-css-prefix}-jsfiddle:before { content: $fa-var-jsfiddle; } -.#{$fa-css-prefix}-life-bouy:before, -.#{$fa-css-prefix}-life-buoy:before, -.#{$fa-css-prefix}-life-saver:before, -.#{$fa-css-prefix}-support:before, -.#{$fa-css-prefix}-life-ring:before { content: $fa-var-life-ring; } -.#{$fa-css-prefix}-circle-o-notch:before { content: $fa-var-circle-o-notch; } -.#{$fa-css-prefix}-ra:before, -.#{$fa-css-prefix}-resistance:before, -.#{$fa-css-prefix}-rebel:before { content: $fa-var-rebel; } -.#{$fa-css-prefix}-ge:before, -.#{$fa-css-prefix}-empire:before { content: $fa-var-empire; } -.#{$fa-css-prefix}-git-square:before { content: $fa-var-git-square; } -.#{$fa-css-prefix}-git:before { content: $fa-var-git; } -.#{$fa-css-prefix}-y-combinator-square:before, -.#{$fa-css-prefix}-yc-square:before, -.#{$fa-css-prefix}-hacker-news:before { content: $fa-var-hacker-news; } -.#{$fa-css-prefix}-tencent-weibo:before { content: $fa-var-tencent-weibo; } -.#{$fa-css-prefix}-qq:before { content: $fa-var-qq; } -.#{$fa-css-prefix}-wechat:before, -.#{$fa-css-prefix}-weixin:before { content: $fa-var-weixin; } -.#{$fa-css-prefix}-send:before, -.#{$fa-css-prefix}-paper-plane:before { content: $fa-var-paper-plane; } -.#{$fa-css-prefix}-send-o:before, -.#{$fa-css-prefix}-paper-plane-o:before { content: $fa-var-paper-plane-o; } -.#{$fa-css-prefix}-history:before { content: $fa-var-history; } -.#{$fa-css-prefix}-circle-thin:before { content: $fa-var-circle-thin; } -.#{$fa-css-prefix}-header:before { content: $fa-var-header; } -.#{$fa-css-prefix}-paragraph:before { content: $fa-var-paragraph; } -.#{$fa-css-prefix}-sliders:before { content: $fa-var-sliders; } -.#{$fa-css-prefix}-share-alt:before { content: $fa-var-share-alt; } -.#{$fa-css-prefix}-share-alt-square:before { content: $fa-var-share-alt-square; } -.#{$fa-css-prefix}-bomb:before { content: $fa-var-bomb; } -.#{$fa-css-prefix}-soccer-ball-o:before, -.#{$fa-css-prefix}-futbol-o:before { content: $fa-var-futbol-o; } -.#{$fa-css-prefix}-tty:before { content: $fa-var-tty; } -.#{$fa-css-prefix}-binoculars:before { content: $fa-var-binoculars; } -.#{$fa-css-prefix}-plug:before { content: $fa-var-plug; } -.#{$fa-css-prefix}-slideshare:before { content: $fa-var-slideshare; } -.#{$fa-css-prefix}-twitch:before { content: $fa-var-twitch; } -.#{$fa-css-prefix}-yelp:before { content: $fa-var-yelp; } -.#{$fa-css-prefix}-newspaper-o:before { content: $fa-var-newspaper-o; } -.#{$fa-css-prefix}-wifi:before { content: $fa-var-wifi; } -.#{$fa-css-prefix}-calculator:before { content: $fa-var-calculator; } -.#{$fa-css-prefix}-paypal:before { content: $fa-var-paypal; } -.#{$fa-css-prefix}-google-wallet:before { content: $fa-var-google-wallet; } -.#{$fa-css-prefix}-cc-visa:before { content: $fa-var-cc-visa; } -.#{$fa-css-prefix}-cc-mastercard:before { content: $fa-var-cc-mastercard; } -.#{$fa-css-prefix}-cc-discover:before { content: $fa-var-cc-discover; } -.#{$fa-css-prefix}-cc-amex:before { content: $fa-var-cc-amex; } -.#{$fa-css-prefix}-cc-paypal:before { content: $fa-var-cc-paypal; } -.#{$fa-css-prefix}-cc-stripe:before { content: $fa-var-cc-stripe; } -.#{$fa-css-prefix}-bell-slash:before { content: $fa-var-bell-slash; } -.#{$fa-css-prefix}-bell-slash-o:before { content: $fa-var-bell-slash-o; } -.#{$fa-css-prefix}-trash:before { content: $fa-var-trash; } -.#{$fa-css-prefix}-copyright:before { content: $fa-var-copyright; } -.#{$fa-css-prefix}-at:before { content: $fa-var-at; } -.#{$fa-css-prefix}-eyedropper:before { content: $fa-var-eyedropper; } -.#{$fa-css-prefix}-paint-brush:before { content: $fa-var-paint-brush; } -.#{$fa-css-prefix}-birthday-cake:before { content: $fa-var-birthday-cake; } -.#{$fa-css-prefix}-area-chart:before { content: $fa-var-area-chart; } -.#{$fa-css-prefix}-pie-chart:before { content: $fa-var-pie-chart; } -.#{$fa-css-prefix}-line-chart:before { content: $fa-var-line-chart; } -.#{$fa-css-prefix}-lastfm:before { content: $fa-var-lastfm; } -.#{$fa-css-prefix}-lastfm-square:before { content: $fa-var-lastfm-square; } -.#{$fa-css-prefix}-toggle-off:before { content: $fa-var-toggle-off; } -.#{$fa-css-prefix}-toggle-on:before { content: $fa-var-toggle-on; } -.#{$fa-css-prefix}-bicycle:before { content: $fa-var-bicycle; } -.#{$fa-css-prefix}-bus:before { content: $fa-var-bus; } -.#{$fa-css-prefix}-ioxhost:before { content: $fa-var-ioxhost; } -.#{$fa-css-prefix}-angellist:before { content: $fa-var-angellist; } -.#{$fa-css-prefix}-cc:before { content: $fa-var-cc; } -.#{$fa-css-prefix}-shekel:before, -.#{$fa-css-prefix}-sheqel:before, -.#{$fa-css-prefix}-ils:before { content: $fa-var-ils; } -.#{$fa-css-prefix}-meanpath:before { content: $fa-var-meanpath; } -.#{$fa-css-prefix}-buysellads:before { content: $fa-var-buysellads; } -.#{$fa-css-prefix}-connectdevelop:before { content: $fa-var-connectdevelop; } -.#{$fa-css-prefix}-dashcube:before { content: $fa-var-dashcube; } -.#{$fa-css-prefix}-forumbee:before { content: $fa-var-forumbee; } -.#{$fa-css-prefix}-leanpub:before { content: $fa-var-leanpub; } -.#{$fa-css-prefix}-sellsy:before { content: $fa-var-sellsy; } -.#{$fa-css-prefix}-shirtsinbulk:before { content: $fa-var-shirtsinbulk; } -.#{$fa-css-prefix}-simplybuilt:before { content: $fa-var-simplybuilt; } -.#{$fa-css-prefix}-skyatlas:before { content: $fa-var-skyatlas; } -.#{$fa-css-prefix}-cart-plus:before { content: $fa-var-cart-plus; } -.#{$fa-css-prefix}-cart-arrow-down:before { content: $fa-var-cart-arrow-down; } -.#{$fa-css-prefix}-diamond:before { content: $fa-var-diamond; } -.#{$fa-css-prefix}-ship:before { content: $fa-var-ship; } -.#{$fa-css-prefix}-user-secret:before { content: $fa-var-user-secret; } -.#{$fa-css-prefix}-motorcycle:before { content: $fa-var-motorcycle; } -.#{$fa-css-prefix}-street-view:before { content: $fa-var-street-view; } -.#{$fa-css-prefix}-heartbeat:before { content: $fa-var-heartbeat; } -.#{$fa-css-prefix}-venus:before { content: $fa-var-venus; } -.#{$fa-css-prefix}-mars:before { content: $fa-var-mars; } -.#{$fa-css-prefix}-mercury:before { content: $fa-var-mercury; } -.#{$fa-css-prefix}-intersex:before, -.#{$fa-css-prefix}-transgender:before { content: $fa-var-transgender; } -.#{$fa-css-prefix}-transgender-alt:before { content: $fa-var-transgender-alt; } -.#{$fa-css-prefix}-venus-double:before { content: $fa-var-venus-double; } -.#{$fa-css-prefix}-mars-double:before { content: $fa-var-mars-double; } -.#{$fa-css-prefix}-venus-mars:before { content: $fa-var-venus-mars; } -.#{$fa-css-prefix}-mars-stroke:before { content: $fa-var-mars-stroke; } -.#{$fa-css-prefix}-mars-stroke-v:before { content: $fa-var-mars-stroke-v; } -.#{$fa-css-prefix}-mars-stroke-h:before { content: $fa-var-mars-stroke-h; } -.#{$fa-css-prefix}-neuter:before { content: $fa-var-neuter; } -.#{$fa-css-prefix}-genderless:before { content: $fa-var-genderless; } -.#{$fa-css-prefix}-facebook-official:before { content: $fa-var-facebook-official; } -.#{$fa-css-prefix}-pinterest-p:before { content: $fa-var-pinterest-p; } -.#{$fa-css-prefix}-whatsapp:before { content: $fa-var-whatsapp; } -.#{$fa-css-prefix}-server:before { content: $fa-var-server; } -.#{$fa-css-prefix}-user-plus:before { content: $fa-var-user-plus; } -.#{$fa-css-prefix}-user-times:before { content: $fa-var-user-times; } -.#{$fa-css-prefix}-hotel:before, -.#{$fa-css-prefix}-bed:before { content: $fa-var-bed; } -.#{$fa-css-prefix}-viacoin:before { content: $fa-var-viacoin; } -.#{$fa-css-prefix}-train:before { content: $fa-var-train; } -.#{$fa-css-prefix}-subway:before { content: $fa-var-subway; } -.#{$fa-css-prefix}-medium:before { content: $fa-var-medium; } -.#{$fa-css-prefix}-yc:before, -.#{$fa-css-prefix}-y-combinator:before { content: $fa-var-y-combinator; } -.#{$fa-css-prefix}-optin-monster:before { content: $fa-var-optin-monster; } -.#{$fa-css-prefix}-opencart:before { content: $fa-var-opencart; } -.#{$fa-css-prefix}-expeditedssl:before { content: $fa-var-expeditedssl; } -.#{$fa-css-prefix}-battery-4:before, -.#{$fa-css-prefix}-battery:before, -.#{$fa-css-prefix}-battery-full:before { content: $fa-var-battery-full; } -.#{$fa-css-prefix}-battery-3:before, -.#{$fa-css-prefix}-battery-three-quarters:before { content: $fa-var-battery-three-quarters; } -.#{$fa-css-prefix}-battery-2:before, -.#{$fa-css-prefix}-battery-half:before { content: $fa-var-battery-half; } -.#{$fa-css-prefix}-battery-1:before, -.#{$fa-css-prefix}-battery-quarter:before { content: $fa-var-battery-quarter; } -.#{$fa-css-prefix}-battery-0:before, -.#{$fa-css-prefix}-battery-empty:before { content: $fa-var-battery-empty; } -.#{$fa-css-prefix}-mouse-pointer:before { content: $fa-var-mouse-pointer; } -.#{$fa-css-prefix}-i-cursor:before { content: $fa-var-i-cursor; } -.#{$fa-css-prefix}-object-group:before { content: $fa-var-object-group; } -.#{$fa-css-prefix}-object-ungroup:before { content: $fa-var-object-ungroup; } -.#{$fa-css-prefix}-sticky-note:before { content: $fa-var-sticky-note; } -.#{$fa-css-prefix}-sticky-note-o:before { content: $fa-var-sticky-note-o; } -.#{$fa-css-prefix}-cc-jcb:before { content: $fa-var-cc-jcb; } -.#{$fa-css-prefix}-cc-diners-club:before { content: $fa-var-cc-diners-club; } -.#{$fa-css-prefix}-clone:before { content: $fa-var-clone; } -.#{$fa-css-prefix}-balance-scale:before { content: $fa-var-balance-scale; } -.#{$fa-css-prefix}-hourglass-o:before { content: $fa-var-hourglass-o; } -.#{$fa-css-prefix}-hourglass-1:before, -.#{$fa-css-prefix}-hourglass-start:before { content: $fa-var-hourglass-start; } -.#{$fa-css-prefix}-hourglass-2:before, -.#{$fa-css-prefix}-hourglass-half:before { content: $fa-var-hourglass-half; } -.#{$fa-css-prefix}-hourglass-3:before, -.#{$fa-css-prefix}-hourglass-end:before { content: $fa-var-hourglass-end; } -.#{$fa-css-prefix}-hourglass:before { content: $fa-var-hourglass; } -.#{$fa-css-prefix}-hand-grab-o:before, -.#{$fa-css-prefix}-hand-rock-o:before { content: $fa-var-hand-rock-o; } -.#{$fa-css-prefix}-hand-stop-o:before, -.#{$fa-css-prefix}-hand-paper-o:before { content: $fa-var-hand-paper-o; } -.#{$fa-css-prefix}-hand-scissors-o:before { content: $fa-var-hand-scissors-o; } -.#{$fa-css-prefix}-hand-lizard-o:before { content: $fa-var-hand-lizard-o; } -.#{$fa-css-prefix}-hand-spock-o:before { content: $fa-var-hand-spock-o; } -.#{$fa-css-prefix}-hand-pointer-o:before { content: $fa-var-hand-pointer-o; } -.#{$fa-css-prefix}-hand-peace-o:before { content: $fa-var-hand-peace-o; } -.#{$fa-css-prefix}-trademark:before { content: $fa-var-trademark; } -.#{$fa-css-prefix}-registered:before { content: $fa-var-registered; } -.#{$fa-css-prefix}-creative-commons:before { content: $fa-var-creative-commons; } -.#{$fa-css-prefix}-gg:before { content: $fa-var-gg; } -.#{$fa-css-prefix}-gg-circle:before { content: $fa-var-gg-circle; } -.#{$fa-css-prefix}-tripadvisor:before { content: $fa-var-tripadvisor; } -.#{$fa-css-prefix}-odnoklassniki:before { content: $fa-var-odnoklassniki; } -.#{$fa-css-prefix}-odnoklassniki-square:before { content: $fa-var-odnoklassniki-square; } -.#{$fa-css-prefix}-get-pocket:before { content: $fa-var-get-pocket; } -.#{$fa-css-prefix}-wikipedia-w:before { content: $fa-var-wikipedia-w; } -.#{$fa-css-prefix}-safari:before { content: $fa-var-safari; } -.#{$fa-css-prefix}-chrome:before { content: $fa-var-chrome; } -.#{$fa-css-prefix}-firefox:before { content: $fa-var-firefox; } -.#{$fa-css-prefix}-opera:before { content: $fa-var-opera; } -.#{$fa-css-prefix}-internet-explorer:before { content: $fa-var-internet-explorer; } -.#{$fa-css-prefix}-tv:before, -.#{$fa-css-prefix}-television:before { content: $fa-var-television; } -.#{$fa-css-prefix}-contao:before { content: $fa-var-contao; } -.#{$fa-css-prefix}-500px:before { content: $fa-var-500px; } -.#{$fa-css-prefix}-amazon:before { content: $fa-var-amazon; } -.#{$fa-css-prefix}-calendar-plus-o:before { content: $fa-var-calendar-plus-o; } -.#{$fa-css-prefix}-calendar-minus-o:before { content: $fa-var-calendar-minus-o; } -.#{$fa-css-prefix}-calendar-times-o:before { content: $fa-var-calendar-times-o; } -.#{$fa-css-prefix}-calendar-check-o:before { content: $fa-var-calendar-check-o; } -.#{$fa-css-prefix}-industry:before { content: $fa-var-industry; } -.#{$fa-css-prefix}-map-pin:before { content: $fa-var-map-pin; } -.#{$fa-css-prefix}-map-signs:before { content: $fa-var-map-signs; } -.#{$fa-css-prefix}-map-o:before { content: $fa-var-map-o; } -.#{$fa-css-prefix}-map:before { content: $fa-var-map; } -.#{$fa-css-prefix}-commenting:before { content: $fa-var-commenting; } -.#{$fa-css-prefix}-commenting-o:before { content: $fa-var-commenting-o; } -.#{$fa-css-prefix}-houzz:before { content: $fa-var-houzz; } -.#{$fa-css-prefix}-vimeo:before { content: $fa-var-vimeo; } -.#{$fa-css-prefix}-black-tie:before { content: $fa-var-black-tie; } -.#{$fa-css-prefix}-fonticons:before { content: $fa-var-fonticons; } -.#{$fa-css-prefix}-reddit-alien:before { content: $fa-var-reddit-alien; } -.#{$fa-css-prefix}-edge:before { content: $fa-var-edge; } -.#{$fa-css-prefix}-credit-card-alt:before { content: $fa-var-credit-card-alt; } -.#{$fa-css-prefix}-codiepie:before { content: $fa-var-codiepie; } -.#{$fa-css-prefix}-modx:before { content: $fa-var-modx; } -.#{$fa-css-prefix}-fort-awesome:before { content: $fa-var-fort-awesome; } -.#{$fa-css-prefix}-usb:before { content: $fa-var-usb; } -.#{$fa-css-prefix}-product-hunt:before { content: $fa-var-product-hunt; } -.#{$fa-css-prefix}-mixcloud:before { content: $fa-var-mixcloud; } -.#{$fa-css-prefix}-scribd:before { content: $fa-var-scribd; } -.#{$fa-css-prefix}-pause-circle:before { content: $fa-var-pause-circle; } -.#{$fa-css-prefix}-pause-circle-o:before { content: $fa-var-pause-circle-o; } -.#{$fa-css-prefix}-stop-circle:before { content: $fa-var-stop-circle; } -.#{$fa-css-prefix}-stop-circle-o:before { content: $fa-var-stop-circle-o; } -.#{$fa-css-prefix}-shopping-bag:before { content: $fa-var-shopping-bag; } -.#{$fa-css-prefix}-shopping-basket:before { content: $fa-var-shopping-basket; } -.#{$fa-css-prefix}-hashtag:before { content: $fa-var-hashtag; } -.#{$fa-css-prefix}-bluetooth:before { content: $fa-var-bluetooth; } -.#{$fa-css-prefix}-bluetooth-b:before { content: $fa-var-bluetooth-b; } -.#{$fa-css-prefix}-percent:before { content: $fa-var-percent; } -.#{$fa-css-prefix}-gitlab:before { content: $fa-var-gitlab; } -.#{$fa-css-prefix}-wpbeginner:before { content: $fa-var-wpbeginner; } -.#{$fa-css-prefix}-wpforms:before { content: $fa-var-wpforms; } -.#{$fa-css-prefix}-envira:before { content: $fa-var-envira; } -.#{$fa-css-prefix}-universal-access:before { content: $fa-var-universal-access; } -.#{$fa-css-prefix}-wheelchair-alt:before { content: $fa-var-wheelchair-alt; } -.#{$fa-css-prefix}-question-circle-o:before { content: $fa-var-question-circle-o; } -.#{$fa-css-prefix}-blind:before { content: $fa-var-blind; } -.#{$fa-css-prefix}-audio-description:before { content: $fa-var-audio-description; } -.#{$fa-css-prefix}-volume-control-phone:before { content: $fa-var-volume-control-phone; } -.#{$fa-css-prefix}-braille:before { content: $fa-var-braille; } -.#{$fa-css-prefix}-assistive-listening-systems:before { content: $fa-var-assistive-listening-systems; } -.#{$fa-css-prefix}-asl-interpreting:before, -.#{$fa-css-prefix}-american-sign-language-interpreting:before { content: $fa-var-american-sign-language-interpreting; } -.#{$fa-css-prefix}-deafness:before, -.#{$fa-css-prefix}-hard-of-hearing:before, -.#{$fa-css-prefix}-deaf:before { content: $fa-var-deaf; } -.#{$fa-css-prefix}-glide:before { content: $fa-var-glide; } -.#{$fa-css-prefix}-glide-g:before { content: $fa-var-glide-g; } -.#{$fa-css-prefix}-signing:before, -.#{$fa-css-prefix}-sign-language:before { content: $fa-var-sign-language; } -.#{$fa-css-prefix}-low-vision:before { content: $fa-var-low-vision; } -.#{$fa-css-prefix}-viadeo:before { content: $fa-var-viadeo; } -.#{$fa-css-prefix}-viadeo-square:before { content: $fa-var-viadeo-square; } -.#{$fa-css-prefix}-snapchat:before { content: $fa-var-snapchat; } -.#{$fa-css-prefix}-snapchat-ghost:before { content: $fa-var-snapchat-ghost; } -.#{$fa-css-prefix}-snapchat-square:before { content: $fa-var-snapchat-square; } -.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; } -.#{$fa-css-prefix}-first-order:before { content: $fa-var-first-order; } -.#{$fa-css-prefix}-yoast:before { content: $fa-var-yoast; } -.#{$fa-css-prefix}-themeisle:before { content: $fa-var-themeisle; } -.#{$fa-css-prefix}-google-plus-circle:before, -.#{$fa-css-prefix}-google-plus-official:before { content: $fa-var-google-plus-official; } -.#{$fa-css-prefix}-fa:before, -.#{$fa-css-prefix}-font-awesome:before { content: $fa-var-font-awesome; } -.#{$fa-css-prefix}-handshake-o:before { content: $fa-var-handshake-o; } -.#{$fa-css-prefix}-envelope-open:before { content: $fa-var-envelope-open; } -.#{$fa-css-prefix}-envelope-open-o:before { content: $fa-var-envelope-open-o; } -.#{$fa-css-prefix}-linode:before { content: $fa-var-linode; } -.#{$fa-css-prefix}-address-book:before { content: $fa-var-address-book; } -.#{$fa-css-prefix}-address-book-o:before { content: $fa-var-address-book-o; } -.#{$fa-css-prefix}-vcard:before, -.#{$fa-css-prefix}-address-card:before { content: $fa-var-address-card; } -.#{$fa-css-prefix}-vcard-o:before, -.#{$fa-css-prefix}-address-card-o:before { content: $fa-var-address-card-o; } -.#{$fa-css-prefix}-user-circle:before { content: $fa-var-user-circle; } -.#{$fa-css-prefix}-user-circle-o:before { content: $fa-var-user-circle-o; } -.#{$fa-css-prefix}-user-o:before { content: $fa-var-user-o; } -.#{$fa-css-prefix}-id-badge:before { content: $fa-var-id-badge; } -.#{$fa-css-prefix}-drivers-license:before, -.#{$fa-css-prefix}-id-card:before { content: $fa-var-id-card; } -.#{$fa-css-prefix}-drivers-license-o:before, -.#{$fa-css-prefix}-id-card-o:before { content: $fa-var-id-card-o; } -.#{$fa-css-prefix}-quora:before { content: $fa-var-quora; } -.#{$fa-css-prefix}-free-code-camp:before { content: $fa-var-free-code-camp; } -.#{$fa-css-prefix}-telegram:before { content: $fa-var-telegram; } -.#{$fa-css-prefix}-thermometer-4:before, -.#{$fa-css-prefix}-thermometer:before, -.#{$fa-css-prefix}-thermometer-full:before { content: $fa-var-thermometer-full; } -.#{$fa-css-prefix}-thermometer-3:before, -.#{$fa-css-prefix}-thermometer-three-quarters:before { content: $fa-var-thermometer-three-quarters; } -.#{$fa-css-prefix}-thermometer-2:before, -.#{$fa-css-prefix}-thermometer-half:before { content: $fa-var-thermometer-half; } -.#{$fa-css-prefix}-thermometer-1:before, -.#{$fa-css-prefix}-thermometer-quarter:before { content: $fa-var-thermometer-quarter; } -.#{$fa-css-prefix}-thermometer-0:before, -.#{$fa-css-prefix}-thermometer-empty:before { content: $fa-var-thermometer-empty; } -.#{$fa-css-prefix}-shower:before { content: $fa-var-shower; } -.#{$fa-css-prefix}-bathtub:before, -.#{$fa-css-prefix}-s15:before, -.#{$fa-css-prefix}-bath:before { content: $fa-var-bath; } -.#{$fa-css-prefix}-podcast:before { content: $fa-var-podcast; } -.#{$fa-css-prefix}-window-maximize:before { content: $fa-var-window-maximize; } -.#{$fa-css-prefix}-window-minimize:before { content: $fa-var-window-minimize; } -.#{$fa-css-prefix}-window-restore:before { content: $fa-var-window-restore; } -.#{$fa-css-prefix}-times-rectangle:before, -.#{$fa-css-prefix}-window-close:before { content: $fa-var-window-close; } -.#{$fa-css-prefix}-times-rectangle-o:before, -.#{$fa-css-prefix}-window-close-o:before { content: $fa-var-window-close-o; } -.#{$fa-css-prefix}-bandcamp:before { content: $fa-var-bandcamp; } -.#{$fa-css-prefix}-grav:before { content: $fa-var-grav; } -.#{$fa-css-prefix}-etsy:before { content: $fa-var-etsy; } -.#{$fa-css-prefix}-imdb:before { content: $fa-var-imdb; } -.#{$fa-css-prefix}-ravelry:before { content: $fa-var-ravelry; } -.#{$fa-css-prefix}-eercast:before { content: $fa-var-eercast; } -.#{$fa-css-prefix}-microchip:before { content: $fa-var-microchip; } -.#{$fa-css-prefix}-snowflake-o:before { content: $fa-var-snowflake-o; } -.#{$fa-css-prefix}-superpowers:before { content: $fa-var-superpowers; } -.#{$fa-css-prefix}-wpexplorer:before { content: $fa-var-wpexplorer; } -.#{$fa-css-prefix}-meetup:before { content: $fa-var-meetup; } diff --git a/library/font_awesome/scss/_larger.scss b/library/font_awesome/scss/_larger.scss deleted file mode 100644 index 41e9a8184..000000000 --- a/library/font_awesome/scss/_larger.scss +++ /dev/null @@ -1,13 +0,0 @@ -// Icon Sizes -// ------------------------- - -/* makes the font 33% larger relative to the icon container */ -.#{$fa-css-prefix}-lg { - font-size: (4em / 3); - line-height: (3em / 4); - vertical-align: -15%; -} -.#{$fa-css-prefix}-2x { font-size: 2em; } -.#{$fa-css-prefix}-3x { font-size: 3em; } -.#{$fa-css-prefix}-4x { font-size: 4em; } -.#{$fa-css-prefix}-5x { font-size: 5em; } diff --git a/library/font_awesome/scss/_list.scss b/library/font_awesome/scss/_list.scss deleted file mode 100644 index 7d1e4d54d..000000000 --- a/library/font_awesome/scss/_list.scss +++ /dev/null @@ -1,19 +0,0 @@ -// List Icons -// ------------------------- - -.#{$fa-css-prefix}-ul { - padding-left: 0; - margin-left: $fa-li-width; - list-style-type: none; - > li { position: relative; } -} -.#{$fa-css-prefix}-li { - position: absolute; - left: -$fa-li-width; - width: $fa-li-width; - top: (2em / 14); - text-align: center; - &.#{$fa-css-prefix}-lg { - left: -$fa-li-width + (4em / 14); - } -} diff --git a/library/font_awesome/scss/_mixins.scss b/library/font_awesome/scss/_mixins.scss deleted file mode 100644 index c3bbd5745..000000000 --- a/library/font_awesome/scss/_mixins.scss +++ /dev/null @@ -1,60 +0,0 @@ -// Mixins -// -------------------------- - -@mixin fa-icon() { - display: inline-block; - font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration - font-size: inherit; // can't have font-size inherit on line above, so need to override - text-rendering: auto; // optimizelegibility throws things off #1094 - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -} - -@mixin fa-icon-rotate($degrees, $rotation) { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; - -webkit-transform: rotate($degrees); - -ms-transform: rotate($degrees); - transform: rotate($degrees); -} - -@mixin fa-icon-flip($horiz, $vert, $rotation) { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; - -webkit-transform: scale($horiz, $vert); - -ms-transform: scale($horiz, $vert); - transform: scale($horiz, $vert); -} - - -// Only display content to screen readers. A la Bootstrap 4. -// -// See: http://a11yproject.com/posts/how-to-hide-content/ - -@mixin sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0,0,0,0); - border: 0; -} - -// Use in conjunction with .sr-only to only display content when it's focused. -// -// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 -// -// Credit: HTML5 Boilerplate - -@mixin sr-only-focusable { - &:active, - &:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; - } -} diff --git a/library/font_awesome/scss/_path.scss b/library/font_awesome/scss/_path.scss deleted file mode 100644 index bb457c23a..000000000 --- a/library/font_awesome/scss/_path.scss +++ /dev/null @@ -1,15 +0,0 @@ -/* FONT PATH - * -------------------------- */ - -@font-face { - font-family: 'FontAwesome'; - src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); - src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), - url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), - url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), - url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), - url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); -// src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts - font-weight: normal; - font-style: normal; -} diff --git a/library/font_awesome/scss/_rotated-flipped.scss b/library/font_awesome/scss/_rotated-flipped.scss deleted file mode 100644 index a3558fd09..000000000 --- a/library/font_awesome/scss/_rotated-flipped.scss +++ /dev/null @@ -1,20 +0,0 @@ -// Rotated & Flipped Icons -// ------------------------- - -.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } -.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } -.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } - -.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } -.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } - -// Hook for IE8-9 -// ------------------------- - -:root .#{$fa-css-prefix}-rotate-90, -:root .#{$fa-css-prefix}-rotate-180, -:root .#{$fa-css-prefix}-rotate-270, -:root .#{$fa-css-prefix}-flip-horizontal, -:root .#{$fa-css-prefix}-flip-vertical { - filter: none; -} diff --git a/library/font_awesome/scss/_screen-reader.scss b/library/font_awesome/scss/_screen-reader.scss deleted file mode 100644 index 637426f0d..000000000 --- a/library/font_awesome/scss/_screen-reader.scss +++ /dev/null @@ -1,5 +0,0 @@ -// Screen Readers -// ------------------------- - -.sr-only { @include sr-only(); } -.sr-only-focusable { @include sr-only-focusable(); } diff --git a/library/font_awesome/scss/_stacked.scss b/library/font_awesome/scss/_stacked.scss deleted file mode 100644 index aef740366..000000000 --- a/library/font_awesome/scss/_stacked.scss +++ /dev/null @@ -1,20 +0,0 @@ -// Stacked Icons -// ------------------------- - -.#{$fa-css-prefix}-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle; -} -.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center; -} -.#{$fa-css-prefix}-stack-1x { line-height: inherit; } -.#{$fa-css-prefix}-stack-2x { font-size: 2em; } -.#{$fa-css-prefix}-inverse { color: $fa-inverse; } diff --git a/library/font_awesome/scss/_variables.scss b/library/font_awesome/scss/_variables.scss deleted file mode 100644 index 498fc4a08..000000000 --- a/library/font_awesome/scss/_variables.scss +++ /dev/null @@ -1,800 +0,0 @@ -// Variables -// -------------------------- - -$fa-font-path: "../fonts" !default; -$fa-font-size-base: 14px !default; -$fa-line-height-base: 1 !default; -//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts" !default; // for referencing Bootstrap CDN font files directly -$fa-css-prefix: fa !default; -$fa-version: "4.7.0" !default; -$fa-border-color: #eee !default; -$fa-inverse: #fff !default; -$fa-li-width: (30em / 14) !default; - -$fa-var-500px: "\f26e"; -$fa-var-address-book: "\f2b9"; -$fa-var-address-book-o: "\f2ba"; -$fa-var-address-card: "\f2bb"; -$fa-var-address-card-o: "\f2bc"; -$fa-var-adjust: "\f042"; -$fa-var-adn: "\f170"; -$fa-var-align-center: "\f037"; -$fa-var-align-justify: "\f039"; -$fa-var-align-left: "\f036"; -$fa-var-align-right: "\f038"; -$fa-var-amazon: "\f270"; -$fa-var-ambulance: "\f0f9"; -$fa-var-american-sign-language-interpreting: "\f2a3"; -$fa-var-anchor: "\f13d"; -$fa-var-android: "\f17b"; -$fa-var-angellist: "\f209"; -$fa-var-angle-double-down: "\f103"; -$fa-var-angle-double-left: "\f100"; -$fa-var-angle-double-right: "\f101"; -$fa-var-angle-double-up: "\f102"; -$fa-var-angle-down: "\f107"; -$fa-var-angle-left: "\f104"; -$fa-var-angle-right: "\f105"; -$fa-var-angle-up: "\f106"; -$fa-var-apple: "\f179"; -$fa-var-archive: "\f187"; -$fa-var-area-chart: "\f1fe"; -$fa-var-arrow-circle-down: "\f0ab"; -$fa-var-arrow-circle-left: "\f0a8"; -$fa-var-arrow-circle-o-down: "\f01a"; -$fa-var-arrow-circle-o-left: "\f190"; -$fa-var-arrow-circle-o-right: "\f18e"; -$fa-var-arrow-circle-o-up: "\f01b"; -$fa-var-arrow-circle-right: "\f0a9"; -$fa-var-arrow-circle-up: "\f0aa"; -$fa-var-arrow-down: "\f063"; -$fa-var-arrow-left: "\f060"; -$fa-var-arrow-right: "\f061"; -$fa-var-arrow-up: "\f062"; -$fa-var-arrows: "\f047"; -$fa-var-arrows-alt: "\f0b2"; -$fa-var-arrows-h: "\f07e"; -$fa-var-arrows-v: "\f07d"; -$fa-var-asl-interpreting: "\f2a3"; -$fa-var-assistive-listening-systems: "\f2a2"; -$fa-var-asterisk: "\f069"; -$fa-var-at: "\f1fa"; -$fa-var-audio-description: "\f29e"; -$fa-var-automobile: "\f1b9"; -$fa-var-backward: "\f04a"; -$fa-var-balance-scale: "\f24e"; -$fa-var-ban: "\f05e"; -$fa-var-bandcamp: "\f2d5"; -$fa-var-bank: "\f19c"; -$fa-var-bar-chart: "\f080"; -$fa-var-bar-chart-o: "\f080"; -$fa-var-barcode: "\f02a"; -$fa-var-bars: "\f0c9"; -$fa-var-bath: "\f2cd"; -$fa-var-bathtub: "\f2cd"; -$fa-var-battery: "\f240"; -$fa-var-battery-0: "\f244"; -$fa-var-battery-1: "\f243"; -$fa-var-battery-2: "\f242"; -$fa-var-battery-3: "\f241"; -$fa-var-battery-4: "\f240"; -$fa-var-battery-empty: "\f244"; -$fa-var-battery-full: "\f240"; -$fa-var-battery-half: "\f242"; -$fa-var-battery-quarter: "\f243"; -$fa-var-battery-three-quarters: "\f241"; -$fa-var-bed: "\f236"; -$fa-var-beer: "\f0fc"; -$fa-var-behance: "\f1b4"; -$fa-var-behance-square: "\f1b5"; -$fa-var-bell: "\f0f3"; -$fa-var-bell-o: "\f0a2"; -$fa-var-bell-slash: "\f1f6"; -$fa-var-bell-slash-o: "\f1f7"; -$fa-var-bicycle: "\f206"; -$fa-var-binoculars: "\f1e5"; -$fa-var-birthday-cake: "\f1fd"; -$fa-var-bitbucket: "\f171"; -$fa-var-bitbucket-square: "\f172"; -$fa-var-bitcoin: "\f15a"; -$fa-var-black-tie: "\f27e"; -$fa-var-blind: "\f29d"; -$fa-var-bluetooth: "\f293"; -$fa-var-bluetooth-b: "\f294"; -$fa-var-bold: "\f032"; -$fa-var-bolt: "\f0e7"; -$fa-var-bomb: "\f1e2"; -$fa-var-book: "\f02d"; -$fa-var-bookmark: "\f02e"; -$fa-var-bookmark-o: "\f097"; -$fa-var-braille: "\f2a1"; -$fa-var-briefcase: "\f0b1"; -$fa-var-btc: "\f15a"; -$fa-var-bug: "\f188"; -$fa-var-building: "\f1ad"; -$fa-var-building-o: "\f0f7"; -$fa-var-bullhorn: "\f0a1"; -$fa-var-bullseye: "\f140"; -$fa-var-bus: "\f207"; -$fa-var-buysellads: "\f20d"; -$fa-var-cab: "\f1ba"; -$fa-var-calculator: "\f1ec"; -$fa-var-calendar: "\f073"; -$fa-var-calendar-check-o: "\f274"; -$fa-var-calendar-minus-o: "\f272"; -$fa-var-calendar-o: "\f133"; -$fa-var-calendar-plus-o: "\f271"; -$fa-var-calendar-times-o: "\f273"; -$fa-var-camera: "\f030"; -$fa-var-camera-retro: "\f083"; -$fa-var-car: "\f1b9"; -$fa-var-caret-down: "\f0d7"; -$fa-var-caret-left: "\f0d9"; -$fa-var-caret-right: "\f0da"; -$fa-var-caret-square-o-down: "\f150"; -$fa-var-caret-square-o-left: "\f191"; -$fa-var-caret-square-o-right: "\f152"; -$fa-var-caret-square-o-up: "\f151"; -$fa-var-caret-up: "\f0d8"; -$fa-var-cart-arrow-down: "\f218"; -$fa-var-cart-plus: "\f217"; -$fa-var-cc: "\f20a"; -$fa-var-cc-amex: "\f1f3"; -$fa-var-cc-diners-club: "\f24c"; -$fa-var-cc-discover: "\f1f2"; -$fa-var-cc-jcb: "\f24b"; -$fa-var-cc-mastercard: "\f1f1"; -$fa-var-cc-paypal: "\f1f4"; -$fa-var-cc-stripe: "\f1f5"; -$fa-var-cc-visa: "\f1f0"; -$fa-var-certificate: "\f0a3"; -$fa-var-chain: "\f0c1"; -$fa-var-chain-broken: "\f127"; -$fa-var-check: "\f00c"; -$fa-var-check-circle: "\f058"; -$fa-var-check-circle-o: "\f05d"; -$fa-var-check-square: "\f14a"; -$fa-var-check-square-o: "\f046"; -$fa-var-chevron-circle-down: "\f13a"; -$fa-var-chevron-circle-left: "\f137"; -$fa-var-chevron-circle-right: "\f138"; -$fa-var-chevron-circle-up: "\f139"; -$fa-var-chevron-down: "\f078"; -$fa-var-chevron-left: "\f053"; -$fa-var-chevron-right: "\f054"; -$fa-var-chevron-up: "\f077"; -$fa-var-child: "\f1ae"; -$fa-var-chrome: "\f268"; -$fa-var-circle: "\f111"; -$fa-var-circle-o: "\f10c"; -$fa-var-circle-o-notch: "\f1ce"; -$fa-var-circle-thin: "\f1db"; -$fa-var-clipboard: "\f0ea"; -$fa-var-clock-o: "\f017"; -$fa-var-clone: "\f24d"; -$fa-var-close: "\f00d"; -$fa-var-cloud: "\f0c2"; -$fa-var-cloud-download: "\f0ed"; -$fa-var-cloud-upload: "\f0ee"; -$fa-var-cny: "\f157"; -$fa-var-code: "\f121"; -$fa-var-code-fork: "\f126"; -$fa-var-codepen: "\f1cb"; -$fa-var-codiepie: "\f284"; -$fa-var-coffee: "\f0f4"; -$fa-var-cog: "\f013"; -$fa-var-cogs: "\f085"; -$fa-var-columns: "\f0db"; -$fa-var-comment: "\f075"; -$fa-var-comment-o: "\f0e5"; -$fa-var-commenting: "\f27a"; -$fa-var-commenting-o: "\f27b"; -$fa-var-comments: "\f086"; -$fa-var-comments-o: "\f0e6"; -$fa-var-compass: "\f14e"; -$fa-var-compress: "\f066"; -$fa-var-connectdevelop: "\f20e"; -$fa-var-contao: "\f26d"; -$fa-var-copy: "\f0c5"; -$fa-var-copyright: "\f1f9"; -$fa-var-creative-commons: "\f25e"; -$fa-var-credit-card: "\f09d"; -$fa-var-credit-card-alt: "\f283"; -$fa-var-crop: "\f125"; -$fa-var-crosshairs: "\f05b"; -$fa-var-css3: "\f13c"; -$fa-var-cube: "\f1b2"; -$fa-var-cubes: "\f1b3"; -$fa-var-cut: "\f0c4"; -$fa-var-cutlery: "\f0f5"; -$fa-var-dashboard: "\f0e4"; -$fa-var-dashcube: "\f210"; -$fa-var-database: "\f1c0"; -$fa-var-deaf: "\f2a4"; -$fa-var-deafness: "\f2a4"; -$fa-var-dedent: "\f03b"; -$fa-var-delicious: "\f1a5"; -$fa-var-desktop: "\f108"; -$fa-var-deviantart: "\f1bd"; -$fa-var-diamond: "\f219"; -$fa-var-digg: "\f1a6"; -$fa-var-dollar: "\f155"; -$fa-var-dot-circle-o: "\f192"; -$fa-var-download: "\f019"; -$fa-var-dribbble: "\f17d"; -$fa-var-drivers-license: "\f2c2"; -$fa-var-drivers-license-o: "\f2c3"; -$fa-var-dropbox: "\f16b"; -$fa-var-drupal: "\f1a9"; -$fa-var-edge: "\f282"; -$fa-var-edit: "\f044"; -$fa-var-eercast: "\f2da"; -$fa-var-eject: "\f052"; -$fa-var-ellipsis-h: "\f141"; -$fa-var-ellipsis-v: "\f142"; -$fa-var-empire: "\f1d1"; -$fa-var-envelope: "\f0e0"; -$fa-var-envelope-o: "\f003"; -$fa-var-envelope-open: "\f2b6"; -$fa-var-envelope-open-o: "\f2b7"; -$fa-var-envelope-square: "\f199"; -$fa-var-envira: "\f299"; -$fa-var-eraser: "\f12d"; -$fa-var-etsy: "\f2d7"; -$fa-var-eur: "\f153"; -$fa-var-euro: "\f153"; -$fa-var-exchange: "\f0ec"; -$fa-var-exclamation: "\f12a"; -$fa-var-exclamation-circle: "\f06a"; -$fa-var-exclamation-triangle: "\f071"; -$fa-var-expand: "\f065"; -$fa-var-expeditedssl: "\f23e"; -$fa-var-external-link: "\f08e"; -$fa-var-external-link-square: "\f14c"; -$fa-var-eye: "\f06e"; -$fa-var-eye-slash: "\f070"; -$fa-var-eyedropper: "\f1fb"; -$fa-var-fa: "\f2b4"; -$fa-var-facebook: "\f09a"; -$fa-var-facebook-f: "\f09a"; -$fa-var-facebook-official: "\f230"; -$fa-var-facebook-square: "\f082"; -$fa-var-fast-backward: "\f049"; -$fa-var-fast-forward: "\f050"; -$fa-var-fax: "\f1ac"; -$fa-var-feed: "\f09e"; -$fa-var-female: "\f182"; -$fa-var-fighter-jet: "\f0fb"; -$fa-var-file: "\f15b"; -$fa-var-file-archive-o: "\f1c6"; -$fa-var-file-audio-o: "\f1c7"; -$fa-var-file-code-o: "\f1c9"; -$fa-var-file-excel-o: "\f1c3"; -$fa-var-file-image-o: "\f1c5"; -$fa-var-file-movie-o: "\f1c8"; -$fa-var-file-o: "\f016"; -$fa-var-file-pdf-o: "\f1c1"; -$fa-var-file-photo-o: "\f1c5"; -$fa-var-file-picture-o: "\f1c5"; -$fa-var-file-powerpoint-o: "\f1c4"; -$fa-var-file-sound-o: "\f1c7"; -$fa-var-file-text: "\f15c"; -$fa-var-file-text-o: "\f0f6"; -$fa-var-file-video-o: "\f1c8"; -$fa-var-file-word-o: "\f1c2"; -$fa-var-file-zip-o: "\f1c6"; -$fa-var-files-o: "\f0c5"; -$fa-var-film: "\f008"; -$fa-var-filter: "\f0b0"; -$fa-var-fire: "\f06d"; -$fa-var-fire-extinguisher: "\f134"; -$fa-var-firefox: "\f269"; -$fa-var-first-order: "\f2b0"; -$fa-var-flag: "\f024"; -$fa-var-flag-checkered: "\f11e"; -$fa-var-flag-o: "\f11d"; -$fa-var-flash: "\f0e7"; -$fa-var-flask: "\f0c3"; -$fa-var-flickr: "\f16e"; -$fa-var-floppy-o: "\f0c7"; -$fa-var-folder: "\f07b"; -$fa-var-folder-o: "\f114"; -$fa-var-folder-open: "\f07c"; -$fa-var-folder-open-o: "\f115"; -$fa-var-font: "\f031"; -$fa-var-font-awesome: "\f2b4"; -$fa-var-fonticons: "\f280"; -$fa-var-fort-awesome: "\f286"; -$fa-var-forumbee: "\f211"; -$fa-var-forward: "\f04e"; -$fa-var-foursquare: "\f180"; -$fa-var-free-code-camp: "\f2c5"; -$fa-var-frown-o: "\f119"; -$fa-var-futbol-o: "\f1e3"; -$fa-var-gamepad: "\f11b"; -$fa-var-gavel: "\f0e3"; -$fa-var-gbp: "\f154"; -$fa-var-ge: "\f1d1"; -$fa-var-gear: "\f013"; -$fa-var-gears: "\f085"; -$fa-var-genderless: "\f22d"; -$fa-var-get-pocket: "\f265"; -$fa-var-gg: "\f260"; -$fa-var-gg-circle: "\f261"; -$fa-var-gift: "\f06b"; -$fa-var-git: "\f1d3"; -$fa-var-git-square: "\f1d2"; -$fa-var-github: "\f09b"; -$fa-var-github-alt: "\f113"; -$fa-var-github-square: "\f092"; -$fa-var-gitlab: "\f296"; -$fa-var-gittip: "\f184"; -$fa-var-glass: "\f000"; -$fa-var-glide: "\f2a5"; -$fa-var-glide-g: "\f2a6"; -$fa-var-globe: "\f0ac"; -$fa-var-google: "\f1a0"; -$fa-var-google-plus: "\f0d5"; -$fa-var-google-plus-circle: "\f2b3"; -$fa-var-google-plus-official: "\f2b3"; -$fa-var-google-plus-square: "\f0d4"; -$fa-var-google-wallet: "\f1ee"; -$fa-var-graduation-cap: "\f19d"; -$fa-var-gratipay: "\f184"; -$fa-var-grav: "\f2d6"; -$fa-var-group: "\f0c0"; -$fa-var-h-square: "\f0fd"; -$fa-var-hacker-news: "\f1d4"; -$fa-var-hand-grab-o: "\f255"; -$fa-var-hand-lizard-o: "\f258"; -$fa-var-hand-o-down: "\f0a7"; -$fa-var-hand-o-left: "\f0a5"; -$fa-var-hand-o-right: "\f0a4"; -$fa-var-hand-o-up: "\f0a6"; -$fa-var-hand-paper-o: "\f256"; -$fa-var-hand-peace-o: "\f25b"; -$fa-var-hand-pointer-o: "\f25a"; -$fa-var-hand-rock-o: "\f255"; -$fa-var-hand-scissors-o: "\f257"; -$fa-var-hand-spock-o: "\f259"; -$fa-var-hand-stop-o: "\f256"; -$fa-var-handshake-o: "\f2b5"; -$fa-var-hard-of-hearing: "\f2a4"; -$fa-var-hashtag: "\f292"; -$fa-var-hdd-o: "\f0a0"; -$fa-var-header: "\f1dc"; -$fa-var-headphones: "\f025"; -$fa-var-heart: "\f004"; -$fa-var-heart-o: "\f08a"; -$fa-var-heartbeat: "\f21e"; -$fa-var-history: "\f1da"; -$fa-var-home: "\f015"; -$fa-var-hospital-o: "\f0f8"; -$fa-var-hotel: "\f236"; -$fa-var-hourglass: "\f254"; -$fa-var-hourglass-1: "\f251"; -$fa-var-hourglass-2: "\f252"; -$fa-var-hourglass-3: "\f253"; -$fa-var-hourglass-end: "\f253"; -$fa-var-hourglass-half: "\f252"; -$fa-var-hourglass-o: "\f250"; -$fa-var-hourglass-start: "\f251"; -$fa-var-houzz: "\f27c"; -$fa-var-html5: "\f13b"; -$fa-var-i-cursor: "\f246"; -$fa-var-id-badge: "\f2c1"; -$fa-var-id-card: "\f2c2"; -$fa-var-id-card-o: "\f2c3"; -$fa-var-ils: "\f20b"; -$fa-var-image: "\f03e"; -$fa-var-imdb: "\f2d8"; -$fa-var-inbox: "\f01c"; -$fa-var-indent: "\f03c"; -$fa-var-industry: "\f275"; -$fa-var-info: "\f129"; -$fa-var-info-circle: "\f05a"; -$fa-var-inr: "\f156"; -$fa-var-instagram: "\f16d"; -$fa-var-institution: "\f19c"; -$fa-var-internet-explorer: "\f26b"; -$fa-var-intersex: "\f224"; -$fa-var-ioxhost: "\f208"; -$fa-var-italic: "\f033"; -$fa-var-joomla: "\f1aa"; -$fa-var-jpy: "\f157"; -$fa-var-jsfiddle: "\f1cc"; -$fa-var-key: "\f084"; -$fa-var-keyboard-o: "\f11c"; -$fa-var-krw: "\f159"; -$fa-var-language: "\f1ab"; -$fa-var-laptop: "\f109"; -$fa-var-lastfm: "\f202"; -$fa-var-lastfm-square: "\f203"; -$fa-var-leaf: "\f06c"; -$fa-var-leanpub: "\f212"; -$fa-var-legal: "\f0e3"; -$fa-var-lemon-o: "\f094"; -$fa-var-level-down: "\f149"; -$fa-var-level-up: "\f148"; -$fa-var-life-bouy: "\f1cd"; -$fa-var-life-buoy: "\f1cd"; -$fa-var-life-ring: "\f1cd"; -$fa-var-life-saver: "\f1cd"; -$fa-var-lightbulb-o: "\f0eb"; -$fa-var-line-chart: "\f201"; -$fa-var-link: "\f0c1"; -$fa-var-linkedin: "\f0e1"; -$fa-var-linkedin-square: "\f08c"; -$fa-var-linode: "\f2b8"; -$fa-var-linux: "\f17c"; -$fa-var-list: "\f03a"; -$fa-var-list-alt: "\f022"; -$fa-var-list-ol: "\f0cb"; -$fa-var-list-ul: "\f0ca"; -$fa-var-location-arrow: "\f124"; -$fa-var-lock: "\f023"; -$fa-var-long-arrow-down: "\f175"; -$fa-var-long-arrow-left: "\f177"; -$fa-var-long-arrow-right: "\f178"; -$fa-var-long-arrow-up: "\f176"; -$fa-var-low-vision: "\f2a8"; -$fa-var-magic: "\f0d0"; -$fa-var-magnet: "\f076"; -$fa-var-mail-forward: "\f064"; -$fa-var-mail-reply: "\f112"; -$fa-var-mail-reply-all: "\f122"; -$fa-var-male: "\f183"; -$fa-var-map: "\f279"; -$fa-var-map-marker: "\f041"; -$fa-var-map-o: "\f278"; -$fa-var-map-pin: "\f276"; -$fa-var-map-signs: "\f277"; -$fa-var-mars: "\f222"; -$fa-var-mars-double: "\f227"; -$fa-var-mars-stroke: "\f229"; -$fa-var-mars-stroke-h: "\f22b"; -$fa-var-mars-stroke-v: "\f22a"; -$fa-var-maxcdn: "\f136"; -$fa-var-meanpath: "\f20c"; -$fa-var-medium: "\f23a"; -$fa-var-medkit: "\f0fa"; -$fa-var-meetup: "\f2e0"; -$fa-var-meh-o: "\f11a"; -$fa-var-mercury: "\f223"; -$fa-var-microchip: "\f2db"; -$fa-var-microphone: "\f130"; -$fa-var-microphone-slash: "\f131"; -$fa-var-minus: "\f068"; -$fa-var-minus-circle: "\f056"; -$fa-var-minus-square: "\f146"; -$fa-var-minus-square-o: "\f147"; -$fa-var-mixcloud: "\f289"; -$fa-var-mobile: "\f10b"; -$fa-var-mobile-phone: "\f10b"; -$fa-var-modx: "\f285"; -$fa-var-money: "\f0d6"; -$fa-var-moon-o: "\f186"; -$fa-var-mortar-board: "\f19d"; -$fa-var-motorcycle: "\f21c"; -$fa-var-mouse-pointer: "\f245"; -$fa-var-music: "\f001"; -$fa-var-navicon: "\f0c9"; -$fa-var-neuter: "\f22c"; -$fa-var-newspaper-o: "\f1ea"; -$fa-var-object-group: "\f247"; -$fa-var-object-ungroup: "\f248"; -$fa-var-odnoklassniki: "\f263"; -$fa-var-odnoklassniki-square: "\f264"; -$fa-var-opencart: "\f23d"; -$fa-var-openid: "\f19b"; -$fa-var-opera: "\f26a"; -$fa-var-optin-monster: "\f23c"; -$fa-var-outdent: "\f03b"; -$fa-var-pagelines: "\f18c"; -$fa-var-paint-brush: "\f1fc"; -$fa-var-paper-plane: "\f1d8"; -$fa-var-paper-plane-o: "\f1d9"; -$fa-var-paperclip: "\f0c6"; -$fa-var-paragraph: "\f1dd"; -$fa-var-paste: "\f0ea"; -$fa-var-pause: "\f04c"; -$fa-var-pause-circle: "\f28b"; -$fa-var-pause-circle-o: "\f28c"; -$fa-var-paw: "\f1b0"; -$fa-var-paypal: "\f1ed"; -$fa-var-pencil: "\f040"; -$fa-var-pencil-square: "\f14b"; -$fa-var-pencil-square-o: "\f044"; -$fa-var-percent: "\f295"; -$fa-var-phone: "\f095"; -$fa-var-phone-square: "\f098"; -$fa-var-photo: "\f03e"; -$fa-var-picture-o: "\f03e"; -$fa-var-pie-chart: "\f200"; -$fa-var-pied-piper: "\f2ae"; -$fa-var-pied-piper-alt: "\f1a8"; -$fa-var-pied-piper-pp: "\f1a7"; -$fa-var-pinterest: "\f0d2"; -$fa-var-pinterest-p: "\f231"; -$fa-var-pinterest-square: "\f0d3"; -$fa-var-plane: "\f072"; -$fa-var-play: "\f04b"; -$fa-var-play-circle: "\f144"; -$fa-var-play-circle-o: "\f01d"; -$fa-var-plug: "\f1e6"; -$fa-var-plus: "\f067"; -$fa-var-plus-circle: "\f055"; -$fa-var-plus-square: "\f0fe"; -$fa-var-plus-square-o: "\f196"; -$fa-var-podcast: "\f2ce"; -$fa-var-power-off: "\f011"; -$fa-var-print: "\f02f"; -$fa-var-product-hunt: "\f288"; -$fa-var-puzzle-piece: "\f12e"; -$fa-var-qq: "\f1d6"; -$fa-var-qrcode: "\f029"; -$fa-var-question: "\f128"; -$fa-var-question-circle: "\f059"; -$fa-var-question-circle-o: "\f29c"; -$fa-var-quora: "\f2c4"; -$fa-var-quote-left: "\f10d"; -$fa-var-quote-right: "\f10e"; -$fa-var-ra: "\f1d0"; -$fa-var-random: "\f074"; -$fa-var-ravelry: "\f2d9"; -$fa-var-rebel: "\f1d0"; -$fa-var-recycle: "\f1b8"; -$fa-var-reddit: "\f1a1"; -$fa-var-reddit-alien: "\f281"; -$fa-var-reddit-square: "\f1a2"; -$fa-var-refresh: "\f021"; -$fa-var-registered: "\f25d"; -$fa-var-remove: "\f00d"; -$fa-var-renren: "\f18b"; -$fa-var-reorder: "\f0c9"; -$fa-var-repeat: "\f01e"; -$fa-var-reply: "\f112"; -$fa-var-reply-all: "\f122"; -$fa-var-resistance: "\f1d0"; -$fa-var-retweet: "\f079"; -$fa-var-rmb: "\f157"; -$fa-var-road: "\f018"; -$fa-var-rocket: "\f135"; -$fa-var-rotate-left: "\f0e2"; -$fa-var-rotate-right: "\f01e"; -$fa-var-rouble: "\f158"; -$fa-var-rss: "\f09e"; -$fa-var-rss-square: "\f143"; -$fa-var-rub: "\f158"; -$fa-var-ruble: "\f158"; -$fa-var-rupee: "\f156"; -$fa-var-s15: "\f2cd"; -$fa-var-safari: "\f267"; -$fa-var-save: "\f0c7"; -$fa-var-scissors: "\f0c4"; -$fa-var-scribd: "\f28a"; -$fa-var-search: "\f002"; -$fa-var-search-minus: "\f010"; -$fa-var-search-plus: "\f00e"; -$fa-var-sellsy: "\f213"; -$fa-var-send: "\f1d8"; -$fa-var-send-o: "\f1d9"; -$fa-var-server: "\f233"; -$fa-var-share: "\f064"; -$fa-var-share-alt: "\f1e0"; -$fa-var-share-alt-square: "\f1e1"; -$fa-var-share-square: "\f14d"; -$fa-var-share-square-o: "\f045"; -$fa-var-shekel: "\f20b"; -$fa-var-sheqel: "\f20b"; -$fa-var-shield: "\f132"; -$fa-var-ship: "\f21a"; -$fa-var-shirtsinbulk: "\f214"; -$fa-var-shopping-bag: "\f290"; -$fa-var-shopping-basket: "\f291"; -$fa-var-shopping-cart: "\f07a"; -$fa-var-shower: "\f2cc"; -$fa-var-sign-in: "\f090"; -$fa-var-sign-language: "\f2a7"; -$fa-var-sign-out: "\f08b"; -$fa-var-signal: "\f012"; -$fa-var-signing: "\f2a7"; -$fa-var-simplybuilt: "\f215"; -$fa-var-sitemap: "\f0e8"; -$fa-var-skyatlas: "\f216"; -$fa-var-skype: "\f17e"; -$fa-var-slack: "\f198"; -$fa-var-sliders: "\f1de"; -$fa-var-slideshare: "\f1e7"; -$fa-var-smile-o: "\f118"; -$fa-var-snapchat: "\f2ab"; -$fa-var-snapchat-ghost: "\f2ac"; -$fa-var-snapchat-square: "\f2ad"; -$fa-var-snowflake-o: "\f2dc"; -$fa-var-soccer-ball-o: "\f1e3"; -$fa-var-sort: "\f0dc"; -$fa-var-sort-alpha-asc: "\f15d"; -$fa-var-sort-alpha-desc: "\f15e"; -$fa-var-sort-amount-asc: "\f160"; -$fa-var-sort-amount-desc: "\f161"; -$fa-var-sort-asc: "\f0de"; -$fa-var-sort-desc: "\f0dd"; -$fa-var-sort-down: "\f0dd"; -$fa-var-sort-numeric-asc: "\f162"; -$fa-var-sort-numeric-desc: "\f163"; -$fa-var-sort-up: "\f0de"; -$fa-var-soundcloud: "\f1be"; -$fa-var-space-shuttle: "\f197"; -$fa-var-spinner: "\f110"; -$fa-var-spoon: "\f1b1"; -$fa-var-spotify: "\f1bc"; -$fa-var-square: "\f0c8"; -$fa-var-square-o: "\f096"; -$fa-var-stack-exchange: "\f18d"; -$fa-var-stack-overflow: "\f16c"; -$fa-var-star: "\f005"; -$fa-var-star-half: "\f089"; -$fa-var-star-half-empty: "\f123"; -$fa-var-star-half-full: "\f123"; -$fa-var-star-half-o: "\f123"; -$fa-var-star-o: "\f006"; -$fa-var-steam: "\f1b6"; -$fa-var-steam-square: "\f1b7"; -$fa-var-step-backward: "\f048"; -$fa-var-step-forward: "\f051"; -$fa-var-stethoscope: "\f0f1"; -$fa-var-sticky-note: "\f249"; -$fa-var-sticky-note-o: "\f24a"; -$fa-var-stop: "\f04d"; -$fa-var-stop-circle: "\f28d"; -$fa-var-stop-circle-o: "\f28e"; -$fa-var-street-view: "\f21d"; -$fa-var-strikethrough: "\f0cc"; -$fa-var-stumbleupon: "\f1a4"; -$fa-var-stumbleupon-circle: "\f1a3"; -$fa-var-subscript: "\f12c"; -$fa-var-subway: "\f239"; -$fa-var-suitcase: "\f0f2"; -$fa-var-sun-o: "\f185"; -$fa-var-superpowers: "\f2dd"; -$fa-var-superscript: "\f12b"; -$fa-var-support: "\f1cd"; -$fa-var-table: "\f0ce"; -$fa-var-tablet: "\f10a"; -$fa-var-tachometer: "\f0e4"; -$fa-var-tag: "\f02b"; -$fa-var-tags: "\f02c"; -$fa-var-tasks: "\f0ae"; -$fa-var-taxi: "\f1ba"; -$fa-var-telegram: "\f2c6"; -$fa-var-television: "\f26c"; -$fa-var-tencent-weibo: "\f1d5"; -$fa-var-terminal: "\f120"; -$fa-var-text-height: "\f034"; -$fa-var-text-width: "\f035"; -$fa-var-th: "\f00a"; -$fa-var-th-large: "\f009"; -$fa-var-th-list: "\f00b"; -$fa-var-themeisle: "\f2b2"; -$fa-var-thermometer: "\f2c7"; -$fa-var-thermometer-0: "\f2cb"; -$fa-var-thermometer-1: "\f2ca"; -$fa-var-thermometer-2: "\f2c9"; -$fa-var-thermometer-3: "\f2c8"; -$fa-var-thermometer-4: "\f2c7"; -$fa-var-thermometer-empty: "\f2cb"; -$fa-var-thermometer-full: "\f2c7"; -$fa-var-thermometer-half: "\f2c9"; -$fa-var-thermometer-quarter: "\f2ca"; -$fa-var-thermometer-three-quarters: "\f2c8"; -$fa-var-thumb-tack: "\f08d"; -$fa-var-thumbs-down: "\f165"; -$fa-var-thumbs-o-down: "\f088"; -$fa-var-thumbs-o-up: "\f087"; -$fa-var-thumbs-up: "\f164"; -$fa-var-ticket: "\f145"; -$fa-var-times: "\f00d"; -$fa-var-times-circle: "\f057"; -$fa-var-times-circle-o: "\f05c"; -$fa-var-times-rectangle: "\f2d3"; -$fa-var-times-rectangle-o: "\f2d4"; -$fa-var-tint: "\f043"; -$fa-var-toggle-down: "\f150"; -$fa-var-toggle-left: "\f191"; -$fa-var-toggle-off: "\f204"; -$fa-var-toggle-on: "\f205"; -$fa-var-toggle-right: "\f152"; -$fa-var-toggle-up: "\f151"; -$fa-var-trademark: "\f25c"; -$fa-var-train: "\f238"; -$fa-var-transgender: "\f224"; -$fa-var-transgender-alt: "\f225"; -$fa-var-trash: "\f1f8"; -$fa-var-trash-o: "\f014"; -$fa-var-tree: "\f1bb"; -$fa-var-trello: "\f181"; -$fa-var-tripadvisor: "\f262"; -$fa-var-trophy: "\f091"; -$fa-var-truck: "\f0d1"; -$fa-var-try: "\f195"; -$fa-var-tty: "\f1e4"; -$fa-var-tumblr: "\f173"; -$fa-var-tumblr-square: "\f174"; -$fa-var-turkish-lira: "\f195"; -$fa-var-tv: "\f26c"; -$fa-var-twitch: "\f1e8"; -$fa-var-twitter: "\f099"; -$fa-var-twitter-square: "\f081"; -$fa-var-umbrella: "\f0e9"; -$fa-var-underline: "\f0cd"; -$fa-var-undo: "\f0e2"; -$fa-var-universal-access: "\f29a"; -$fa-var-university: "\f19c"; -$fa-var-unlink: "\f127"; -$fa-var-unlock: "\f09c"; -$fa-var-unlock-alt: "\f13e"; -$fa-var-unsorted: "\f0dc"; -$fa-var-upload: "\f093"; -$fa-var-usb: "\f287"; -$fa-var-usd: "\f155"; -$fa-var-user: "\f007"; -$fa-var-user-circle: "\f2bd"; -$fa-var-user-circle-o: "\f2be"; -$fa-var-user-md: "\f0f0"; -$fa-var-user-o: "\f2c0"; -$fa-var-user-plus: "\f234"; -$fa-var-user-secret: "\f21b"; -$fa-var-user-times: "\f235"; -$fa-var-users: "\f0c0"; -$fa-var-vcard: "\f2bb"; -$fa-var-vcard-o: "\f2bc"; -$fa-var-venus: "\f221"; -$fa-var-venus-double: "\f226"; -$fa-var-venus-mars: "\f228"; -$fa-var-viacoin: "\f237"; -$fa-var-viadeo: "\f2a9"; -$fa-var-viadeo-square: "\f2aa"; -$fa-var-video-camera: "\f03d"; -$fa-var-vimeo: "\f27d"; -$fa-var-vimeo-square: "\f194"; -$fa-var-vine: "\f1ca"; -$fa-var-vk: "\f189"; -$fa-var-volume-control-phone: "\f2a0"; -$fa-var-volume-down: "\f027"; -$fa-var-volume-off: "\f026"; -$fa-var-volume-up: "\f028"; -$fa-var-warning: "\f071"; -$fa-var-wechat: "\f1d7"; -$fa-var-weibo: "\f18a"; -$fa-var-weixin: "\f1d7"; -$fa-var-whatsapp: "\f232"; -$fa-var-wheelchair: "\f193"; -$fa-var-wheelchair-alt: "\f29b"; -$fa-var-wifi: "\f1eb"; -$fa-var-wikipedia-w: "\f266"; -$fa-var-window-close: "\f2d3"; -$fa-var-window-close-o: "\f2d4"; -$fa-var-window-maximize: "\f2d0"; -$fa-var-window-minimize: "\f2d1"; -$fa-var-window-restore: "\f2d2"; -$fa-var-windows: "\f17a"; -$fa-var-won: "\f159"; -$fa-var-wordpress: "\f19a"; -$fa-var-wpbeginner: "\f297"; -$fa-var-wpexplorer: "\f2de"; -$fa-var-wpforms: "\f298"; -$fa-var-wrench: "\f0ad"; -$fa-var-xing: "\f168"; -$fa-var-xing-square: "\f169"; -$fa-var-y-combinator: "\f23b"; -$fa-var-y-combinator-square: "\f1d4"; -$fa-var-yahoo: "\f19e"; -$fa-var-yc: "\f23b"; -$fa-var-yc-square: "\f1d4"; -$fa-var-yelp: "\f1e9"; -$fa-var-yen: "\f157"; -$fa-var-yoast: "\f2b1"; -$fa-var-youtube: "\f167"; -$fa-var-youtube-play: "\f16a"; -$fa-var-youtube-square: "\f166"; - diff --git a/library/font_awesome/scss/font-awesome.scss b/library/font_awesome/scss/font-awesome.scss deleted file mode 100644 index f1c83aaa5..000000000 --- a/library/font_awesome/scss/font-awesome.scss +++ /dev/null @@ -1,18 +0,0 @@ -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */ - -@import "variables"; -@import "mixins"; -@import "path"; -@import "core"; -@import "larger"; -@import "fixed-width"; -@import "list"; -@import "bordered-pulled"; -@import "animated"; -@import "rotated-flipped"; -@import "stacked"; -@import "icons"; -@import "screen-reader"; diff --git a/library/font_awesome/src/3.2.1/CNAME b/library/font_awesome/src/3.2.1/CNAME deleted file mode 100644 index f13145254..000000000 --- a/library/font_awesome/src/3.2.1/CNAME +++ /dev/null @@ -1 +0,0 @@ -fontawesome.io \ No newline at end of file diff --git a/library/font_awesome/src/3.2.1/Makefile b/library/font_awesome/src/3.2.1/Makefile deleted file mode 100644 index 7359665af..000000000 --- a/library/font_awesome/src/3.2.1/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -PATH := ../node_modules/.bin:$(PATH) - -FA_ROOT_DIRECTORY = assets/font-awesome -FA_LESS_DIRECTORY = assets/font-awesome/less -FA_CSS_DIRECTORY = assets/font-awesome/css - -FA_LESS_MODERN = ${FA_LESS_DIRECTORY}/font-awesome.less -FA_LESS_IE7 = ${FA_LESS_DIRECTORY}/font-awesome-ie7.less - -FA_CSS_MODERN = ${FA_CSS_DIRECTORY}/font-awesome.css -FA_CSS_MODERN_MIN = ${FA_CSS_DIRECTORY}/font-awesome.min.css -FA_CSS_IE7 = ${FA_CSS_DIRECTORY}/font-awesome-ie7.css -FA_CSS_IE7_MIN = ${FA_CSS_DIRECTORY}/font-awesome-ie7.min.css - -SITE_LESS_DIRECTORY = assets/less -SITE_CSS_DIRECTORY = assets/css - -SITE_LESS = ${SITE_LESS_DIRECTORY}/site.less -SITE_CSS_MIN = ${SITE_CSS_DIRECTORY}/site.css - -build: - @echo "Compiling Less files" - @mkdir -p ${FA_CSS_DIRECTORY} - lessc ${FA_LESS_MODERN} > ${FA_CSS_MODERN} - lessc --compress ${FA_LESS_MODERN} > ${FA_CSS_MODERN_MIN} - lessc ${FA_LESS_IE7} > ${FA_CSS_IE7} - lessc --compress ${FA_LESS_IE7} > ${FA_CSS_IE7_MIN} - lessc --compress ${SITE_LESS} > ${SITE_CSS_MIN} - cp -r ${FA_ROOT_DIRECTORY}/* ../ - cd assets && zip -r9 font-awesome.zip font-awesome - - -default: build - - -.PHONY: build diff --git a/library/font_awesome/src/3.2.1/assets/css/prettify.css b/library/font_awesome/src/3.2.1/assets/css/prettify.css deleted file mode 100644 index aedd8d1a9..000000000 --- a/library/font_awesome/src/3.2.1/assets/css/prettify.css +++ /dev/null @@ -1,30 +0,0 @@ -.com { color: #93a1a1; } -.lit { color: #195f91; } -.pun, .opn, .clo { color: #93a1a1; } -.fun { color: #dc322f; } -.str, .atv { color: #D14; } -.kwd, .linenums .tag { color: #1e347b; } -.typ, .atn, .dec, .var { color: teal; } -.pln { color: #48484c; } - -.prettyprint { - padding: 8px; - background-color: #f7f7f9; - border: 1px solid #e1e1e8; -} -.prettyprint.linenums { - -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; - -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; - box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; -} - -/* Specify class=linenums on a pre to get line numbering */ -ol.linenums { - margin: 0 0 0 33px; /* IE indents via margin-left */ -} -ol.linenums li { - padding-left: 12px; - color: #bebec5; - line-height: 18px; - text-shadow: 0 1px 0 #fff; -} \ No newline at end of file diff --git a/library/font_awesome/src/3.2.1/assets/css/pygments.css b/library/font_awesome/src/3.2.1/assets/css/pygments.css deleted file mode 100644 index 5af20ee5e..000000000 --- a/library/font_awesome/src/3.2.1/assets/css/pygments.css +++ /dev/null @@ -1,71 +0,0 @@ -.hll { background-color: #ffffcc } -/*{ background: #f0f3f3; }*/ -.c { color: #999; } /* Comment */ -.err { color: #AA0000; background-color: #FFAAAA } /* Error */ -.k { color: #006699; } /* Keyword */ -.o { color: #555555 } /* Operator */ -.cm { color: #0099FF; font-style: italic } /* Comment.Multiline */ -.cp { color: #009999 } /* Comment.Preproc */ -.c1 { color: #999; } /* Comment.Single */ -.cs { color: #999; } /* Comment.Special */ -.gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */ -.ge { font-style: italic } /* Generic.Emph */ -.gr { color: #FF0000 } /* Generic.Error */ -.gh { color: #003300; } /* Generic.Heading */ -.gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */ -.go { color: #AAAAAA } /* Generic.Output */ -.gp { color: #000099; } /* Generic.Prompt */ -.gs { } /* Generic.Strong */ -.gu { color: #003300; } /* Generic.Subheading */ -.gt { color: #99CC66 } /* Generic.Traceback */ -.kc { color: #006699; } /* Keyword.Constant */ -.kd { color: #006699; } /* Keyword.Declaration */ -.kn { color: #006699; } /* Keyword.Namespace */ -.kp { color: #006699 } /* Keyword.Pseudo */ -.kr { color: #006699; } /* Keyword.Reserved */ -.kt { color: #007788; } /* Keyword.Type */ -.m { color: #FF6600 } /* Literal.Number */ -.s { color: #d44950 } /* Literal.String */ -.na { color: #4f9fcf } /* Name.Attribute */ -.nb { color: #336666 } /* Name.Builtin */ -.nc { color: #00AA88; } /* Name.Class */ -.no { color: #336600 } /* Name.Constant */ -.nd { color: #9999FF } /* Name.Decorator */ -.ni { color: #999999; } /* Name.Entity */ -.ne { color: #CC0000; } /* Name.Exception */ -.nf { color: #CC00FF } /* Name.Function */ -.nl { color: #9999FF } /* Name.Label */ -.nn { color: #00CCFF; } /* Name.Namespace */ -.nt { color: #2f6f9f; } /* Name.Tag */ -.nv { color: #003333 } /* Name.Variable */ -.ow { color: #000000; } /* Operator.Word */ -.w { color: #bbbbbb } /* Text.Whitespace */ -.mf { color: #FF6600 } /* Literal.Number.Float */ -.mh { color: #FF6600 } /* Literal.Number.Hex */ -.mi { color: #FF6600 } /* Literal.Number.Integer */ -.mo { color: #FF6600 } /* Literal.Number.Oct */ -.sb { color: #CC3300 } /* Literal.String.Backtick */ -.sc { color: #CC3300 } /* Literal.String.Char */ -.sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */ -.s2 { color: #CC3300 } /* Literal.String.Double */ -.se { color: #CC3300; } /* Literal.String.Escape */ -.sh { color: #CC3300 } /* Literal.String.Heredoc */ -.si { color: #AA0000 } /* Literal.String.Interpol */ -.sx { color: #CC3300 } /* Literal.String.Other */ -.sr { color: #33AAAA } /* Literal.String.Regex */ -.s1 { color: #CC3300 } /* Literal.String.Single */ -.ss { color: #FFCC33 } /* Literal.String.Symbol */ -.bp { color: #336666 } /* Name.Builtin.Pseudo */ -.vc { color: #003333 } /* Name.Variable.Class */ -.vg { color: #003333 } /* Name.Variable.Global */ -.vi { color: #003333 } /* Name.Variable.Instance */ -.il { color: #FF6600 } /* Literal.Number.Integer.Long */ - -.css .o, -.css .o + .nt, -.css .nt + .nt { color: #999; } - -pre { - background-color: #fafafa; - padding: 8px 15px; -} diff --git a/library/font_awesome/src/3.2.1/assets/css/site.css b/library/font_awesome/src/3.2.1/assets/css/site.css deleted file mode 100644 index b5fd3f612..000000000 --- a/library/font_awesome/src/3.2.1/assets/css/site.css +++ /dev/null @@ -1,1154 +0,0 @@ -.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} -.clearfix:after{clear:both;} -.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} -.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} -article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} -audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} -audio:not([controls]){display:none;} -html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} -a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} -a:hover,a:active{outline:0;} -sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} -sup{top:-0.5em;} -sub{bottom:-0.25em;} -img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic;} -#map_canvas img,.google-maps img{max-width:none;} -button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} -button,input{*overflow:visible;line-height:normal;} -button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} -button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;} -label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer;} -input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;} -input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} -textarea{overflow:auto;vertical-align:top;} -@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;} a,a:visited{text-decoration:underline;} a[href]:after{content:" (" attr(href) ")";} abbr[title]:after{content:" (" attr(title) ")";} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:"";} pre,blockquote{border:1px solid #999;page-break-inside:avoid;} thead{display:table-header-group;} tr,img{page-break-inside:avoid;} img{max-width:100% !important;} @page {margin:0.5cm;}p,h2,h3{orphans:3;widows:3;} h2,h3{page-break-after:avoid;}}body{margin:0;font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333333;background-color:#ffffff;} -a{color:#c83025;text-decoration:none;} -a:hover,a:focus{color:#9d261d;text-decoration:underline;} -.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} -.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);} -.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px;} -.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} -.row:after{clear:both;} -.row:before,.row:after{display:table;content:"";line-height:0;} -.row:after{clear:both;} -[class*="span"]{float:left;min-height:1px;margin-left:20px;} -.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} -.span12{width:940px;} -.span11{width:860px;} -.span10{width:780px;} -.span9{width:700px;} -.span8{width:620px;} -.span7{width:540px;} -.span6{width:460px;} -.span5{width:380px;} -.span4{width:300px;} -.span3{width:220px;} -.span2{width:140px;} -.span1{width:60px;} -.offset12{margin-left:980px;} -.offset11{margin-left:900px;} -.offset10{margin-left:820px;} -.offset9{margin-left:740px;} -.offset8{margin-left:660px;} -.offset7{margin-left:580px;} -.offset6{margin-left:500px;} -.offset5{margin-left:420px;} -.offset4{margin-left:340px;} -.offset3{margin-left:260px;} -.offset2{margin-left:180px;} -.offset1{margin-left:100px;} -.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} -.row:after{clear:both;} -.row:before,.row:after{display:table;content:"";line-height:0;} -.row:after{clear:both;} -[class*="span"]{float:left;min-height:1px;margin-left:20px;} -.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} -.span12{width:940px;} -.span11{width:860px;} -.span10{width:780px;} -.span9{width:700px;} -.span8{width:620px;} -.span7{width:540px;} -.span6{width:460px;} -.span5{width:380px;} -.span4{width:300px;} -.span3{width:220px;} -.span2{width:140px;} -.span1{width:60px;} -.offset12{margin-left:980px;} -.offset11{margin-left:900px;} -.offset10{margin-left:820px;} -.offset9{margin-left:740px;} -.offset8{margin-left:660px;} -.offset7{margin-left:580px;} -.offset6{margin-left:500px;} -.offset5{margin-left:420px;} -.offset4{margin-left:340px;} -.offset3{margin-left:260px;} -.offset2{margin-left:180px;} -.offset1{margin-left:100px;} -.row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} -.row-fluid:after{clear:both;} -.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} -.row-fluid:after{clear:both;} -.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;} -.row-fluid [class*="span"]:first-child{margin-left:0;} -.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;} -.row-fluid .span12{width:100%;*width:99.94680851063829%;} -.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;} -.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;} -.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;} -.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;} -.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;} -.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;} -.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;} -.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;} -.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;} -.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;} -.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;} -.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%;} -.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%;} -.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%;} -.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%;} -.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%;} -.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%;} -.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%;} -.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%;} -.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%;} -.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%;} -.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%;} -.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%;} -.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%;} -.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%;} -.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%;} -.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%;} -.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%;} -.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%;} -.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%;} -.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%;} -.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%;} -.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%;} -.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%;} -.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%;} -.row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} -.row-fluid:after{clear:both;} -.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} -.row-fluid:after{clear:both;} -.row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;} -.row-fluid [class*="span"]:first-child{margin-left:0;} -.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;} -.row-fluid .span12{width:100%;*width:99.94680851063829%;} -.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;} -.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;} -.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;} -.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;} -.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;} -.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;} -.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;} -.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;} -.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;} -.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;} -.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;} -.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%;} -.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%;} -.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%;} -.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%;} -.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%;} -.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%;} -.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%;} -.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%;} -.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%;} -.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%;} -.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%;} -.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%;} -.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%;} -.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%;} -.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%;} -.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%;} -.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%;} -.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%;} -.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%;} -.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%;} -.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%;} -.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%;} -.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%;} -.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%;} -[class*="span"].hide,.row-fluid [class*="span"].hide{display:none;} -[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right;} -.container{margin-right:auto;margin-left:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";line-height:0;} -.container:after{clear:both;} -.container:before,.container:after{display:table;content:"";line-height:0;} -.container:after{clear:both;} -.container:before,.container:after{display:table;content:"";line-height:0;} -.container:after{clear:both;} -.container:before,.container:after{display:table;content:"";line-height:0;} -.container:after{clear:both;} -.container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;} -.container-fluid:after{clear:both;} -.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;} -.container-fluid:after{clear:both;} -p{margin:0 0 10px;} -.lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px;} -small{font-size:85%;} -strong{font-weight:bold;} -em{font-style:italic;} -cite{font-style:normal;} -.muted{color:#999999;} -a.muted:hover,a.muted:focus{color:#808080;} -.text-warning{color:#b58603;} -a.text-warning:hover,a.text-warning:focus{color:#836102;} -.text-error{color:#9d261d;} -a.text-error:hover,a.text-error:focus{color:#721c15;} -.text-info{color:#007dbc;} -a.text-info:hover,a.text-info:focus{color:#005b89;} -.text-success{color:#5c7f41;} -a.text-success:hover,a.text-success:focus{color:#435d2f;} -.text-left{text-align:left;} -.text-right{text-align:right;} -.text-center{text-align:center;} -h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:500;line-height:20px;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999999;} -h1,h2,h3{line-height:40px;} -h1{font-size:38.5px;} -h2{font-size:31.5px;} -h3{font-size:24.5px;} -h4{font-size:17.5px;} -h5{font-size:14px;} -h6{font-size:11.9px;} -h1 small{font-size:24.5px;} -h2 small{font-size:17.5px;} -h3 small{font-size:14px;} -h4 small{font-size:14px;} -.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eeeeee;} -ul,ol{padding:0;margin:0 0 10px 25px;} -ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} -li{line-height:20px;} -ul.unstyled,ol.unstyled{margin-left:0;list-style:none;} -ul.inline,ol.inline{margin-left:0;list-style:none;}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px;} -dl{margin-bottom:20px;} -dt,dd{line-height:20px;} -dt{font-weight:bold;} -dd{margin-left:10px;} -.dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;} -.dl-horizontal:after{clear:both;} -.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;} -.dl-horizontal:after{clear:both;} -.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} -.dl-horizontal dd{margin-left:180px;} -hr{margin:20px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} -abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999;} -abbr.initialism{font-size:90%;text-transform:uppercase;} -blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:17.5px;font-weight:300;line-height:1.25;} -blockquote small{display:block;line-height:20px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} -blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eeeeee;border-left:0;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} -blockquote.pull-right small:before{content:'';} -blockquote.pull-right small:after{content:'\00A0 \2014';} -q:before,q:after,blockquote:before,blockquote:after{content:"";} -address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;} -code,pre{padding:0 3px 2px;font-family:Menlo,Monaco,Consolas,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap;} -pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}pre.prettyprint{margin-bottom:20px;} -pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0;} -.pre-scrollable{max-height:340px;overflow-y:scroll;} -form{margin:0 0 20px;} -fieldset{padding:0;margin:0;border:0;} -legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;} -label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px;} -input,button,select,textarea{font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;} -label{display:block;margin-bottom:5px;} -select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;} -input,textarea,.uneditable-input{width:206px;} -textarea{height:auto;} -textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);} -input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;} -input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;} -select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px;} -select{width:220px;border:1px solid #cccccc;background-color:#ffffff;} -select[multiple],select[size]{height:auto;} -select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} -.uneditable-input,.uneditable-textarea{color:#999999;background-color:#fcfcfc;border-color:#cccccc;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} -.uneditable-input{overflow:hidden;white-space:nowrap;} -.uneditable-textarea{width:auto;height:auto;} -input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;} -input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;} -input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;} -input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;} -input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;} -input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;} -.radio,.checkbox{min-height:20px;padding-left:20px;} -.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;} -.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} -.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} -.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} -.input-mini{width:60px;} -.input-small{width:90px;} -.input-medium{width:150px;} -.input-large{width:210px;} -.input-xlarge{width:270px;} -.input-xxlarge{width:530px;} -input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0;} -.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block;} -input,textarea,.uneditable-input{margin-left:0;} -.controls-row [class*="span"]+[class*="span"]{margin-left:20px;} -input.span12,textarea.span12,.uneditable-input.span12{width:926px;} -input.span11,textarea.span11,.uneditable-input.span11{width:846px;} -input.span10,textarea.span10,.uneditable-input.span10{width:766px;} -input.span9,textarea.span9,.uneditable-input.span9{width:686px;} -input.span8,textarea.span8,.uneditable-input.span8{width:606px;} -input.span7,textarea.span7,.uneditable-input.span7{width:526px;} -input.span6,textarea.span6,.uneditable-input.span6{width:446px;} -input.span5,textarea.span5,.uneditable-input.span5{width:366px;} -input.span4,textarea.span4,.uneditable-input.span4{width:286px;} -input.span3,textarea.span3,.uneditable-input.span3{width:206px;} -input.span2,textarea.span2,.uneditable-input.span2{width:126px;} -input.span1,textarea.span1,.uneditable-input.span1{width:46px;} -input,textarea,.uneditable-input{margin-left:0;} -.controls-row [class*="span"]+[class*="span"]{margin-left:20px;} -input.span12,textarea.span12,.uneditable-input.span12{width:926px;} -input.span11,textarea.span11,.uneditable-input.span11{width:846px;} -input.span10,textarea.span10,.uneditable-input.span10{width:766px;} -input.span9,textarea.span9,.uneditable-input.span9{width:686px;} -input.span8,textarea.span8,.uneditable-input.span8{width:606px;} -input.span7,textarea.span7,.uneditable-input.span7{width:526px;} -input.span6,textarea.span6,.uneditable-input.span6{width:446px;} -input.span5,textarea.span5,.uneditable-input.span5{width:366px;} -input.span4,textarea.span4,.uneditable-input.span4{width:286px;} -input.span3,textarea.span3,.uneditable-input.span3{width:206px;} -input.span2,textarea.span2,.uneditable-input.span2{width:126px;} -input.span1,textarea.span1,.uneditable-input.span1{width:46px;} -.controls-row{*zoom:1;}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;} -.controls-row:after{clear:both;} -.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;} -.controls-row:after{clear:both;} -.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left;} -.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px;} -input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eeeeee;} -input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent;} -.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#b58603;} -.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#b58603;} -.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#b58603;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#836102;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #fbc124;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #fbc124;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #fbc124;} -.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#b58603;background-color:#fffcee;border-color:#b58603;} -.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#b58603;} -.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#b58603;} -.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#b58603;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#836102;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #fbc124;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #fbc124;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #fbc124;} -.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#b58603;background-color:#fffcee;border-color:#b58603;} -.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#9d261d;} -.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#9d261d;} -.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#9d261d;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#721c15;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dc4e44;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dc4e44;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dc4e44;} -.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#9d261d;background-color:#fff0f0;border-color:#9d261d;} -.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#9d261d;} -.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#9d261d;} -.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#9d261d;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#721c15;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dc4e44;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dc4e44;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dc4e44;} -.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#9d261d;background-color:#fff0f0;border-color:#9d261d;} -.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#5c7f41;} -.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#5c7f41;} -.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#5c7f41;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#435d2f;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #8eb670;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #8eb670;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #8eb670;} -.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#5c7f41;background-color:#f3f9e8;border-color:#5c7f41;} -.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#5c7f41;} -.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#5c7f41;} -.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#5c7f41;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#435d2f;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #8eb670;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #8eb670;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #8eb670;} -.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#5c7f41;background-color:#f3f9e8;border-color:#5c7f41;} -.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#007dbc;} -.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#007dbc;} -.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#007dbc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#005b89;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #23b5ff;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #23b5ff;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #23b5ff;} -.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#007dbc;background-color:#f0f9ff;border-color:#007dbc;} -.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#007dbc;} -.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#007dbc;} -.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#007dbc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#005b89;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #23b5ff;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #23b5ff;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #23b5ff;} -.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#007dbc;background-color:#f0f9ff;border-color:#007dbc;} -input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} -.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;} -.form-actions:after{clear:both;} -.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;} -.form-actions:after{clear:both;} -.help-block,.help-inline{color:#595959;} -.help-block{display:block;margin-bottom:10px;} -.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} -.input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:14px;} -.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;} -.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;} -.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.input-append .active,.input-prepend .active{background-color:#d9e8c2;border-color:#95bf52;} -.input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} -.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} -.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} -.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px;} -.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} -.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} -.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} -.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} -.input-prepend.input-append .btn-group:first-child{margin-left:0;} -input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} -.form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} -.form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} -.form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} -.form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} -.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle;} -.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} -.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block;} -.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} -.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} -.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;} -.control-group{margin-bottom:10px;} -legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;} -.form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;} -.form-horizontal .control-group:after{clear:both;} -.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;} -.form-horizontal .control-group:after{clear:both;} -.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;} -.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;} -.form-horizontal .help-block{margin-bottom:0;} -.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;} -.form-horizontal .form-actions{padding-left:180px;} -table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;} -.table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} -.table th{font-weight:bold;} -.table thead th{vertical-align:bottom;} -.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} -.table tbody+tbody{border-top:2px solid #dddddd;} -.table .table{background-color:#ffffff;} -.table-condensed th,.table-condensed td{padding:4px 5px;} -.table-bordered{border:1px solid #dddddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} -.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} -.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} -.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} -.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} -.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} -.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;} -.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;} -.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} -.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;} -.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9;} -.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5;} -table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0;} -.table td.span1,.table th.span1{float:none;width:44px;margin-left:0;} -.table td.span2,.table th.span2{float:none;width:124px;margin-left:0;} -.table td.span3,.table th.span3{float:none;width:204px;margin-left:0;} -.table td.span4,.table th.span4{float:none;width:284px;margin-left:0;} -.table td.span5,.table th.span5{float:none;width:364px;margin-left:0;} -.table td.span6,.table th.span6{float:none;width:444px;margin-left:0;} -.table td.span7,.table th.span7{float:none;width:524px;margin-left:0;} -.table td.span8,.table th.span8{float:none;width:604px;margin-left:0;} -.table td.span9,.table th.span9{float:none;width:684px;margin-left:0;} -.table td.span10,.table th.span10{float:none;width:764px;margin-left:0;} -.table td.span11,.table th.span11{float:none;width:844px;margin-left:0;} -.table td.span12,.table th.span12{float:none;width:924px;margin-left:0;} -.table tbody tr.success>td{background-color:#f3f9e8;} -.table tbody tr.error>td{background-color:#fff0f0;} -.table tbody tr.warning>td{background-color:#fffcee;} -.table tbody tr.info>td{background-color:#f0f9ff;} -.table-hover tbody tr.success:hover>td{background-color:#e8f4d4;} -.table-hover tbody tr.error:hover>td{background-color:#ffd7d7;} -.table-hover tbody tr.warning:hover>td{background-color:#fff8d5;} -.table-hover tbody tr.info:hover>td{background-color:#d7efff;} -[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px;} -.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png");} -.icon-glass{background-position:0 0;} -.icon-music{background-position:-24px 0;} -.icon-search{background-position:-48px 0;} -.icon-envelope{background-position:-72px 0;} -.icon-heart{background-position:-96px 0;} -.icon-star{background-position:-120px 0;} -.icon-star-empty{background-position:-144px 0;} -.icon-user{background-position:-168px 0;} -.icon-film{background-position:-192px 0;} -.icon-th-large{background-position:-216px 0;} -.icon-th{background-position:-240px 0;} -.icon-th-list{background-position:-264px 0;} -.icon-ok{background-position:-288px 0;} -.icon-remove{background-position:-312px 0;} -.icon-zoom-in{background-position:-336px 0;} -.icon-zoom-out{background-position:-360px 0;} -.icon-off{background-position:-384px 0;} -.icon-signal{background-position:-408px 0;} -.icon-cog{background-position:-432px 0;} -.icon-trash{background-position:-456px 0;} -.icon-home{background-position:0 -24px;} -.icon-file{background-position:-24px -24px;} -.icon-time{background-position:-48px -24px;} -.icon-road{background-position:-72px -24px;} -.icon-download-alt{background-position:-96px -24px;} -.icon-download{background-position:-120px -24px;} -.icon-upload{background-position:-144px -24px;} -.icon-inbox{background-position:-168px -24px;} -.icon-play-circle{background-position:-192px -24px;} -.icon-repeat{background-position:-216px -24px;} -.icon-refresh{background-position:-240px -24px;} -.icon-list-alt{background-position:-264px -24px;} -.icon-lock{background-position:-287px -24px;} -.icon-flag{background-position:-312px -24px;} -.icon-headphones{background-position:-336px -24px;} -.icon-volume-off{background-position:-360px -24px;} -.icon-volume-down{background-position:-384px -24px;} -.icon-volume-up{background-position:-408px -24px;} -.icon-qrcode{background-position:-432px -24px;} -.icon-barcode{background-position:-456px -24px;} -.icon-tag{background-position:0 -48px;} -.icon-tags{background-position:-25px -48px;} -.icon-book{background-position:-48px -48px;} -.icon-bookmark{background-position:-72px -48px;} -.icon-print{background-position:-96px -48px;} -.icon-camera{background-position:-120px -48px;} -.icon-font{background-position:-144px -48px;} -.icon-bold{background-position:-167px -48px;} -.icon-italic{background-position:-192px -48px;} -.icon-text-height{background-position:-216px -48px;} -.icon-text-width{background-position:-240px -48px;} -.icon-align-left{background-position:-264px -48px;} -.icon-align-center{background-position:-288px -48px;} -.icon-align-right{background-position:-312px -48px;} -.icon-align-justify{background-position:-336px -48px;} -.icon-list{background-position:-360px -48px;} -.icon-indent-left{background-position:-384px -48px;} -.icon-indent-right{background-position:-408px -48px;} -.icon-facetime-video{background-position:-432px -48px;} -.icon-picture{background-position:-456px -48px;} -.icon-pencil{background-position:0 -72px;} -.icon-map-marker{background-position:-24px -72px;} -.icon-adjust{background-position:-48px -72px;} -.icon-tint{background-position:-72px -72px;} -.icon-edit{background-position:-96px -72px;} -.icon-share{background-position:-120px -72px;} -.icon-check{background-position:-144px -72px;} -.icon-move{background-position:-168px -72px;} -.icon-step-backward{background-position:-192px -72px;} -.icon-fast-backward{background-position:-216px -72px;} -.icon-backward{background-position:-240px -72px;} -.icon-play{background-position:-264px -72px;} -.icon-pause{background-position:-288px -72px;} -.icon-stop{background-position:-312px -72px;} -.icon-forward{background-position:-336px -72px;} -.icon-fast-forward{background-position:-360px -72px;} -.icon-step-forward{background-position:-384px -72px;} -.icon-eject{background-position:-408px -72px;} -.icon-chevron-left{background-position:-432px -72px;} -.icon-chevron-right{background-position:-456px -72px;} -.icon-plus-sign{background-position:0 -96px;} -.icon-minus-sign{background-position:-24px -96px;} -.icon-remove-sign{background-position:-48px -96px;} -.icon-ok-sign{background-position:-72px -96px;} -.icon-question-sign{background-position:-96px -96px;} -.icon-info-sign{background-position:-120px -96px;} -.icon-screenshot{background-position:-144px -96px;} -.icon-remove-circle{background-position:-168px -96px;} -.icon-ok-circle{background-position:-192px -96px;} -.icon-ban-circle{background-position:-216px -96px;} -.icon-arrow-left{background-position:-240px -96px;} -.icon-arrow-right{background-position:-264px -96px;} -.icon-arrow-up{background-position:-289px -96px;} -.icon-arrow-down{background-position:-312px -96px;} -.icon-share-alt{background-position:-336px -96px;} -.icon-resize-full{background-position:-360px -96px;} -.icon-resize-small{background-position:-384px -96px;} -.icon-plus{background-position:-408px -96px;} -.icon-minus{background-position:-433px -96px;} -.icon-asterisk{background-position:-456px -96px;} -.icon-exclamation-sign{background-position:0 -120px;} -.icon-gift{background-position:-24px -120px;} -.icon-leaf{background-position:-48px -120px;} -.icon-fire{background-position:-72px -120px;} -.icon-eye-open{background-position:-96px -120px;} -.icon-eye-close{background-position:-120px -120px;} -.icon-warning-sign{background-position:-144px -120px;} -.icon-plane{background-position:-168px -120px;} -.icon-calendar{background-position:-192px -120px;} -.icon-random{background-position:-216px -120px;width:16px;} -.icon-comment{background-position:-240px -120px;} -.icon-magnet{background-position:-264px -120px;} -.icon-chevron-up{background-position:-288px -120px;} -.icon-chevron-down{background-position:-313px -119px;} -.icon-retweet{background-position:-336px -120px;} -.icon-shopping-cart{background-position:-360px -120px;} -.icon-folder-close{background-position:-384px -120px;width:16px;} -.icon-folder-open{background-position:-408px -120px;width:16px;} -.icon-resize-vertical{background-position:-432px -119px;} -.icon-resize-horizontal{background-position:-456px -118px;} -.icon-hdd{background-position:0 -144px;} -.icon-bullhorn{background-position:-24px -144px;} -.icon-bell{background-position:-48px -144px;} -.icon-certificate{background-position:-72px -144px;} -.icon-thumbs-up{background-position:-96px -144px;} -.icon-thumbs-down{background-position:-120px -144px;} -.icon-hand-right{background-position:-144px -144px;} -.icon-hand-left{background-position:-168px -144px;} -.icon-hand-up{background-position:-192px -144px;} -.icon-hand-down{background-position:-216px -144px;} -.icon-circle-arrow-right{background-position:-240px -144px;} -.icon-circle-arrow-left{background-position:-264px -144px;} -.icon-circle-arrow-up{background-position:-288px -144px;} -.icon-circle-arrow-down{background-position:-312px -144px;} -.icon-globe{background-position:-336px -144px;} -.icon-wrench{background-position:-360px -144px;} -.icon-tasks{background-position:-384px -144px;} -.icon-filter{background-position:-408px -144px;} -.icon-briefcase{background-position:-432px -144px;} -.icon-fullscreen{background-position:-456px -144px;} -.dropup,.dropdown{position:relative;} -.dropdown-toggle{*margin-bottom:-3px;} -.dropdown-toggle:active,.open .dropdown-toggle{outline:0;} -.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";} -.dropdown .caret{margin-top:8px;margin-left:2px;} -.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;} -.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} -.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;} -.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#ffffff;background-color:#bf2e23;background-image:-moz-linear-gradient(top, #c83025, #b32b21);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#c83025), to(#b32b21));background-image:-webkit-linear-gradient(top, #c83025, #b32b21);background-image:-o-linear-gradient(top, #c83025, #b32b21);background-image:linear-gradient(to bottom, #c83025, #b32b21);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc83025', endColorstr='#ffb32b21', GradientType=0);} -.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#ffffff;text-decoration:none;outline:0;background-color:#bf2e23;background-image:-moz-linear-gradient(top, #c83025, #b32b21);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#c83025), to(#b32b21));background-image:-webkit-linear-gradient(top, #c83025, #b32b21);background-image:-o-linear-gradient(top, #c83025, #b32b21);background-image:linear-gradient(to bottom, #c83025, #b32b21);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc83025', endColorstr='#ffb32b21', GradientType=0);} -.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999999;} -.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default;} -.open{*z-index:1000;}.open>.dropdown-menu{display:block;} -.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990;} -.pull-right>.dropdown-menu{right:0;left:auto;} -.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"";} -.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} -.dropdown-submenu{position:relative;} -.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;} -.dropdown-submenu:hover>.dropdown-menu{display:block;} -.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;} -.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;} -.dropdown-submenu:hover>a:after{border-left-color:#ffffff;} -.dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} -.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px;} -.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} -.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} -.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -.fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;} -.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;} -.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover,.close:focus{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);} -button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;} -.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #bbbbbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;} -.btn:active,.btn.active{background-color:#cccccc \9;} -.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;} -.btn:active,.btn.active{background-color:#cccccc \9;} -.btn:first-child{*margin-left:0;} -.btn:first-child{*margin-left:0;} -.btn:hover,.btn:focus{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} -.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} -.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} -.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -.btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} -.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;} -.btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;} -.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;} -.btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} -.btn-block+.btn-block{margin-top:5px;} -input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;} -.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} -.btn-primary{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#e7d785;background-image:-moz-linear-gradient(top, #fffeb8, #c49c38);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fffeb8), to(#c49c38));background-image:-webkit-linear-gradient(top, #fffeb8, #c49c38);background-image:-o-linear-gradient(top, #fffeb8, #c49c38);background-image:linear-gradient(to bottom, #fffeb8, #c49c38);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffffeb8', endColorstr='#ffc49c38', GradientType=0);border-color:#c49c38 #c49c38 #896d27;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#c49c38;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#c49c38;*background-color:#b08c32;} -.btn-primary:active,.btn-primary.active{background-color:#9c7c2d \9;} -.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#c49c38;*background-color:#b08c32;} -.btn-primary:active,.btn-primary.active{background-color:#9c7c2d \9;} -.btn-warning{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#e7c44b;background-image:-moz-linear-gradient(top, #f9e27d, #cc9600);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f9e27d), to(#cc9600));background-image:-webkit-linear-gradient(top, #f9e27d, #cc9600);background-image:-o-linear-gradient(top, #f9e27d, #cc9600);background-image:linear-gradient(to bottom, #f9e27d, #cc9600);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9e27d', endColorstr='#ffcc9600', GradientType=0);border-color:#cc9600 #cc9600 #805e00;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#cc9600;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#cc9600;*background-color:#b38300;} -.btn-warning:active,.btn-warning.active{background-color:#997100 \9;} -.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#cc9600;*background-color:#b38300;} -.btn-warning:active,.btn-warning.active{background-color:#997100 \9;} -.btn-danger{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#cc4036;background-image:-moz-linear-gradient(top, #dc4e44, #b32b21);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#dc4e44), to(#b32b21));background-image:-webkit-linear-gradient(top, #dc4e44, #b32b21);background-image:-o-linear-gradient(top, #dc4e44, #b32b21);background-image:linear-gradient(to bottom, #dc4e44, #b32b21);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdc4e44', endColorstr='#ffb32b21', GradientType=0);border-color:#b32b21 #b32b21 #721c15;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#b32b21;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#b32b21;*background-color:#9d261d;} -.btn-danger:active,.btn-danger.active{background-color:#872119 \9;} -.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#b32b21;*background-color:#9d261d;} -.btn-danger:active,.btn-danger.active{background-color:#872119 \9;} -.btn-success{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#83a94c;background-image:-moz-linear-gradient(top, #95bf52, #678943);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#95bf52), to(#678943));background-image:-webkit-linear-gradient(top, #95bf52, #678943);background-image:-o-linear-gradient(top, #95bf52, #678943);background-image:linear-gradient(to bottom, #95bf52, #678943);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff95bf52', endColorstr='#ff678943', GradientType=0);border-color:#678943 #678943 #40562a;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#678943;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#678943;*background-color:#5a783b;} -.btn-success:active,.btn-success.active{background-color:#4d6732 \9;} -.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#678943;*background-color:#5a783b;} -.btn-success:active,.btn-success.active{background-color:#4d6732 \9;} -.btn-info{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#008ed0;background-image:-moz-linear-gradient(top, #009add, #007dbc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#009add), to(#007dbc));background-image:-webkit-linear-gradient(top, #009add, #007dbc);background-image:-o-linear-gradient(top, #009add, #007dbc);background-image:linear-gradient(to bottom, #009add, #007dbc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff009add', endColorstr='#ff007dbc', GradientType=0);border-color:#007dbc #007dbc #004a70;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#007dbc;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#007dbc;*background-color:#006ca3;} -.btn-info:active,.btn-info.active{background-color:#005b89 \9;} -.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#007dbc;*background-color:#006ca3;} -.btn-info:active,.btn-info.active{background-color:#005b89 \9;} -.btn-inverse{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444444, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));background-image:-webkit-linear-gradient(top, #444444, #222222);background-image:-o-linear-gradient(top, #444444, #222222);background-image:linear-gradient(to bottom, #444444, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#222222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;} -.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} -.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;} -.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} -button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} -button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} -button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} -button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} -.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -.btn-link{border-color:transparent;cursor:pointer;color:#c83025;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.btn-link:hover,.btn-link:focus{color:#9d261d;text-decoration:underline;background-color:transparent;} -.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333333;text-decoration:none;} -.btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;} -.btn-group:first-child{*margin-left:0;} -.btn-group+.btn-group{margin-left:5px;} -.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;} -.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.btn-group>.btn+.btn{margin-left:-1px;} -.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;} -.btn-group>.btn-mini{font-size:10.5px;} -.btn-group>.btn-small{font-size:11.9px;} -.btn-group>.btn-large{font-size:17.5px;} -.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} -.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} -.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} -.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} -.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;} -.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} -.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;} -.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px;} -.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;} -.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px;} -.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);} -.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;} -.btn-group.open .btn-primary.dropdown-toggle{background-color:#c49c38;} -.btn-group.open .btn-warning.dropdown-toggle{background-color:#cc9600;} -.btn-group.open .btn-danger.dropdown-toggle{background-color:#b32b21;} -.btn-group.open .btn-success.dropdown-toggle{background-color:#678943;} -.btn-group.open .btn-info.dropdown-toggle{background-color:#007dbc;} -.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;} -.btn .caret{margin-top:8px;margin-left:0;} -.btn-large .caret{margin-top:6px;} -.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px;} -.btn-mini .caret,.btn-small .caret{margin-top:8px;} -.dropup .btn-large .caret{border-bottom-width:5px;} -.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} -.btn-group-vertical{display:inline-block;*display:inline;*zoom:1;} -.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px;} -.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} -.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} -.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;} -.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} -.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fffcee;border:1px solid #ffedca;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.alert,.alert h4{color:#b58603;} -.alert h4{margin:0;} -.alert .close{position:relative;top:-2px;right:-21px;line-height:20px;} -.alert-success{background-color:#f3f9e8;border-color:#e1ebb3;color:#5c7f41;} -.alert-success h4{color:#5c7f41;} -.alert-danger,.alert-error{background-color:#fff0f0;border-color:#ffdce1;color:#9d261d;} -.alert-danger h4,.alert-error h4{color:#9d261d;} -.alert-info{background-color:#f0f9ff;border-color:#ccf3ff;color:#007dbc;} -.alert-info h4{color:#007dbc;} -.alert-block{padding-top:14px;padding-bottom:14px;} -.alert-block>p,.alert-block>ul{margin-bottom:0;} -.alert-block p+p{margin-top:5px;} -.nav{margin-left:0;margin-bottom:20px;list-style:none;} -.nav>li>a{display:block;} -.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eeeeee;} -.nav>li>a>img{max-width:none;} -.nav>.pull-right{float:right;} -.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} -.nav li+.nav-header{margin-top:9px;} -.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} -.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} -.nav-list>li>a{padding:3px 15px;} -.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#c83025;} -.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;} -.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;} -.nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;} -.nav-tabs:after,.nav-pills:after{clear:both;} -.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;} -.nav-tabs:after,.nav-pills:after{clear:both;} -.nav-tabs>li,.nav-pills>li{float:left;} -.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} -.nav-tabs{border-bottom:1px solid #ddd;} -.nav-tabs>li{margin-bottom:-1px;} -.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eeeeee #eeeeee #dddddd;} -.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} -.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} -.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#ffffff;background-color:#c83025;} -.nav-stacked>li{float:none;} -.nav-stacked>li>a{margin-right:0;} -.nav-tabs.nav-stacked{border-bottom:0;} -.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;} -.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} -.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2;} -.nav-pills.nav-stacked>li>a{margin-bottom:3px;} -.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} -.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} -.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} -.nav .dropdown-toggle .caret{border-top-color:#c83025;border-bottom-color:#c83025;margin-top:6px;} -.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#9d261d;border-bottom-color:#9d261d;} -.nav-tabs .dropdown-toggle .caret{margin-top:8px;} -.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;} -.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} -.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer;} -.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#ffffff;background-color:#999999;border-color:#999999;} -.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} -.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999999;} -.tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;} -.tabbable:after{clear:both;} -.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;} -.tabbable:after{clear:both;} -.tab-content{overflow:auto;} -.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0;} -.tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} -.tab-content>.active,.pill-content>.active{display:block;} -.tabs-below>.nav-tabs{border-top:1px solid #ddd;} -.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;} -.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd;} -.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd;} -.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none;} -.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} -.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} -.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} -.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} -.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} -.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} -.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} -.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} -.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} -.nav>.disabled>a{color:#999999;} -.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default;} -.navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;} -.navbar-inner{min-height:40px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;} -.navbar-inner:after{clear:both;} -.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;} -.navbar-inner:after{clear:both;} -.navbar .container{width:auto;} -.nav-collapse.collapse{height:auto;overflow:visible;} -.navbar .brand{float:left;display:block;padding:10px 20px 10px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none;} -.navbar-text{margin-bottom:0;line-height:40px;color:#777777;} -.navbar-link{color:#777777;}.navbar-link:hover,.navbar-link:focus{color:#333333;} -.navbar .divider-vertical{height:40px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;} -.navbar .btn,.navbar .btn-group{margin-top:5px;} -.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0;} -.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;} -.navbar-form:after{clear:both;} -.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;} -.navbar-form:after{clear:both;} -.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;} -.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;} -.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} -.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} -.navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0;}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} -.navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} -.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;} -.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;} -.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} -.navbar-fixed-top{top:0;} -.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);} -.navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1);} -.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} -.navbar .nav.pull-right{float:right;margin-right:0;} -.navbar .nav>li{float:left;} -.navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;} -.navbar .nav .dropdown-toggle .caret{margin-top:8px;} -.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;} -.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);} -.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;} -.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;} -.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;} -.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;} -.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} -.btn-navbar .icon-bar+.icon-bar{margin-top:3px;} -.navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} -.navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} -.navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} -.navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} -.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333333;border-bottom-color:#333333;} -.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555555;} -.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777777;border-bottom-color:#777777;} -.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;} -.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0;}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px;} -.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px;} -.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} -.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222222, #111111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));background-image:-webkit-linear-gradient(top, #222222, #111111);background-image:-o-linear-gradient(top, #222222, #111111);background-image:linear-gradient(to bottom, #222222, #111111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525;} -.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999999;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#ffffff;} -.navbar-inverse .brand{color:#999999;} -.navbar-inverse .navbar-text{color:#999999;} -.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#ffffff;} -.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#ffffff;background-color:#111111;} -.navbar-inverse .navbar-link{color:#999999;}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#ffffff;} -.navbar-inverse .divider-vertical{border-left-color:#111111;border-right-color:#222222;} -.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111111;color:#ffffff;} -.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} -.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999999;border-bottom-color:#999999;} -.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} -.navbar-inverse .navbar-search .search-query{color:#ffffff;background-color:#515151;border-color:#111111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;} -.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;} -.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} -.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;} -.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;} -.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} -.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} -.navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;} -.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;} -.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;} -.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;} -.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}.breadcrumb>li>.divider{padding:0 5px;color:#ccc;} -.breadcrumb>.active{color:#999999;} -.pagination{margin:20px 0;} -.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} -.pagination ul>li{display:inline;} -.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#ffffff;border:1px solid #dddddd;border-left-width:0;} -.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;} -.pagination ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;} -.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999999;background-color:transparent;cursor:default;} -.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} -.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} -.pagination-centered{text-align:center;} -.pagination-right{text-align:right;} -.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px;} -.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} -.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} -.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;} -.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;} -.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px;} -.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px;} -.pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;} -.pager:after{clear:both;} -.pager:before,.pager:after{display:table;content:"";line-height:0;} -.pager:after{clear:both;} -.pager li{display:inline;} -.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} -.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5;} -.pager .next>a,.pager .next>span{float:right;} -.pager .previous>a,.pager .previous>span{float:left;} -.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999999;background-color:#fff;cursor:default;} -.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} -.modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} -.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} -.modal.fade.in{top:10%;} -.modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} -.modal-header h3{margin:0;line-height:30px;} -.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px;} -.modal-form{margin-bottom:0;} -.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;} -.modal-footer:after{clear:both;} -.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;} -.modal-footer:after{clear:both;} -.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;} -.modal-footer .btn-group .btn+.btn{margin-left:-1px;} -.modal-footer .btn-block+.btn-block{margin-left:0;} -.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} -.tooltip.top{margin-top:-3px;padding:5px 0;} -.tooltip.right{margin-left:3px;padding:0 5px;} -.tooltip.bottom{margin-top:3px;padding:5px 0;} -.tooltip.left{margin-left:-3px;padding:0 5px;} -.tooltip-inner{max-width:200px;padding:8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} -.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;} -.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;} -.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;} -.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;} -.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);white-space:normal;}.popover.top{margin-top:-10px;} -.popover.right{margin-left:10px;} -.popover.bottom{margin-top:10px;} -.popover.left{margin-left:-10px;} -.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;}.popover-title:empty{display:none;} -.popover-content{padding:9px 14px;} -.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;} -.popover .arrow{border-width:11px;} -.popover .arrow:after{border-width:10px;content:"";} -.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);bottom:-11px;}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff;} -.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff;} -.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px;}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff;} -.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25);}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px;} -.thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;} -.thumbnails:after{clear:both;} -.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;} -.thumbnails:after{clear:both;} -.row-fluid .thumbnails{margin-left:0;} -.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px;} -.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;} -a.thumbnail:hover,a.thumbnail:focus{border-color:#c83025;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} -.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} -.thumbnail .caption{padding:9px;color:#555555;} -.media,.media-body{overflow:hidden;*overflow:visible;zoom:1;} -.media,.media .media{margin-top:15px;} -.media:first-child{margin-top:0;} -.media-object{display:block;} -.media-heading{margin:0 0 5px;} -.media>.pull-left{margin-right:10px;} -.media>.pull-right{margin-left:10px;} -.media-list{margin-left:0;list-style:none;} -.label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#ffffff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;} -.label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -.badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} -.label:empty,.badge:empty{display:none;} -a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#ffffff;text-decoration:none;cursor:pointer;} -.label-important,.badge-important{background-color:#9d261d;} -.label-important[href],.badge-important[href]{background-color:#721c15;} -.label-warning,.badge-warning{background-color:#f4914e;} -.label-warning[href],.badge-warning[href]{background-color:#f1731e;} -.label-success,.badge-success{background-color:#5c7f41;} -.label-success[href],.badge-success[href]{background-color:#435d2f;} -.label-info,.badge-info{background-color:#007dbc;} -.label-info[href],.badge-info[href]{background-color:#005b89;} -.label-inverse,.badge-inverse{background-color:#333333;} -.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;} -.btn .label,.btn .badge{position:relative;top:-1px;} -.btn-mini .label,.btn-mini .badge{top:0;} -@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.progress .bar{width:0%;height:100%;color:#ffffff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} -.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);} -.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} -.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} -.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);} -.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} -.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);} -.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} -.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);} -.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} -.progress-warning .bar,.progress .bar-warning{background-color:#f7ac79;background-image:-moz-linear-gradient(top, #f8be96, #f4914e);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f8be96), to(#f4914e));background-image:-webkit-linear-gradient(top, #f8be96, #f4914e);background-image:-o-linear-gradient(top, #f8be96, #f4914e);background-image:linear-gradient(to bottom, #f8be96, #f4914e);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff8be96', endColorstr='#fff4914e', GradientType=0);} -.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#f8be96;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} -.accordion{margin-bottom:20px;} -.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.accordion-heading{border-bottom:0;} -.accordion-heading .accordion-toggle{display:block;padding:8px 15px;} -.accordion-toggle{cursor:pointer;} -.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} -.carousel{position:relative;margin-bottom:20px;line-height:1;} -.carousel-inner{overflow:hidden;width:100%;position:relative;} -.carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1;} -.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;} -.carousel-inner>.active{left:0;} -.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%;} -.carousel-inner>.next{left:100%;} -.carousel-inner>.prev{left:-100%;} -.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0;} -.carousel-inner>.active.left{left:-100%;} -.carousel-inner>.active.right{left:100%;} -.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} -.carousel-control:hover,.carousel-control:focus{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} -.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none;}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255, 255, 255, 0.25);border-radius:5px;} -.carousel-indicators .active{background-color:#fff;} -.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);} -.carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;} -.carousel-caption h4{margin:0 0 5px;} -.carousel-caption p{margin-bottom:0;} -.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} -.hero-unit li{line-height:30px;} -.pull-right{float:right;} -.pull-left{float:left;} -.hide{display:none;} -.show{display:block;} -.invisible{visibility:hidden;} -.affix{position:fixed;} -@-ms-viewport{width:device-width;}.hidden{display:none;visibility:hidden;} -.visible-phone{display:none !important;} -.visible-tablet{display:none !important;} -.hidden-desktop{display:none !important;} -.visible-desktop{display:inherit !important;} -@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}.visible-print{display:none !important;} -@media print{.visible-print{display:inherit !important;} .hidden-print{display:none !important;}}html,body{height:100%;} -.wrapper{min-height:100%;height:auto !important;height:100%;} -.wrapper{margin:0 auto -231px;} -.push{height:231px;} -.footer{margin-top:60px;height:90px;padding:40px 0 40px;} -.padding-none{padding:0 !important;} -.padding{padding:10px !important;} -.padding-small{padding:5px !important;} -.padding-large{padding:22px !important;} -.padding-top-none{padding-top:0 !important;} -.padding-top{padding-top:10px !important;} -.padding-top-small{padding-top:5px !important;} -.padding-top-large{padding-top:22px !important;} -.padding-right-none{padding-right:0 !important;} -.padding-right{padding-right:10px !important;} -.padding-right-small{padding-right:5px !important;} -.padding-right-large{padding-right:22px !important;} -.padding-bottom-none{padding-bottom:0 !important;} -.padding-bottom{padding-bottom:10px !important;} -.padding-bottom-small{padding-bottom:5px !important;} -.padding-bottom-large{padding-bottom:22px !important;} -.padding-left-none{padding-left:0 !important;} -.padding-left{padding-left:10px !important;} -.padding-left-small{padding-left:5px !important;} -.padding-left-large{padding-left:22px !important;} -.margin-none{margin:0 !important;} -.margin{margin:10px !important;} -.margin-small{margin:5px !important;} -.margin-large{margin:22px !important;} -.margin-top-none{margin-top:0 !important;} -.margin-top{margin-top:10px !important;} -.margin-top-large{margin-top:22px !important;} -.margin-top-small{margin-top:5px !important;} -.margin-right-none{margin-right:0 !important;} -.margin-right{margin-right:10px !important;} -.margin-right-large{margin-right:22px !important;} -.margin-right-small{margin-right:5px !important;} -.margin-bottom-none{margin-bottom:0 !important;} -.margin-bottom{margin-bottom:10px !important;} -.margin-bottom-large{margin-bottom:22px !important;} -.margin-bottom-small{margin-bottom:5px !important;} -.margin-left-none{margin-left:0 !important;} -.margin-left{margin-left:10px !important;} -.margin-left-large{margin-left:22px !important;} -.margin-left-small{margin-left:5px !important;} -.border-left-none{border-left:none !important;} -.border-right-none{border-right:none !important;} -.border-bottom-none{border-bottom:none !important;} -.border-top-none{border-top:none !important;} -.display-block{display:block;} -.no-underline:hover{text-decoration:none;} -.clickable{cursor:pointer;} -.strong{font-weight:bold;} -.em{font-style:italic;} -.small{font-size:85%;} -.no-link{color:#333333;} -.text-sans-serif{font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;} -.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;} -.text-default{font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;font-weight:normal;} -.hilite{color:#c83025;}.hilite:hover{color:#9d261d;text-decoration:underline;} -.hilite [class^="icon-"]:before,.hilite [class*=" icon-"]:before{display:inline;} -.strike{text-decoration:line-through;} -.upper{text-transform:uppercase;} -.lower{text-transform:lowercase;} -.navbar .brand{font-family:museo-slab,"Helvetica Neue",Helvetica,Arial,sans-serif;}.navbar .brand .icon-flag{padding-right:3px;} -.navbar .nav>li>a{padding:12px 10px 9px;} -.navbar .nav.pull-right{margin-right:-10px;} -h1,h2,h3,h4,h5,h6{font-family:museo-slab,"Helvetica Neue",Helvetica,Arial,sans-serif;} -#iconCarousel{font-size:220px;text-align:center;line-height:225px;text-shadow:2px 2px 3px #222222;}#iconCarousel a{color:#ffffff;} -#iconCarousel .carousel-control{top:253px;width:30px;height:30px;background:none;border-width:0;font-size:30px;line-height:25px;left:117px;}#iconCarousel .carousel-control.right{left:auto;right:117px;} -.jumbotron{background:#9d261d;border-bottom:1px solid #721c15;background-color:#99251c;background-repeat:repeat-x;background-image:-moz-linear-gradient(-40deg, #9d261d, #99251c);background-image:-webkit-linear-gradient(-40deg, #9d261d, #99251c);background-image:-o-linear-gradient(-40deg, #9d261d, #99251c);background-image:linear-gradient(-40deg, #9d261d, #99251c);text-shadow:2px 2px 2px #333333;}.jumbotron,.jumbotron h1{color:#ffffff;} -.jumbotron h1{font-size:80px;letter-spacing:-2px;line-height:1;} -.jumbotron p{margin-top:15px;margin-bottom:15px;font-size:30px;line-height:1.3;font-weight:lighter;} -.jumbotron .actions{margin-top:25px;} -.jumbotron ul{margin-left:50px;}.jumbotron ul li{font-size:15px;line-height:30px;text-shadow:1px 1px 1px #333333;}.jumbotron ul li.icon-large:before{text-indent:-2em;vertical-align:baseline;} -.jumbotron .btn-large{font-family:museo-slab,"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500;font-size:24px;padding:17px 30px;letter-spacing:-1px;} -.jumbotron .hero-content{text-align:center;} -.jumbotron .shameless-self-promotion{font-size:14px;margin-top:25px;color:#c47d77;text-shadow:none;}.jumbotron .shameless-self-promotion a{color:#e2bebb;} -.jumbotron .shameless-self-promotion a:hover{color:#ffffff;} -.jumbotron-index{padding:40px 0;}.jumbotron-index h1{font-size:80px;letter-spacing:-2px;line-height:1;margin:0 0 15px;} -.jumbotron-index p{margin-top:15px;margin-bottom:15px;font-size:30px;line-height:1.3;} -.jumbotron-ad{padding:20px 0;}.jumbotron-ad h1{margin-top:25px;} -.jumbotron-ad p{margin-bottom:35px;} -.jumbotron-icon{padding:20px 0 30px;background-color:#e6e6e6;background-repeat:repeat-x;background-image:-moz-linear-gradient(-40deg, #eeeeee, #e6e6e6);background-image:-webkit-linear-gradient(-40deg, #eeeeee, #e6e6e6);background-image:-o-linear-gradient(-40deg, #eeeeee, #e6e6e6);background-image:linear-gradient(-40deg, #eeeeee, #e6e6e6);color:#222222;text-shadow:1px 1px 1px #ffffff;border-bottom:solid 1px #c4c4c4;}.jumbotron-icon h1{color:#222222;font-size:40px;}.jumbotron-icon h1 small{letter-spacing:normal;font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;margin-left:20px;} -.jumbotron-icon .info-details{float:left;}.jumbotron-icon .info-details p{margin:25px 0;font-weight:bold;} -.jumbotron-icon .info-details .dl-horizontal dt{width:80px;} -.jumbotron-icon .info-details .dl-horizontal dd{margin-left:95px;} -.jumbotron-icon .icon-2{font-size:2em;} -.jumbotron-icon .icon-3{font-size:4em;} -.jumbotron-icon .icon-4{font-size:7em;} -.jumbotron-icon .icon-5{font-size:12em;} -.jumbotron-icon .icon-6{font-size:20em;} -.jumbotron-icon .icon-1,.jumbotron-icon .icon-2,.jumbotron-icon .icon-3,.jumbotron-icon .icon-4,.jumbotron-icon .icon-5,.jumbotron-icon .icon-6{margin-right:0.07142857142857142em;} -.stripe-ad{margin-bottom:22px;}.stripe-ad .lead{margin-top:10px;margin-right:30px;} -.btn-primary{color:#333333;text-shadow:0 -1px 0 rgba(255, 255, 255, 0.25);}.btn-primary:hover{text-shadow:0 -1px 0 rgba(255, 255, 255, 0.25);color:#333333;} -section{margin-top:40px;} -.stacked{padding-top:35px;height:105px;} -#social-buttons{padding:22px 0 17px;text-align:center;background-color:#f5f5f5;border-top:1px solid #fff;border-bottom:1px solid #ddd;}#social-buttons ul.unstyled{margin:0;} -#social-buttons .btn{font-weight:bold;padding:0px 5px;line-height:17px;margin:0;} -#social-buttons .count.btn{background:#ffffff;font-weight:normal;} -.the-icons{margin-top:22px;}.the-icons .span3 a{display:block;cursor:pointer;line-height:32px;height:32px;padding-left:10px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.the-icons .span3 a,.the-icons .span3 a:hover{color:#222222;} -.the-icons .span3 a [class^="icon-"],.the-icons .span3 a [class*=" icon-"]{width:32px;font-size:14px;display:inline-block;text-align:right;margin-right:10px;} -.the-icons .span3 a:hover{background-color:#fff0f0;text-decoration:none;}.the-icons .span3 a:hover [class^="icon-"],.the-icons .span3 a:hover [class*=" icon-"]{*font-size:28px;*vertical-align:middle;} -.the-icons .span3 a:hover [class^="icon-"]:before,.the-icons .span3 a:hover [class*=" icon-"]:before{font-size:28px;vertical-align:-5px;} -#why .span4,#whats-new .span4{margin-bottom:20px;} -#why h4 [class^="icon-"]:before,#whats-new h4 [class^="icon-"]:before,#why h4 [class*=" icon-"]:before,#whats-new h4 [class*=" icon-"]:before{vertical-align:-10%;font-size:28px;display:inline-block;width:1.0714285714285714em;text-align:center;margin-right:5px;} -.rating{unicode-bidi:bidi-override;direction:rtl;font-size:30px;}.rating span.star{font-family:FontAwesome;font-weight:normal;font-style:normal;display:inline-block;}.rating span.star:hover{cursor:pointer;} -.rating span.star:before{content:"\f006";padding-right:5px;color:#999999;} -.rating span.star:hover:before,.rating span.star:hover~span.star:before{content:"\f005";color:#e3cf7a;} -.label,.badge{background-color:#eeeeee;} -.well.well-transparent{background-color:transparent;} -footer{background-color:#9d261d;border-top:1px solid #872119;color:#ddb3b0;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);margin-top:60px;padding-top:45px;padding-bottom:60px;*zoom:1;}footer a{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}footer a:hover{color:#ffffff;} -footer ul{line-height:25px;} -footer .project{margin-top:10px;} -.navbar .nav>li.dropdown-split-right>a{padding-left:7px;} -.navbar .nav>li.dropdown-split-left>a{padding-right:0;} -.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;} -.clearfix:after{clear:both;} -.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} -.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} -@-ms-viewport{width:device-width;}.hidden{display:none;visibility:hidden;} -.visible-phone{display:none !important;} -.visible-tablet{display:none !important;} -.hidden-desktop{display:none !important;} -.visible-desktop{display:inherit !important;} -@media (min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important ;} .visible-tablet{display:inherit !important;} .hidden-tablet{display:none !important;}}@media (max-width:767px){.hidden-desktop{display:inherit !important;} .visible-desktop{display:none !important;} .visible-phone{display:inherit !important;} .hidden-phone{display:none !important;}}.visible-print{display:none !important;} -@media print{.visible-print{display:inherit !important;} .hidden-print{display:none !important;}}@media (min-width:1200px){.row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} .row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row{margin-left:-30px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} .row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:30px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px;} .span12{width:1170px;} .span11{width:1070px;} .span10{width:970px;} .span9{width:870px;} .span8{width:770px;} .span7{width:670px;} .span6{width:570px;} .span5{width:470px;} .span4{width:370px;} .span3{width:270px;} .span2{width:170px;} .span1{width:70px;} .offset12{margin-left:1230px;} .offset11{margin-left:1130px;} .offset10{margin-left:1030px;} .offset9{margin-left:930px;} .offset8{margin-left:830px;} .offset7{margin-left:730px;} .offset6{margin-left:630px;} .offset5{margin-left:530px;} .offset4{margin-left:430px;} .offset3{margin-left:330px;} .offset2{margin-left:230px;} .offset1{margin-left:130px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} .row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;} .row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} .row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;} .row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} .row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;} .row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} .row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;} .row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} .row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;} .row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} .row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} .row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} .row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} .row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} .row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} .row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} .row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} .row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} .row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} .row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} .row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} .row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} .row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} .row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} .row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} .row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} .row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} .row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} .row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} .row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} .row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} .row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} .row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} .row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:30px;} input.span12,textarea.span12,.uneditable-input.span12{width:1156px;} input.span11,textarea.span11,.uneditable-input.span11{width:1056px;} input.span10,textarea.span10,.uneditable-input.span10{width:956px;} input.span9,textarea.span9,.uneditable-input.span9{width:856px;} input.span8,textarea.span8,.uneditable-input.span8{width:756px;} input.span7,textarea.span7,.uneditable-input.span7{width:656px;} input.span6,textarea.span6,.uneditable-input.span6{width:556px;} input.span5,textarea.span5,.uneditable-input.span5{width:456px;} input.span4,textarea.span4,.uneditable-input.span4{width:356px;} input.span3,textarea.span3,.uneditable-input.span3{width:256px;} input.span2,textarea.span2,.uneditable-input.span2{width:156px;} input.span1,textarea.span1,.uneditable-input.span1{width:56px;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:30px;} input.span12,textarea.span12,.uneditable-input.span12{width:1156px;} input.span11,textarea.span11,.uneditable-input.span11{width:1056px;} input.span10,textarea.span10,.uneditable-input.span10{width:956px;} input.span9,textarea.span9,.uneditable-input.span9{width:856px;} input.span8,textarea.span8,.uneditable-input.span8{width:756px;} input.span7,textarea.span7,.uneditable-input.span7{width:656px;} input.span6,textarea.span6,.uneditable-input.span6{width:556px;} input.span5,textarea.span5,.uneditable-input.span5{width:456px;} input.span4,textarea.span4,.uneditable-input.span4{width:356px;} input.span3,textarea.span3,.uneditable-input.span3{width:256px;} input.span2,textarea.span2,.uneditable-input.span2{width:156px;} input.span1,textarea.span1,.uneditable-input.span1{width:56px;} .thumbnails{margin-left:-30px;} .thumbnails>li{margin-left:30px;} .row-fluid .thumbnails{margin-left:0;}}@media (min-width:1200px){#iconCarousel{font-size:290px;line-height:295px;}#iconCarousel .carousel-control{top:310px;width:30px;height:30px;font-size:40px;line-height:35px;left:145px;}#iconCarousel .carousel-control.right{right:145px;} .jumbotron-index{padding:50px 0;}.jumbotron-index h1{font-size:100px;} .jumbotron-index p{font-size:40px;margin:20px 0;} .jumbotron-index .btn-large{font-size:30px;padding:21px 35px;} .jumbotron-index .shameless-self-promotion{margin-top:30px;} .jumbotron-ad{padding:50px 0;}.jumbotron-ad h1{font-size:90px;} .jumbotron-ad p{font-size:35px;margin:20px 0;} .stripe-ad .lead{margin-top:7px;} .lead{font-size:26px;line-height:36px;}}@media (min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} .row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} .row:before,.row:after{display:table;content:"";line-height:0;} .row:after{clear:both;} [class*="span"]{float:left;min-height:1px;margin-left:20px;} .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px;} .span12{width:724px;} .span11{width:662px;} .span10{width:600px;} .span9{width:538px;} .span8{width:476px;} .span7{width:414px;} .span6{width:352px;} .span5{width:290px;} .span4{width:228px;} .span3{width:166px;} .span2{width:104px;} .span1{width:42px;} .offset12{margin-left:764px;} .offset11{margin-left:702px;} .offset10{margin-left:640px;} .offset9{margin-left:578px;} .offset8{margin-left:516px;} .offset7{margin-left:454px;} .offset6{margin-left:392px;} .offset5{margin-left:330px;} .offset4{margin-left:268px;} .offset3{margin-left:206px;} .offset2{margin-left:144px;} .offset1{margin-left:82px;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;} .row-fluid:after{clear:both;} .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;} .row-fluid [class*="span"]:first-child{margin-left:0;} .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%;} .row-fluid .span12{width:100%;*width:99.94680851063829%;} .row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} .row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;} .row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} .row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;} .row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} .row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;} .row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} .row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;} .row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} .row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;} .row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} .row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} .row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} .row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} .row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} .row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} .row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} .row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} .row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} .row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} .row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} .row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} .row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} .row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} .row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} .row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} .row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} .row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} .row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} .row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} .row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} .row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} .row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} .row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} .row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12,textarea.span12,.uneditable-input.span12{width:710px;} input.span11,textarea.span11,.uneditable-input.span11{width:648px;} input.span10,textarea.span10,.uneditable-input.span10{width:586px;} input.span9,textarea.span9,.uneditable-input.span9{width:524px;} input.span8,textarea.span8,.uneditable-input.span8{width:462px;} input.span7,textarea.span7,.uneditable-input.span7{width:400px;} input.span6,textarea.span6,.uneditable-input.span6{width:338px;} input.span5,textarea.span5,.uneditable-input.span5{width:276px;} input.span4,textarea.span4,.uneditable-input.span4{width:214px;} input.span3,textarea.span3,.uneditable-input.span3{width:152px;} input.span2,textarea.span2,.uneditable-input.span2{width:90px;} input.span1,textarea.span1,.uneditable-input.span1{width:28px;} input,textarea,.uneditable-input{margin-left:0;} .controls-row [class*="span"]+[class*="span"]{margin-left:20px;} input.span12,textarea.span12,.uneditable-input.span12{width:710px;} input.span11,textarea.span11,.uneditable-input.span11{width:648px;} input.span10,textarea.span10,.uneditable-input.span10{width:586px;} input.span9,textarea.span9,.uneditable-input.span9{width:524px;} input.span8,textarea.span8,.uneditable-input.span8{width:462px;} input.span7,textarea.span7,.uneditable-input.span7{width:400px;} input.span6,textarea.span6,.uneditable-input.span6{width:338px;} input.span5,textarea.span5,.uneditable-input.span5{width:276px;} input.span4,textarea.span4,.uneditable-input.span4{width:214px;} input.span3,textarea.span3,.uneditable-input.span3{width:152px;} input.span2,textarea.span2,.uneditable-input.span2{width:90px;} input.span1,textarea.span1,.uneditable-input.span1{width:28px;}}@media (min-width:768px) and (max-width:979px){#iconCarousel{font-size:200px;line-height:205px;}#iconCarousel .carousel-control{top:230px;width:30px;height:30px;font-size:40px;line-height:40px;left:74px;}#iconCarousel .carousel-control.right{right:74px;} .jumbotron-index{padding:50px 0;}.jumbotron-index h1{font-size:65px;} .jumbotron-index p{font-size:25px;} .jumbotron-index .shameless-self-promotion{font-size:12px;} .jumbotron-ad p{font-size:28px;} .jumbotron-icon h1 small{display:block;margin-top:15px;margin-left:0;line-height:20px;} .stripe-ad .lead{margin:0;font-size:19px;} .stripe-ad .span8{width:402px;} .stripe-ad .span4{width:302px;} #why .span4,#whats-new .span4,#new-styles .span4{width:352px;} .the-icons .span3{width:228px;} .wrapper{margin:0 auto -251px;} .push{height:251px;} .footer{margin-top:60px;height:110px;padding:40px 0 40px;} .footer{padding-left:20px;padding-right:20px;}}@media (max-width:767px){body{padding-left:20px;padding-right:20px;} .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-left:-20px;margin-right:-20px;} .container-fluid{padding:0;} .dl-horizontal dt{float:none;clear:none;width:auto;text-align:left;} .dl-horizontal dd{margin-left:0;} .container{width:auto;} .row-fluid{width:100%;} .row,.thumbnails{margin-left:0;} .thumbnails>li{float:none;margin-left:0;} [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{float:none;display:block;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .row-fluid [class*="offset"]:first-child{margin-left:0;} .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto;} .controls-row [class*="span"]+[class*="span"]{margin-left:0;} .modal{position:fixed;top:20px;left:20px;right:20px;width:auto;margin:0;}.modal.fade{top:-100px;} .modal.fade.in{top:20px;}}@media (max-width:480px){.nav-collapse{-webkit-transform:translate3d(0, 0, 0);} .page-header h1 small{display:block;line-height:20px;} input[type="checkbox"],input[type="radio"]{border:1px solid #ccc;} .form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left;} .form-horizontal .controls{margin-left:0;} .form-horizontal .control-list{padding-top:0;} .form-horizontal .form-actions{padding-left:10px;padding-right:10px;} .media .pull-left,.media .pull-right{float:none;display:block;margin-bottom:10px;} .media-object{margin-right:0;margin-left:0;} .modal{top:10px;left:10px;right:10px;} .modal-header .close{padding:10px;margin:-10px;} .carousel-caption{position:static;}}@media (max-width:767px){.jumbotron,footer,#social-buttons{padding-left:20px;padding-right:20px;margin-right:-20px;margin-left:-20px;} #iconCarousel{font-size:180px;line-height:180px;width:280px;margin:30px auto 0;}#iconCarousel .carousel-control{top:90px;width:44px;height:44px;font-size:44px;line-height:44px;left:-7px;}#iconCarousel .carousel-control.right{right:-7px;} .jumbotron-index h1{font-size:58px;} .jumbotron-index p{font-size:24px;} .jumbotron-index .btn-large{font-size:20px;padding:14px 26px;} .jumbotron-index .shameless-self-promotion{font-size:12px;} .jumbotron-ad h1{font-size:39px;} .jumbotron-ad p{font-size:20px;margin-bottom:20px;} .jumbotron-icon .icon-1,.jumbotron-icon .icon-2,.jumbotron-icon .icon-3,.jumbotron-icon .icon-4,.jumbotron-icon .icon-5,.jumbotron-icon .icon-6{margin-right:0;} .jumbotron-icon .icon-6{font-size:16em;} .jumbotron-icon h1 small{display:block;margin-top:15px;margin-left:0;line-height:20px;} .stripe-ad .lead{margin:0 0 30px;} #carbonads-container{margin-right:-20px;margin-left:-20px;}#carbonads-container .carbonad{width:100%;height:120px;border-right:none;border-left:none;} #azcarbon{width:300px;margin:0 auto;} .wrapper{margin:0 auto -311px;} .push{height:311px;} .footer{margin-top:60px;height:170px;padding:40px 0 40px;} .footer{padding-left:20px;padding-right:20px;}}@media (max-width:767px){body{padding-top:0;} .navbar-fixed-top,.navbar-fixed-bottom{position:static;} .navbar-fixed-top{margin-bottom:20px;} .navbar-fixed-bottom{margin-top:20px;} .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px;} .navbar .container{width:auto;padding:0;} .navbar .brand{padding-left:10px;padding-right:10px;margin:0 0 0 -5px;} .nav-collapse{clear:both;} .nav-collapse .nav{float:none;margin:0 0 10px;} .nav-collapse .nav>li{float:none;} .nav-collapse .nav>li>a{margin-bottom:2px;} .nav-collapse .nav>.divider-vertical{display:none;} .nav-collapse .nav .nav-header{color:#777777;text-shadow:none;} .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .nav-collapse .dropdown-menu li+li a{margin-bottom:2px;} .nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2;} .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999999;} .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111111;} .nav-collapse.in .btn-group{margin-top:5px;padding:0;} .nav-collapse .dropdown-menu{position:static;top:auto;left:auto;float:none;display:none;max-width:none;margin:0 15px;padding:0;background-color:transparent;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} .nav-collapse .open>.dropdown-menu{display:block;} .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none;} .nav-collapse .dropdown-menu .divider{display:none;} .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none;} .nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);} .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111111;border-bottom-color:#111111;} .navbar .nav-collapse .nav.pull-right{float:none;margin-left:0;} .nav-collapse,.nav-collapse.collapse{overflow:hidden;height:0;} .navbar .btn-navbar{display:block;} .navbar-static .navbar-inner{padding-left:10px;padding-right:10px;}}@media (min-width:768px){.nav-collapse.collapse{height:auto !important;overflow:visible !important;}}@media (max-width:767px){} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome.zip b/library/font_awesome/src/3.2.1/assets/font-awesome.zip deleted file mode 100644 index 9b9abdc76..000000000 Binary files a/library/font_awesome/src/3.2.1/assets/font-awesome.zip and /dev/null differ diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome-ie7.css b/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome-ie7.css deleted file mode 100644 index 17f07766c..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome-ie7.css +++ /dev/null @@ -1,1203 +0,0 @@ -/*! - * Font Awesome 3.2.1 - * the iconic font designed for Bootstrap - * ------------------------------------------------------------------------------ - * The full suite of pictographic icons, examples, and documentation can be - * found at http://fontawesome.io. Stay up to date on Twitter at - * http://twitter.com/fontawesome. - * - * License - * ------------------------------------------------------------------------------ - * - The Font Awesome font is licensed under SIL OFL 1.1 - - * http://scripts.sil.org/OFL - * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - - * http://opensource.org/licenses/mit-license.html - * - Font Awesome documentation licensed under CC BY 3.0 - - * http://creativecommons.org/licenses/by/3.0/ - * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: - * "Font Awesome by Dave Gandy - http://fontawesome.io" - * - * Author - Dave Gandy - * ------------------------------------------------------------------------------ - * Email: dave@fontawesome.io - * Twitter: http://twitter.com/davegandy - * Work: Lead Product Designer @ Kyruus - http://kyruus.com - */ -.icon-large { - font-size: 1.3333333333333333em; - margin-top: -4px; - padding-top: 3px; - margin-bottom: -4px; - padding-bottom: 3px; - vertical-align: middle; -} -.nav [class^="icon-"], -.nav [class*=" icon-"] { - vertical-align: inherit; - margin-top: -4px; - padding-top: 3px; - margin-bottom: -4px; - padding-bottom: 3px; -} -.nav [class^="icon-"].icon-large, -.nav [class*=" icon-"].icon-large { - vertical-align: -25%; -} -.nav-pills [class^="icon-"].icon-large, -.nav-tabs [class^="icon-"].icon-large, -.nav-pills [class*=" icon-"].icon-large, -.nav-tabs [class*=" icon-"].icon-large { - line-height: .75em; - margin-top: -7px; - padding-top: 5px; - margin-bottom: -5px; - padding-bottom: 4px; -} -.btn [class^="icon-"].pull-left, -.btn [class*=" icon-"].pull-left, -.btn [class^="icon-"].pull-right, -.btn [class*=" icon-"].pull-right { - vertical-align: inherit; -} -.btn [class^="icon-"].icon-large, -.btn [class*=" icon-"].icon-large { - margin-top: -0.5em; -} -a [class^="icon-"], -a [class*=" icon-"] { - cursor: pointer; -} -.icon-glass { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-music { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-search { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-envelope-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-heart { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-star { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-star-empty { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-user { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-film { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-th-large { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-th { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-th-list { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-ok { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-remove { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-zoom-in { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-zoom-out { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-off { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-power-off { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-signal { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-cog { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-gear { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-trash { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-home { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-file-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-time { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-road { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-download-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-download { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-upload { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-inbox { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-play-circle { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-repeat { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-rotate-right { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-refresh { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-list-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-lock { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-flag { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-headphones { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-volume-off { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-volume-down { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-volume-up { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-qrcode { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-barcode { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-tag { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-tags { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-book { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-bookmark { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-print { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-camera { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-font { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-bold { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-italic { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-text-height { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-text-width { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-align-left { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-align-center { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-align-right { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-align-justify { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-list { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-indent-left { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-indent-right { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-facetime-video { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-picture { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-pencil { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-map-marker { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-adjust { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-tint { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-edit { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-share { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-check { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-move { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-step-backward { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-fast-backward { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-backward { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-play { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-pause { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-stop { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-forward { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-fast-forward { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-step-forward { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-eject { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-chevron-left { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-chevron-right { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-plus-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-minus-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-remove-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-ok-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-question-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-info-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-screenshot { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-remove-circle { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-ok-circle { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-ban-circle { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-arrow-left { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-arrow-right { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-arrow-up { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-arrow-down { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-share-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-mail-forward { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-resize-full { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-resize-small { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-plus { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-minus { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-asterisk { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-exclamation-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-gift { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-leaf { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-fire { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-eye-open { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-eye-close { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-warning-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-plane { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-calendar { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-random { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-comment { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-magnet { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-chevron-up { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-chevron-down { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-retweet { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-shopping-cart { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-folder-close { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-folder-open { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-resize-vertical { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-resize-horizontal { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-bar-chart { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-twitter-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-facebook-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-camera-retro { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-key { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-cogs { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-gears { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-comments { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-thumbs-up-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-thumbs-down-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-star-half { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-heart-empty { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-signout { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-linkedin-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-pushpin { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-external-link { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-signin { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-trophy { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-github-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-upload-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-lemon { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-phone { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-check-empty { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-unchecked { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-bookmark-empty { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-phone-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-twitter { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-facebook { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-github { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-unlock { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-credit-card { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-rss { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-hdd { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-bullhorn { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-bell { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-certificate { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-hand-right { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-hand-left { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-hand-up { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-hand-down { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-circle-arrow-left { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-circle-arrow-right { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-circle-arrow-up { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-circle-arrow-down { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-globe { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-wrench { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-tasks { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-filter { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-briefcase { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-fullscreen { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-group { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-link { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-cloud { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-beaker { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-cut { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-copy { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-paper-clip { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-paperclip { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-save { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-sign-blank { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-reorder { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-list-ul { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-list-ol { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-strikethrough { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-underline { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-table { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-magic { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-truck { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-pinterest { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-pinterest-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-google-plus-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-google-plus { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-money { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-caret-down { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-caret-up { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-caret-left { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-caret-right { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-columns { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-sort { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-sort-down { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-sort-up { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-envelope { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-linkedin { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-undo { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-rotate-left { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-legal { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-dashboard { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-comment-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-comments-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-bolt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-sitemap { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-umbrella { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-paste { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-lightbulb { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-exchange { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-cloud-download { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-cloud-upload { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-user-md { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-stethoscope { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-suitcase { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-bell-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-coffee { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-food { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-file-text-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-building { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-hospital { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-ambulance { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-medkit { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-fighter-jet { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-beer { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-h-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-plus-sign-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-double-angle-left { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-double-angle-right { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-double-angle-up { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-double-angle-down { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-angle-left { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-angle-right { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-angle-up { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-angle-down { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-desktop { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-laptop { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-tablet { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-mobile-phone { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-circle-blank { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-quote-left { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-quote-right { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-spinner { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-circle { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-reply { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-mail-reply { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-github-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-folder-close-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-folder-open-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-expand-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-collapse-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-smile { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-frown { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-meh { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-gamepad { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-keyboard { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-flag-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-flag-checkered { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-terminal { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-code { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-reply-all { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-mail-reply-all { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-star-half-empty { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-star-half-full { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-location-arrow { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-crop { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-code-fork { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-unlink { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-question { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-info { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-exclamation { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-superscript { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-subscript { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-eraser { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-puzzle-piece { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-microphone { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-microphone-off { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-shield { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-calendar-empty { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-fire-extinguisher { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-rocket { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-maxcdn { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-chevron-sign-left { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-chevron-sign-right { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-chevron-sign-up { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-chevron-sign-down { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-html5 { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-css3 { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-anchor { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-unlock-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-bullseye { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-ellipsis-horizontal { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-ellipsis-vertical { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-rss-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-play-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-ticket { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-minus-sign-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-check-minus { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-level-up { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-level-down { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-check-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-edit-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-external-link-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-share-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-compass { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-collapse { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-collapse-top { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-expand { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-eur { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-euro { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-gbp { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-usd { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-dollar { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-inr { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-rupee { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-jpy { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-yen { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-cny { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-renminbi { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-krw { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-won { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-btc { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-bitcoin { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-file { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-file-text { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-sort-by-alphabet { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-sort-by-alphabet-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-sort-by-attributes { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-sort-by-attributes-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-sort-by-order { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-sort-by-order-alt { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-thumbs-up { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-thumbs-down { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-youtube-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-youtube { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-xing { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-xing-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-youtube-play { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-dropbox { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-stackexchange { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-instagram { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-flickr { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-adn { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-bitbucket { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-bitbucket-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-tumblr { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-tumblr-sign { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-long-arrow-down { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-long-arrow-up { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-long-arrow-left { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-long-arrow-right { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-apple { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-windows { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-android { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-linux { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-dribbble { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-skype { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-foursquare { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-trello { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-female { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-male { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-gittip { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-sun { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-moon { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-archive { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-bug { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-vk { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-weibo { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} -.icon-renren { - *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ''); -} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome-ie7.min.css b/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome-ie7.min.css deleted file mode 100644 index d3dae63bd..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome-ie7.min.css +++ /dev/null @@ -1,384 +0,0 @@ -.icon-large{font-size:1.3333333333333333em;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;vertical-align:middle;} -.nav [class^="icon-"],.nav [class*=" icon-"]{vertical-align:inherit;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;}.nav [class^="icon-"].icon-large,.nav [class*=" icon-"].icon-large{vertical-align:-25%;} -.nav-pills [class^="icon-"].icon-large,.nav-tabs [class^="icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large{line-height:.75em;margin-top:-7px;padding-top:5px;margin-bottom:-5px;padding-bottom:4px;} -.btn [class^="icon-"].pull-left,.btn [class*=" icon-"].pull-left,.btn [class^="icon-"].pull-right,.btn [class*=" icon-"].pull-right{vertical-align:inherit;} -.btn [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large{margin-top:-0.5em;} -a [class^="icon-"],a [class*=" icon-"]{cursor:pointer;} -.icon-glass{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-music{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-search{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-envelope-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-heart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-star{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-star-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-user{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-film{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-th-large{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-th{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-th-list{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ok{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-remove{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-zoom-in{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-zoom-out{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-power-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-signal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-cog{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-gear{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-trash{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-home{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-file-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-time{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-road{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-download-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-download{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-upload{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-inbox{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-play-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-repeat{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-rotate-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-refresh{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-list-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-lock{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-flag{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-headphones{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-volume-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-volume-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-volume-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-qrcode{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-barcode{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-tag{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-tags{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-book{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bookmark{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-print{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-camera{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-font{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bold{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-italic{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-text-height{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-text-width{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-align-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-align-center{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-align-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-align-justify{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-list{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-indent-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-indent-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-facetime-video{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-picture{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-pencil{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-map-marker{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-adjust{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-tint{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-edit{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-share{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-check{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-move{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-step-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-fast-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-play{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-pause{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-stop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-fast-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-step-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-eject{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-plus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-minus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-remove-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ok-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-question-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-info-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-screenshot{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-remove-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ok-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ban-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-share-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-mail-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-resize-full{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-resize-small{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-plus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-minus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-asterisk{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-exclamation-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-gift{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-leaf{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-fire{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-eye-open{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-eye-close{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-warning-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-plane{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-calendar{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-random{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-comment{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-magnet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-retweet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-shopping-cart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-folder-close{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-folder-open{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-resize-vertical{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-resize-horizontal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bar-chart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-twitter-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-facebook-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-camera-retro{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-key{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-cogs{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-gears{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-comments{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-thumbs-up-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-thumbs-down-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-star-half{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-heart-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-signout{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-linkedin-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-pushpin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-external-link{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-signin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-trophy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-github-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-upload-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-lemon{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-phone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-check-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-unchecked{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bookmark-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-phone-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-twitter{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-facebook{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-github{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-unlock{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-credit-card{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-rss{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-hdd{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bullhorn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bell{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-certificate{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-hand-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-hand-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-hand-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-hand-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-circle-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-circle-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-circle-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-circle-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-globe{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-wrench{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-tasks{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-filter{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-briefcase{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-fullscreen{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-group{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-link{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-cloud{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-beaker{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-cut{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-copy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-paper-clip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-paperclip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-save{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sign-blank{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-reorder{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-list-ul{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-list-ol{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-strikethrough{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-underline{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-table{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-magic{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-truck{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-pinterest{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-pinterest-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-google-plus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-google-plus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-money{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-caret-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-caret-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-caret-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-caret-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-columns{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-envelope{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-linkedin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-undo{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-rotate-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-legal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-dashboard{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-comment-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-comments-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bolt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sitemap{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-umbrella{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-paste{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-lightbulb{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-exchange{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-cloud-download{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-cloud-upload{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-user-md{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-stethoscope{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-suitcase{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bell-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-coffee{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-food{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-file-text-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-building{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-hospital{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ambulance{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-medkit{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-fighter-jet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-beer{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-h-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-plus-sign-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-double-angle-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-double-angle-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-double-angle-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-double-angle-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-angle-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-angle-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-angle-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-angle-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-desktop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-laptop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-tablet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-mobile-phone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-circle-blank{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-quote-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-quote-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-spinner{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-reply{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-mail-reply{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-github-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-folder-close-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-folder-open-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-expand-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-collapse-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-smile{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-frown{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-meh{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-gamepad{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-keyboard{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-flag-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-flag-checkered{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-terminal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-code{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-reply-all{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-mail-reply-all{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-star-half-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-star-half-full{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-location-arrow{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-crop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-code-fork{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-unlink{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-question{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-info{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-exclamation{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-superscript{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-subscript{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-eraser{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-puzzle-piece{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-microphone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-microphone-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-shield{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-calendar-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-fire-extinguisher{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-rocket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-maxcdn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-sign-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-sign-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-sign-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-sign-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-html5{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-css3{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-anchor{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-unlock-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bullseye{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ellipsis-horizontal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ellipsis-vertical{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-rss-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-play-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ticket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-minus-sign-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-check-minus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-level-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-level-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-check-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-edit-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-external-link-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-share-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-compass{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-collapse{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-collapse-top{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-expand{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-eur{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-euro{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-gbp{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-usd{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-dollar{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-inr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-rupee{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-jpy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-yen{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-cny{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-renminbi{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-krw{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-won{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-btc{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bitcoin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-file{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-file-text{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-by-alphabet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-by-alphabet-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-by-attributes{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-by-attributes-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-by-order{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-by-order-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-thumbs-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-thumbs-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-youtube-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-youtube{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-xing{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-xing-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-youtube-play{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-dropbox{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-stackexchange{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-instagram{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-flickr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-adn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bitbucket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bitbucket-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-tumblr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-tumblr-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-long-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-long-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-long-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-long-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-apple{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-windows{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-android{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-linux{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-dribbble{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-skype{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-foursquare{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-trello{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-female{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-male{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-gittip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sun{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-moon{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-archive{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bug{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-vk{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-weibo{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-renren{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome.css b/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome.css deleted file mode 100644 index 7ede1828a..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome.css +++ /dev/null @@ -1,1479 +0,0 @@ -/*! - * Font Awesome 3.2.1 - * the iconic font designed for Bootstrap - * ------------------------------------------------------------------------------ - * The full suite of pictographic icons, examples, and documentation can be - * found at http://fontawesome.io. Stay up to date on Twitter at - * http://twitter.com/fontawesome. - * - * License - * ------------------------------------------------------------------------------ - * - The Font Awesome font is licensed under SIL OFL 1.1 - - * http://scripts.sil.org/OFL - * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - - * http://opensource.org/licenses/mit-license.html - * - Font Awesome documentation licensed under CC BY 3.0 - - * http://creativecommons.org/licenses/by/3.0/ - * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: - * "Font Awesome by Dave Gandy - http://fontawesome.io" - * - * Author - Dave Gandy - * ------------------------------------------------------------------------------ - * Email: dave@fontawesome.io - * Twitter: http://twitter.com/davegandy - * Work: Lead Product Designer @ Kyruus - http://kyruus.com - */ -/* FONT PATH - * -------------------------- */ -@font-face { - font-family: 'FontAwesome'; - src: url('../font/fontawesome-webfont.eot?v=3.2.1'); - src: url('../font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=3.2.1') format('woff'), url('../font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'), url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg'); - font-weight: normal; - font-style: normal; -} -/* FONT AWESOME CORE - * -------------------------- */ -[class^="icon-"], -[class*=" icon-"] { - font-family: FontAwesome; - font-weight: normal; - font-style: normal; - text-decoration: inherit; - -webkit-font-smoothing: antialiased; - *margin-right: .3em; -} -[class^="icon-"]:before, -[class*=" icon-"]:before { - text-decoration: inherit; - display: inline-block; - speak: none; -} -/* makes the font 33% larger relative to the icon container */ -.icon-large:before { - vertical-align: -10%; - font-size: 1.3333333333333333em; -} -/* makes sure icons active on rollover in links */ -a [class^="icon-"], -a [class*=" icon-"] { - display: inline; -} -/* increased font size for icon-large */ -[class^="icon-"].icon-fixed-width, -[class*=" icon-"].icon-fixed-width { - display: inline-block; - width: 1.1428571428571428em; - text-align: right; - padding-right: 0.2857142857142857em; -} -[class^="icon-"].icon-fixed-width.icon-large, -[class*=" icon-"].icon-fixed-width.icon-large { - width: 1.4285714285714286em; -} -.icons-ul { - margin-left: 2.142857142857143em; - list-style-type: none; -} -.icons-ul > li { - position: relative; -} -.icons-ul .icon-li { - position: absolute; - left: -2.142857142857143em; - width: 2.142857142857143em; - text-align: center; - line-height: inherit; -} -[class^="icon-"].hide, -[class*=" icon-"].hide { - display: none; -} -.icon-muted { - color: #eeeeee; -} -.icon-light { - color: #ffffff; -} -.icon-dark { - color: #333333; -} -.icon-border { - border: solid 1px #eeeeee; - padding: .2em .25em .15em; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; -} -.icon-2x { - font-size: 2em; -} -.icon-2x.icon-border { - border-width: 2px; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.icon-3x { - font-size: 3em; -} -.icon-3x.icon-border { - border-width: 3px; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; -} -.icon-4x { - font-size: 4em; -} -.icon-4x.icon-border { - border-width: 4px; - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; -} -.icon-5x { - font-size: 5em; -} -.icon-5x.icon-border { - border-width: 5px; - -webkit-border-radius: 7px; - -moz-border-radius: 7px; - border-radius: 7px; -} -.pull-right { - float: right; -} -.pull-left { - float: left; -} -[class^="icon-"].pull-left, -[class*=" icon-"].pull-left { - margin-right: .3em; -} -[class^="icon-"].pull-right, -[class*=" icon-"].pull-right { - margin-left: .3em; -} -/* BOOTSTRAP SPECIFIC CLASSES - * -------------------------- */ -/* Bootstrap 2.0 sprites.less reset */ -[class^="icon-"], -[class*=" icon-"] { - display: inline; - width: auto; - height: auto; - line-height: normal; - vertical-align: baseline; - background-image: none; - background-position: 0% 0%; - background-repeat: repeat; - margin-top: 0; -} -/* more sprites.less reset */ -.icon-white, -.nav-pills > .active > a > [class^="icon-"], -.nav-pills > .active > a > [class*=" icon-"], -.nav-list > .active > a > [class^="icon-"], -.nav-list > .active > a > [class*=" icon-"], -.navbar-inverse .nav > .active > a > [class^="icon-"], -.navbar-inverse .nav > .active > a > [class*=" icon-"], -.dropdown-menu > li > a:hover > [class^="icon-"], -.dropdown-menu > li > a:hover > [class*=" icon-"], -.dropdown-menu > .active > a > [class^="icon-"], -.dropdown-menu > .active > a > [class*=" icon-"], -.dropdown-submenu:hover > a > [class^="icon-"], -.dropdown-submenu:hover > a > [class*=" icon-"] { - background-image: none; -} -/* keeps Bootstrap styles with and without icons the same */ -.btn [class^="icon-"].icon-large, -.nav [class^="icon-"].icon-large, -.btn [class*=" icon-"].icon-large, -.nav [class*=" icon-"].icon-large { - line-height: .9em; -} -.btn [class^="icon-"].icon-spin, -.nav [class^="icon-"].icon-spin, -.btn [class*=" icon-"].icon-spin, -.nav [class*=" icon-"].icon-spin { - display: inline-block; -} -.nav-tabs [class^="icon-"], -.nav-pills [class^="icon-"], -.nav-tabs [class*=" icon-"], -.nav-pills [class*=" icon-"], -.nav-tabs [class^="icon-"].icon-large, -.nav-pills [class^="icon-"].icon-large, -.nav-tabs [class*=" icon-"].icon-large, -.nav-pills [class*=" icon-"].icon-large { - line-height: .9em; -} -.btn [class^="icon-"].pull-left.icon-2x, -.btn [class*=" icon-"].pull-left.icon-2x, -.btn [class^="icon-"].pull-right.icon-2x, -.btn [class*=" icon-"].pull-right.icon-2x { - margin-top: .18em; -} -.btn [class^="icon-"].icon-spin.icon-large, -.btn [class*=" icon-"].icon-spin.icon-large { - line-height: .8em; -} -.btn.btn-small [class^="icon-"].pull-left.icon-2x, -.btn.btn-small [class*=" icon-"].pull-left.icon-2x, -.btn.btn-small [class^="icon-"].pull-right.icon-2x, -.btn.btn-small [class*=" icon-"].pull-right.icon-2x { - margin-top: .25em; -} -.btn.btn-large [class^="icon-"], -.btn.btn-large [class*=" icon-"] { - margin-top: 0; -} -.btn.btn-large [class^="icon-"].pull-left.icon-2x, -.btn.btn-large [class*=" icon-"].pull-left.icon-2x, -.btn.btn-large [class^="icon-"].pull-right.icon-2x, -.btn.btn-large [class*=" icon-"].pull-right.icon-2x { - margin-top: .05em; -} -.btn.btn-large [class^="icon-"].pull-left.icon-2x, -.btn.btn-large [class*=" icon-"].pull-left.icon-2x { - margin-right: .2em; -} -.btn.btn-large [class^="icon-"].pull-right.icon-2x, -.btn.btn-large [class*=" icon-"].pull-right.icon-2x { - margin-left: .2em; -} -/* Fixes alignment in nav lists */ -.nav-list [class^="icon-"], -.nav-list [class*=" icon-"] { - line-height: inherit; -} -/* EXTRAS - * -------------------------- */ -/* Stacked and layered icon */ -.icon-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: -35%; -} -.icon-stack [class^="icon-"], -.icon-stack [class*=" icon-"] { - display: block; - text-align: center; - position: absolute; - width: 100%; - height: 100%; - font-size: 1em; - line-height: inherit; - *line-height: 2em; -} -.icon-stack .icon-stack-base { - font-size: 2em; - *line-height: 1em; -} -/* Animated rotating icon */ -.icon-spin { - display: inline-block; - -moz-animation: spin 2s infinite linear; - -o-animation: spin 2s infinite linear; - -webkit-animation: spin 2s infinite linear; - animation: spin 2s infinite linear; -} -/* Prevent stack and spinners from being taken inline when inside a link */ -a .icon-stack, -a .icon-spin { - display: inline-block; - text-decoration: none; -} -@-moz-keyframes spin { - 0% { - -moz-transform: rotate(0deg); - } - 100% { - -moz-transform: rotate(359deg); - } -} -@-webkit-keyframes spin { - 0% { - -webkit-transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - } -} -@-o-keyframes spin { - 0% { - -o-transform: rotate(0deg); - } - 100% { - -o-transform: rotate(359deg); - } -} -@-ms-keyframes spin { - 0% { - -ms-transform: rotate(0deg); - } - 100% { - -ms-transform: rotate(359deg); - } -} -@keyframes spin { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(359deg); - } -} -/* Icon rotations and mirroring */ -.icon-rotate-90:before { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); - -ms-transform: rotate(90deg); - -o-transform: rotate(90deg); - transform: rotate(90deg); - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); -} -.icon-rotate-180:before { - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); - transform: rotate(180deg); - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); -} -.icon-rotate-270:before { - -webkit-transform: rotate(270deg); - -moz-transform: rotate(270deg); - -ms-transform: rotate(270deg); - -o-transform: rotate(270deg); - transform: rotate(270deg); - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); -} -.icon-flip-horizontal:before { - -webkit-transform: scale(-1, 1); - -moz-transform: scale(-1, 1); - -ms-transform: scale(-1, 1); - -o-transform: scale(-1, 1); - transform: scale(-1, 1); -} -.icon-flip-vertical:before { - -webkit-transform: scale(1, -1); - -moz-transform: scale(1, -1); - -ms-transform: scale(1, -1); - -o-transform: scale(1, -1); - transform: scale(1, -1); -} -/* ensure rotation occurs inside anchor tags */ -a .icon-rotate-90:before, -a .icon-rotate-180:before, -a .icon-rotate-270:before, -a .icon-flip-horizontal:before, -a .icon-flip-vertical:before { - display: inline-block; -} -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ -.icon-glass:before { - content: "\f000"; -} -.icon-music:before { - content: "\f001"; -} -.icon-search:before { - content: "\f002"; -} -.icon-envelope-alt:before { - content: "\f003"; -} -.icon-heart:before { - content: "\f004"; -} -.icon-star:before { - content: "\f005"; -} -.icon-star-empty:before { - content: "\f006"; -} -.icon-user:before { - content: "\f007"; -} -.icon-film:before { - content: "\f008"; -} -.icon-th-large:before { - content: "\f009"; -} -.icon-th:before { - content: "\f00a"; -} -.icon-th-list:before { - content: "\f00b"; -} -.icon-ok:before { - content: "\f00c"; -} -.icon-remove:before { - content: "\f00d"; -} -.icon-zoom-in:before { - content: "\f00e"; -} -.icon-zoom-out:before { - content: "\f010"; -} -.icon-power-off:before, -.icon-off:before { - content: "\f011"; -} -.icon-signal:before { - content: "\f012"; -} -.icon-gear:before, -.icon-cog:before { - content: "\f013"; -} -.icon-trash:before { - content: "\f014"; -} -.icon-home:before { - content: "\f015"; -} -.icon-file-alt:before { - content: "\f016"; -} -.icon-time:before { - content: "\f017"; -} -.icon-road:before { - content: "\f018"; -} -.icon-download-alt:before { - content: "\f019"; -} -.icon-download:before { - content: "\f01a"; -} -.icon-upload:before { - content: "\f01b"; -} -.icon-inbox:before { - content: "\f01c"; -} -.icon-play-circle:before { - content: "\f01d"; -} -.icon-rotate-right:before, -.icon-repeat:before { - content: "\f01e"; -} -.icon-refresh:before { - content: "\f021"; -} -.icon-list-alt:before { - content: "\f022"; -} -.icon-lock:before { - content: "\f023"; -} -.icon-flag:before { - content: "\f024"; -} -.icon-headphones:before { - content: "\f025"; -} -.icon-volume-off:before { - content: "\f026"; -} -.icon-volume-down:before { - content: "\f027"; -} -.icon-volume-up:before { - content: "\f028"; -} -.icon-qrcode:before { - content: "\f029"; -} -.icon-barcode:before { - content: "\f02a"; -} -.icon-tag:before { - content: "\f02b"; -} -.icon-tags:before { - content: "\f02c"; -} -.icon-book:before { - content: "\f02d"; -} -.icon-bookmark:before { - content: "\f02e"; -} -.icon-print:before { - content: "\f02f"; -} -.icon-camera:before { - content: "\f030"; -} -.icon-font:before { - content: "\f031"; -} -.icon-bold:before { - content: "\f032"; -} -.icon-italic:before { - content: "\f033"; -} -.icon-text-height:before { - content: "\f034"; -} -.icon-text-width:before { - content: "\f035"; -} -.icon-align-left:before { - content: "\f036"; -} -.icon-align-center:before { - content: "\f037"; -} -.icon-align-right:before { - content: "\f038"; -} -.icon-align-justify:before { - content: "\f039"; -} -.icon-list:before { - content: "\f03a"; -} -.icon-indent-left:before { - content: "\f03b"; -} -.icon-indent-right:before { - content: "\f03c"; -} -.icon-facetime-video:before { - content: "\f03d"; -} -.icon-picture:before { - content: "\f03e"; -} -.icon-pencil:before { - content: "\f040"; -} -.icon-map-marker:before { - content: "\f041"; -} -.icon-adjust:before { - content: "\f042"; -} -.icon-tint:before { - content: "\f043"; -} -.icon-edit:before { - content: "\f044"; -} -.icon-share:before { - content: "\f045"; -} -.icon-check:before { - content: "\f046"; -} -.icon-move:before { - content: "\f047"; -} -.icon-step-backward:before { - content: "\f048"; -} -.icon-fast-backward:before { - content: "\f049"; -} -.icon-backward:before { - content: "\f04a"; -} -.icon-play:before { - content: "\f04b"; -} -.icon-pause:before { - content: "\f04c"; -} -.icon-stop:before { - content: "\f04d"; -} -.icon-forward:before { - content: "\f04e"; -} -.icon-fast-forward:before { - content: "\f050"; -} -.icon-step-forward:before { - content: "\f051"; -} -.icon-eject:before { - content: "\f052"; -} -.icon-chevron-left:before { - content: "\f053"; -} -.icon-chevron-right:before { - content: "\f054"; -} -.icon-plus-sign:before { - content: "\f055"; -} -.icon-minus-sign:before { - content: "\f056"; -} -.icon-remove-sign:before { - content: "\f057"; -} -.icon-ok-sign:before { - content: "\f058"; -} -.icon-question-sign:before { - content: "\f059"; -} -.icon-info-sign:before { - content: "\f05a"; -} -.icon-screenshot:before { - content: "\f05b"; -} -.icon-remove-circle:before { - content: "\f05c"; -} -.icon-ok-circle:before { - content: "\f05d"; -} -.icon-ban-circle:before { - content: "\f05e"; -} -.icon-arrow-left:before { - content: "\f060"; -} -.icon-arrow-right:before { - content: "\f061"; -} -.icon-arrow-up:before { - content: "\f062"; -} -.icon-arrow-down:before { - content: "\f063"; -} -.icon-mail-forward:before, -.icon-share-alt:before { - content: "\f064"; -} -.icon-resize-full:before { - content: "\f065"; -} -.icon-resize-small:before { - content: "\f066"; -} -.icon-plus:before { - content: "\f067"; -} -.icon-minus:before { - content: "\f068"; -} -.icon-asterisk:before { - content: "\f069"; -} -.icon-exclamation-sign:before { - content: "\f06a"; -} -.icon-gift:before { - content: "\f06b"; -} -.icon-leaf:before { - content: "\f06c"; -} -.icon-fire:before { - content: "\f06d"; -} -.icon-eye-open:before { - content: "\f06e"; -} -.icon-eye-close:before { - content: "\f070"; -} -.icon-warning-sign:before { - content: "\f071"; -} -.icon-plane:before { - content: "\f072"; -} -.icon-calendar:before { - content: "\f073"; -} -.icon-random:before { - content: "\f074"; -} -.icon-comment:before { - content: "\f075"; -} -.icon-magnet:before { - content: "\f076"; -} -.icon-chevron-up:before { - content: "\f077"; -} -.icon-chevron-down:before { - content: "\f078"; -} -.icon-retweet:before { - content: "\f079"; -} -.icon-shopping-cart:before { - content: "\f07a"; -} -.icon-folder-close:before { - content: "\f07b"; -} -.icon-folder-open:before { - content: "\f07c"; -} -.icon-resize-vertical:before { - content: "\f07d"; -} -.icon-resize-horizontal:before { - content: "\f07e"; -} -.icon-bar-chart:before { - content: "\f080"; -} -.icon-twitter-sign:before { - content: "\f081"; -} -.icon-facebook-sign:before { - content: "\f082"; -} -.icon-camera-retro:before { - content: "\f083"; -} -.icon-key:before { - content: "\f084"; -} -.icon-gears:before, -.icon-cogs:before { - content: "\f085"; -} -.icon-comments:before { - content: "\f086"; -} -.icon-thumbs-up-alt:before { - content: "\f087"; -} -.icon-thumbs-down-alt:before { - content: "\f088"; -} -.icon-star-half:before { - content: "\f089"; -} -.icon-heart-empty:before { - content: "\f08a"; -} -.icon-signout:before { - content: "\f08b"; -} -.icon-linkedin-sign:before { - content: "\f08c"; -} -.icon-pushpin:before { - content: "\f08d"; -} -.icon-external-link:before { - content: "\f08e"; -} -.icon-signin:before { - content: "\f090"; -} -.icon-trophy:before { - content: "\f091"; -} -.icon-github-sign:before { - content: "\f092"; -} -.icon-upload-alt:before { - content: "\f093"; -} -.icon-lemon:before { - content: "\f094"; -} -.icon-phone:before { - content: "\f095"; -} -.icon-unchecked:before, -.icon-check-empty:before { - content: "\f096"; -} -.icon-bookmark-empty:before { - content: "\f097"; -} -.icon-phone-sign:before { - content: "\f098"; -} -.icon-twitter:before { - content: "\f099"; -} -.icon-facebook:before { - content: "\f09a"; -} -.icon-github:before { - content: "\f09b"; -} -.icon-unlock:before { - content: "\f09c"; -} -.icon-credit-card:before { - content: "\f09d"; -} -.icon-rss:before { - content: "\f09e"; -} -.icon-hdd:before { - content: "\f0a0"; -} -.icon-bullhorn:before { - content: "\f0a1"; -} -.icon-bell:before { - content: "\f0a2"; -} -.icon-certificate:before { - content: "\f0a3"; -} -.icon-hand-right:before { - content: "\f0a4"; -} -.icon-hand-left:before { - content: "\f0a5"; -} -.icon-hand-up:before { - content: "\f0a6"; -} -.icon-hand-down:before { - content: "\f0a7"; -} -.icon-circle-arrow-left:before { - content: "\f0a8"; -} -.icon-circle-arrow-right:before { - content: "\f0a9"; -} -.icon-circle-arrow-up:before { - content: "\f0aa"; -} -.icon-circle-arrow-down:before { - content: "\f0ab"; -} -.icon-globe:before { - content: "\f0ac"; -} -.icon-wrench:before { - content: "\f0ad"; -} -.icon-tasks:before { - content: "\f0ae"; -} -.icon-filter:before { - content: "\f0b0"; -} -.icon-briefcase:before { - content: "\f0b1"; -} -.icon-fullscreen:before { - content: "\f0b2"; -} -.icon-group:before { - content: "\f0c0"; -} -.icon-link:before { - content: "\f0c1"; -} -.icon-cloud:before { - content: "\f0c2"; -} -.icon-beaker:before { - content: "\f0c3"; -} -.icon-cut:before { - content: "\f0c4"; -} -.icon-copy:before { - content: "\f0c5"; -} -.icon-paperclip:before, -.icon-paper-clip:before { - content: "\f0c6"; -} -.icon-save:before { - content: "\f0c7"; -} -.icon-sign-blank:before { - content: "\f0c8"; -} -.icon-reorder:before { - content: "\f0c9"; -} -.icon-list-ul:before { - content: "\f0ca"; -} -.icon-list-ol:before { - content: "\f0cb"; -} -.icon-strikethrough:before { - content: "\f0cc"; -} -.icon-underline:before { - content: "\f0cd"; -} -.icon-table:before { - content: "\f0ce"; -} -.icon-magic:before { - content: "\f0d0"; -} -.icon-truck:before { - content: "\f0d1"; -} -.icon-pinterest:before { - content: "\f0d2"; -} -.icon-pinterest-sign:before { - content: "\f0d3"; -} -.icon-google-plus-sign:before { - content: "\f0d4"; -} -.icon-google-plus:before { - content: "\f0d5"; -} -.icon-money:before { - content: "\f0d6"; -} -.icon-caret-down:before { - content: "\f0d7"; -} -.icon-caret-up:before { - content: "\f0d8"; -} -.icon-caret-left:before { - content: "\f0d9"; -} -.icon-caret-right:before { - content: "\f0da"; -} -.icon-columns:before { - content: "\f0db"; -} -.icon-sort:before { - content: "\f0dc"; -} -.icon-sort-down:before { - content: "\f0dd"; -} -.icon-sort-up:before { - content: "\f0de"; -} -.icon-envelope:before { - content: "\f0e0"; -} -.icon-linkedin:before { - content: "\f0e1"; -} -.icon-rotate-left:before, -.icon-undo:before { - content: "\f0e2"; -} -.icon-legal:before { - content: "\f0e3"; -} -.icon-dashboard:before { - content: "\f0e4"; -} -.icon-comment-alt:before { - content: "\f0e5"; -} -.icon-comments-alt:before { - content: "\f0e6"; -} -.icon-bolt:before { - content: "\f0e7"; -} -.icon-sitemap:before { - content: "\f0e8"; -} -.icon-umbrella:before { - content: "\f0e9"; -} -.icon-paste:before { - content: "\f0ea"; -} -.icon-lightbulb:before { - content: "\f0eb"; -} -.icon-exchange:before { - content: "\f0ec"; -} -.icon-cloud-download:before { - content: "\f0ed"; -} -.icon-cloud-upload:before { - content: "\f0ee"; -} -.icon-user-md:before { - content: "\f0f0"; -} -.icon-stethoscope:before { - content: "\f0f1"; -} -.icon-suitcase:before { - content: "\f0f2"; -} -.icon-bell-alt:before { - content: "\f0f3"; -} -.icon-coffee:before { - content: "\f0f4"; -} -.icon-food:before { - content: "\f0f5"; -} -.icon-file-text-alt:before { - content: "\f0f6"; -} -.icon-building:before { - content: "\f0f7"; -} -.icon-hospital:before { - content: "\f0f8"; -} -.icon-ambulance:before { - content: "\f0f9"; -} -.icon-medkit:before { - content: "\f0fa"; -} -.icon-fighter-jet:before { - content: "\f0fb"; -} -.icon-beer:before { - content: "\f0fc"; -} -.icon-h-sign:before { - content: "\f0fd"; -} -.icon-plus-sign-alt:before { - content: "\f0fe"; -} -.icon-double-angle-left:before { - content: "\f100"; -} -.icon-double-angle-right:before { - content: "\f101"; -} -.icon-double-angle-up:before { - content: "\f102"; -} -.icon-double-angle-down:before { - content: "\f103"; -} -.icon-angle-left:before { - content: "\f104"; -} -.icon-angle-right:before { - content: "\f105"; -} -.icon-angle-up:before { - content: "\f106"; -} -.icon-angle-down:before { - content: "\f107"; -} -.icon-desktop:before { - content: "\f108"; -} -.icon-laptop:before { - content: "\f109"; -} -.icon-tablet:before { - content: "\f10a"; -} -.icon-mobile-phone:before { - content: "\f10b"; -} -.icon-circle-blank:before { - content: "\f10c"; -} -.icon-quote-left:before { - content: "\f10d"; -} -.icon-quote-right:before { - content: "\f10e"; -} -.icon-spinner:before { - content: "\f110"; -} -.icon-circle:before { - content: "\f111"; -} -.icon-mail-reply:before, -.icon-reply:before { - content: "\f112"; -} -.icon-github-alt:before { - content: "\f113"; -} -.icon-folder-close-alt:before { - content: "\f114"; -} -.icon-folder-open-alt:before { - content: "\f115"; -} -.icon-expand-alt:before { - content: "\f116"; -} -.icon-collapse-alt:before { - content: "\f117"; -} -.icon-smile:before { - content: "\f118"; -} -.icon-frown:before { - content: "\f119"; -} -.icon-meh:before { - content: "\f11a"; -} -.icon-gamepad:before { - content: "\f11b"; -} -.icon-keyboard:before { - content: "\f11c"; -} -.icon-flag-alt:before { - content: "\f11d"; -} -.icon-flag-checkered:before { - content: "\f11e"; -} -.icon-terminal:before { - content: "\f120"; -} -.icon-code:before { - content: "\f121"; -} -.icon-reply-all:before { - content: "\f122"; -} -.icon-mail-reply-all:before { - content: "\f122"; -} -.icon-star-half-full:before, -.icon-star-half-empty:before { - content: "\f123"; -} -.icon-location-arrow:before { - content: "\f124"; -} -.icon-crop:before { - content: "\f125"; -} -.icon-code-fork:before { - content: "\f126"; -} -.icon-unlink:before { - content: "\f127"; -} -.icon-question:before { - content: "\f128"; -} -.icon-info:before { - content: "\f129"; -} -.icon-exclamation:before { - content: "\f12a"; -} -.icon-superscript:before { - content: "\f12b"; -} -.icon-subscript:before { - content: "\f12c"; -} -.icon-eraser:before { - content: "\f12d"; -} -.icon-puzzle-piece:before { - content: "\f12e"; -} -.icon-microphone:before { - content: "\f130"; -} -.icon-microphone-off:before { - content: "\f131"; -} -.icon-shield:before { - content: "\f132"; -} -.icon-calendar-empty:before { - content: "\f133"; -} -.icon-fire-extinguisher:before { - content: "\f134"; -} -.icon-rocket:before { - content: "\f135"; -} -.icon-maxcdn:before { - content: "\f136"; -} -.icon-chevron-sign-left:before { - content: "\f137"; -} -.icon-chevron-sign-right:before { - content: "\f138"; -} -.icon-chevron-sign-up:before { - content: "\f139"; -} -.icon-chevron-sign-down:before { - content: "\f13a"; -} -.icon-html5:before { - content: "\f13b"; -} -.icon-css3:before { - content: "\f13c"; -} -.icon-anchor:before { - content: "\f13d"; -} -.icon-unlock-alt:before { - content: "\f13e"; -} -.icon-bullseye:before { - content: "\f140"; -} -.icon-ellipsis-horizontal:before { - content: "\f141"; -} -.icon-ellipsis-vertical:before { - content: "\f142"; -} -.icon-rss-sign:before { - content: "\f143"; -} -.icon-play-sign:before { - content: "\f144"; -} -.icon-ticket:before { - content: "\f145"; -} -.icon-minus-sign-alt:before { - content: "\f146"; -} -.icon-check-minus:before { - content: "\f147"; -} -.icon-level-up:before { - content: "\f148"; -} -.icon-level-down:before { - content: "\f149"; -} -.icon-check-sign:before { - content: "\f14a"; -} -.icon-edit-sign:before { - content: "\f14b"; -} -.icon-external-link-sign:before { - content: "\f14c"; -} -.icon-share-sign:before { - content: "\f14d"; -} -.icon-compass:before { - content: "\f14e"; -} -.icon-collapse:before { - content: "\f150"; -} -.icon-collapse-top:before { - content: "\f151"; -} -.icon-expand:before { - content: "\f152"; -} -.icon-euro:before, -.icon-eur:before { - content: "\f153"; -} -.icon-gbp:before { - content: "\f154"; -} -.icon-dollar:before, -.icon-usd:before { - content: "\f155"; -} -.icon-rupee:before, -.icon-inr:before { - content: "\f156"; -} -.icon-yen:before, -.icon-jpy:before { - content: "\f157"; -} -.icon-renminbi:before, -.icon-cny:before { - content: "\f158"; -} -.icon-won:before, -.icon-krw:before { - content: "\f159"; -} -.icon-bitcoin:before, -.icon-btc:before { - content: "\f15a"; -} -.icon-file:before { - content: "\f15b"; -} -.icon-file-text:before { - content: "\f15c"; -} -.icon-sort-by-alphabet:before { - content: "\f15d"; -} -.icon-sort-by-alphabet-alt:before { - content: "\f15e"; -} -.icon-sort-by-attributes:before { - content: "\f160"; -} -.icon-sort-by-attributes-alt:before { - content: "\f161"; -} -.icon-sort-by-order:before { - content: "\f162"; -} -.icon-sort-by-order-alt:before { - content: "\f163"; -} -.icon-thumbs-up:before { - content: "\f164"; -} -.icon-thumbs-down:before { - content: "\f165"; -} -.icon-youtube-sign:before { - content: "\f166"; -} -.icon-youtube:before { - content: "\f167"; -} -.icon-xing:before { - content: "\f168"; -} -.icon-xing-sign:before { - content: "\f169"; -} -.icon-youtube-play:before { - content: "\f16a"; -} -.icon-dropbox:before { - content: "\f16b"; -} -.icon-stackexchange:before { - content: "\f16c"; -} -.icon-instagram:before { - content: "\f16d"; -} -.icon-flickr:before { - content: "\f16e"; -} -.icon-adn:before { - content: "\f170"; -} -.icon-bitbucket:before { - content: "\f171"; -} -.icon-bitbucket-sign:before { - content: "\f172"; -} -.icon-tumblr:before { - content: "\f173"; -} -.icon-tumblr-sign:before { - content: "\f174"; -} -.icon-long-arrow-down:before { - content: "\f175"; -} -.icon-long-arrow-up:before { - content: "\f176"; -} -.icon-long-arrow-left:before { - content: "\f177"; -} -.icon-long-arrow-right:before { - content: "\f178"; -} -.icon-apple:before { - content: "\f179"; -} -.icon-windows:before { - content: "\f17a"; -} -.icon-android:before { - content: "\f17b"; -} -.icon-linux:before { - content: "\f17c"; -} -.icon-dribbble:before { - content: "\f17d"; -} -.icon-skype:before { - content: "\f17e"; -} -.icon-foursquare:before { - content: "\f180"; -} -.icon-trello:before { - content: "\f181"; -} -.icon-female:before { - content: "\f182"; -} -.icon-male:before { - content: "\f183"; -} -.icon-gittip:before { - content: "\f184"; -} -.icon-sun:before { - content: "\f185"; -} -.icon-moon:before { - content: "\f186"; -} -.icon-archive:before { - content: "\f187"; -} -.icon-bug:before { - content: "\f188"; -} -.icon-vk:before { - content: "\f189"; -} -.icon-weibo:before { - content: "\f18a"; -} -.icon-renren:before { - content: "\f18b"; -} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome.min.css b/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome.min.css deleted file mode 100644 index 866437fa4..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/css/font-awesome.min.css +++ /dev/null @@ -1,403 +0,0 @@ -@font-face{font-family:'FontAwesome';src:url('../font/fontawesome-webfont.eot?v=3.2.1');src:url('../font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'),url('../font/fontawesome-webfont.woff?v=3.2.1') format('woff'),url('../font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'),url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');font-weight:normal;font-style:normal;}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;} -[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none;} -.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em;} -a [class^="icon-"],a [class*=" icon-"]{display:inline;} -[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.1428571428571428em;text-align:right;padding-right:0.2857142857142857em;}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.4285714285714286em;} -.icons-ul{margin-left:2.142857142857143em;list-style-type:none;}.icons-ul>li{position:relative;} -.icons-ul .icon-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;text-align:center;line-height:inherit;} -[class^="icon-"].hide,[class*=" icon-"].hide{display:none;} -.icon-muted{color:#eeeeee;} -.icon-light{color:#ffffff;} -.icon-dark{color:#333333;} -.icon-border{border:solid 1px #eeeeee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -.icon-2x{font-size:2em;}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.icon-3x{font-size:3em;}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} -.icon-4x{font-size:4em;}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} -.icon-5x{font-size:5em;}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;} -.pull-right{float:right;} -.pull-left{float:left;} -[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em;} -[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em;} -[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0;} -.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none;} -.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em;} -.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block;} -.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em;} -.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em;} -.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em;} -.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em;} -.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0;}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em;} -.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em;} -.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em;} -.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{line-height:inherit;} -.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%;}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em;} -.icon-stack .icon-stack-base{font-size:2em;*line-height:1em;} -.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;} -a .icon-stack,a .icon-spin{display:inline-block;text-decoration:none;} -@-moz-keyframes spin{0%{-moz-transform:rotate(0deg);} 100%{-moz-transform:rotate(359deg);}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);} 100%{-webkit-transform:rotate(359deg);}}@-o-keyframes spin{0%{-o-transform:rotate(0deg);} 100%{-o-transform:rotate(359deg);}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg);} 100%{-ms-transform:rotate(359deg);}}@keyframes spin{0%{transform:rotate(0deg);} 100%{transform:rotate(359deg);}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);} -.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);} -.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);} -.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1);} -.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1);} -a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-flip-horizontal:before,a .icon-flip-vertical:before{display:inline-block;} -.icon-glass:before{content:"\f000";} -.icon-music:before{content:"\f001";} -.icon-search:before{content:"\f002";} -.icon-envelope-alt:before{content:"\f003";} -.icon-heart:before{content:"\f004";} -.icon-star:before{content:"\f005";} -.icon-star-empty:before{content:"\f006";} -.icon-user:before{content:"\f007";} -.icon-film:before{content:"\f008";} -.icon-th-large:before{content:"\f009";} -.icon-th:before{content:"\f00a";} -.icon-th-list:before{content:"\f00b";} -.icon-ok:before{content:"\f00c";} -.icon-remove:before{content:"\f00d";} -.icon-zoom-in:before{content:"\f00e";} -.icon-zoom-out:before{content:"\f010";} -.icon-power-off:before,.icon-off:before{content:"\f011";} -.icon-signal:before{content:"\f012";} -.icon-gear:before,.icon-cog:before{content:"\f013";} -.icon-trash:before{content:"\f014";} -.icon-home:before{content:"\f015";} -.icon-file-alt:before{content:"\f016";} -.icon-time:before{content:"\f017";} -.icon-road:before{content:"\f018";} -.icon-download-alt:before{content:"\f019";} -.icon-download:before{content:"\f01a";} -.icon-upload:before{content:"\f01b";} -.icon-inbox:before{content:"\f01c";} -.icon-play-circle:before{content:"\f01d";} -.icon-rotate-right:before,.icon-repeat:before{content:"\f01e";} -.icon-refresh:before{content:"\f021";} -.icon-list-alt:before{content:"\f022";} -.icon-lock:before{content:"\f023";} -.icon-flag:before{content:"\f024";} -.icon-headphones:before{content:"\f025";} -.icon-volume-off:before{content:"\f026";} -.icon-volume-down:before{content:"\f027";} -.icon-volume-up:before{content:"\f028";} -.icon-qrcode:before{content:"\f029";} -.icon-barcode:before{content:"\f02a";} -.icon-tag:before{content:"\f02b";} -.icon-tags:before{content:"\f02c";} -.icon-book:before{content:"\f02d";} -.icon-bookmark:before{content:"\f02e";} -.icon-print:before{content:"\f02f";} -.icon-camera:before{content:"\f030";} -.icon-font:before{content:"\f031";} -.icon-bold:before{content:"\f032";} -.icon-italic:before{content:"\f033";} -.icon-text-height:before{content:"\f034";} -.icon-text-width:before{content:"\f035";} -.icon-align-left:before{content:"\f036";} -.icon-align-center:before{content:"\f037";} -.icon-align-right:before{content:"\f038";} -.icon-align-justify:before{content:"\f039";} -.icon-list:before{content:"\f03a";} -.icon-indent-left:before{content:"\f03b";} -.icon-indent-right:before{content:"\f03c";} -.icon-facetime-video:before{content:"\f03d";} -.icon-picture:before{content:"\f03e";} -.icon-pencil:before{content:"\f040";} -.icon-map-marker:before{content:"\f041";} -.icon-adjust:before{content:"\f042";} -.icon-tint:before{content:"\f043";} -.icon-edit:before{content:"\f044";} -.icon-share:before{content:"\f045";} -.icon-check:before{content:"\f046";} -.icon-move:before{content:"\f047";} -.icon-step-backward:before{content:"\f048";} -.icon-fast-backward:before{content:"\f049";} -.icon-backward:before{content:"\f04a";} -.icon-play:before{content:"\f04b";} -.icon-pause:before{content:"\f04c";} -.icon-stop:before{content:"\f04d";} -.icon-forward:before{content:"\f04e";} -.icon-fast-forward:before{content:"\f050";} -.icon-step-forward:before{content:"\f051";} -.icon-eject:before{content:"\f052";} -.icon-chevron-left:before{content:"\f053";} -.icon-chevron-right:before{content:"\f054";} -.icon-plus-sign:before{content:"\f055";} -.icon-minus-sign:before{content:"\f056";} -.icon-remove-sign:before{content:"\f057";} -.icon-ok-sign:before{content:"\f058";} -.icon-question-sign:before{content:"\f059";} -.icon-info-sign:before{content:"\f05a";} -.icon-screenshot:before{content:"\f05b";} -.icon-remove-circle:before{content:"\f05c";} -.icon-ok-circle:before{content:"\f05d";} -.icon-ban-circle:before{content:"\f05e";} -.icon-arrow-left:before{content:"\f060";} -.icon-arrow-right:before{content:"\f061";} -.icon-arrow-up:before{content:"\f062";} -.icon-arrow-down:before{content:"\f063";} -.icon-mail-forward:before,.icon-share-alt:before{content:"\f064";} -.icon-resize-full:before{content:"\f065";} -.icon-resize-small:before{content:"\f066";} -.icon-plus:before{content:"\f067";} -.icon-minus:before{content:"\f068";} -.icon-asterisk:before{content:"\f069";} -.icon-exclamation-sign:before{content:"\f06a";} -.icon-gift:before{content:"\f06b";} -.icon-leaf:before{content:"\f06c";} -.icon-fire:before{content:"\f06d";} -.icon-eye-open:before{content:"\f06e";} -.icon-eye-close:before{content:"\f070";} -.icon-warning-sign:before{content:"\f071";} -.icon-plane:before{content:"\f072";} -.icon-calendar:before{content:"\f073";} -.icon-random:before{content:"\f074";} -.icon-comment:before{content:"\f075";} -.icon-magnet:before{content:"\f076";} -.icon-chevron-up:before{content:"\f077";} -.icon-chevron-down:before{content:"\f078";} -.icon-retweet:before{content:"\f079";} -.icon-shopping-cart:before{content:"\f07a";} -.icon-folder-close:before{content:"\f07b";} -.icon-folder-open:before{content:"\f07c";} -.icon-resize-vertical:before{content:"\f07d";} -.icon-resize-horizontal:before{content:"\f07e";} -.icon-bar-chart:before{content:"\f080";} -.icon-twitter-sign:before{content:"\f081";} -.icon-facebook-sign:before{content:"\f082";} -.icon-camera-retro:before{content:"\f083";} -.icon-key:before{content:"\f084";} -.icon-gears:before,.icon-cogs:before{content:"\f085";} -.icon-comments:before{content:"\f086";} -.icon-thumbs-up-alt:before{content:"\f087";} -.icon-thumbs-down-alt:before{content:"\f088";} -.icon-star-half:before{content:"\f089";} -.icon-heart-empty:before{content:"\f08a";} -.icon-signout:before{content:"\f08b";} -.icon-linkedin-sign:before{content:"\f08c";} -.icon-pushpin:before{content:"\f08d";} -.icon-external-link:before{content:"\f08e";} -.icon-signin:before{content:"\f090";} -.icon-trophy:before{content:"\f091";} -.icon-github-sign:before{content:"\f092";} -.icon-upload-alt:before{content:"\f093";} -.icon-lemon:before{content:"\f094";} -.icon-phone:before{content:"\f095";} -.icon-unchecked:before,.icon-check-empty:before{content:"\f096";} -.icon-bookmark-empty:before{content:"\f097";} -.icon-phone-sign:before{content:"\f098";} -.icon-twitter:before{content:"\f099";} -.icon-facebook:before{content:"\f09a";} -.icon-github:before{content:"\f09b";} -.icon-unlock:before{content:"\f09c";} -.icon-credit-card:before{content:"\f09d";} -.icon-rss:before{content:"\f09e";} -.icon-hdd:before{content:"\f0a0";} -.icon-bullhorn:before{content:"\f0a1";} -.icon-bell:before{content:"\f0a2";} -.icon-certificate:before{content:"\f0a3";} -.icon-hand-right:before{content:"\f0a4";} -.icon-hand-left:before{content:"\f0a5";} -.icon-hand-up:before{content:"\f0a6";} -.icon-hand-down:before{content:"\f0a7";} -.icon-circle-arrow-left:before{content:"\f0a8";} -.icon-circle-arrow-right:before{content:"\f0a9";} -.icon-circle-arrow-up:before{content:"\f0aa";} -.icon-circle-arrow-down:before{content:"\f0ab";} -.icon-globe:before{content:"\f0ac";} -.icon-wrench:before{content:"\f0ad";} -.icon-tasks:before{content:"\f0ae";} -.icon-filter:before{content:"\f0b0";} -.icon-briefcase:before{content:"\f0b1";} -.icon-fullscreen:before{content:"\f0b2";} -.icon-group:before{content:"\f0c0";} -.icon-link:before{content:"\f0c1";} -.icon-cloud:before{content:"\f0c2";} -.icon-beaker:before{content:"\f0c3";} -.icon-cut:before{content:"\f0c4";} -.icon-copy:before{content:"\f0c5";} -.icon-paperclip:before,.icon-paper-clip:before{content:"\f0c6";} -.icon-save:before{content:"\f0c7";} -.icon-sign-blank:before{content:"\f0c8";} -.icon-reorder:before{content:"\f0c9";} -.icon-list-ul:before{content:"\f0ca";} -.icon-list-ol:before{content:"\f0cb";} -.icon-strikethrough:before{content:"\f0cc";} -.icon-underline:before{content:"\f0cd";} -.icon-table:before{content:"\f0ce";} -.icon-magic:before{content:"\f0d0";} -.icon-truck:before{content:"\f0d1";} -.icon-pinterest:before{content:"\f0d2";} -.icon-pinterest-sign:before{content:"\f0d3";} -.icon-google-plus-sign:before{content:"\f0d4";} -.icon-google-plus:before{content:"\f0d5";} -.icon-money:before{content:"\f0d6";} -.icon-caret-down:before{content:"\f0d7";} -.icon-caret-up:before{content:"\f0d8";} -.icon-caret-left:before{content:"\f0d9";} -.icon-caret-right:before{content:"\f0da";} -.icon-columns:before{content:"\f0db";} -.icon-sort:before{content:"\f0dc";} -.icon-sort-down:before{content:"\f0dd";} -.icon-sort-up:before{content:"\f0de";} -.icon-envelope:before{content:"\f0e0";} -.icon-linkedin:before{content:"\f0e1";} -.icon-rotate-left:before,.icon-undo:before{content:"\f0e2";} -.icon-legal:before{content:"\f0e3";} -.icon-dashboard:before{content:"\f0e4";} -.icon-comment-alt:before{content:"\f0e5";} -.icon-comments-alt:before{content:"\f0e6";} -.icon-bolt:before{content:"\f0e7";} -.icon-sitemap:before{content:"\f0e8";} -.icon-umbrella:before{content:"\f0e9";} -.icon-paste:before{content:"\f0ea";} -.icon-lightbulb:before{content:"\f0eb";} -.icon-exchange:before{content:"\f0ec";} -.icon-cloud-download:before{content:"\f0ed";} -.icon-cloud-upload:before{content:"\f0ee";} -.icon-user-md:before{content:"\f0f0";} -.icon-stethoscope:before{content:"\f0f1";} -.icon-suitcase:before{content:"\f0f2";} -.icon-bell-alt:before{content:"\f0f3";} -.icon-coffee:before{content:"\f0f4";} -.icon-food:before{content:"\f0f5";} -.icon-file-text-alt:before{content:"\f0f6";} -.icon-building:before{content:"\f0f7";} -.icon-hospital:before{content:"\f0f8";} -.icon-ambulance:before{content:"\f0f9";} -.icon-medkit:before{content:"\f0fa";} -.icon-fighter-jet:before{content:"\f0fb";} -.icon-beer:before{content:"\f0fc";} -.icon-h-sign:before{content:"\f0fd";} -.icon-plus-sign-alt:before{content:"\f0fe";} -.icon-double-angle-left:before{content:"\f100";} -.icon-double-angle-right:before{content:"\f101";} -.icon-double-angle-up:before{content:"\f102";} -.icon-double-angle-down:before{content:"\f103";} -.icon-angle-left:before{content:"\f104";} -.icon-angle-right:before{content:"\f105";} -.icon-angle-up:before{content:"\f106";} -.icon-angle-down:before{content:"\f107";} -.icon-desktop:before{content:"\f108";} -.icon-laptop:before{content:"\f109";} -.icon-tablet:before{content:"\f10a";} -.icon-mobile-phone:before{content:"\f10b";} -.icon-circle-blank:before{content:"\f10c";} -.icon-quote-left:before{content:"\f10d";} -.icon-quote-right:before{content:"\f10e";} -.icon-spinner:before{content:"\f110";} -.icon-circle:before{content:"\f111";} -.icon-mail-reply:before,.icon-reply:before{content:"\f112";} -.icon-github-alt:before{content:"\f113";} -.icon-folder-close-alt:before{content:"\f114";} -.icon-folder-open-alt:before{content:"\f115";} -.icon-expand-alt:before{content:"\f116";} -.icon-collapse-alt:before{content:"\f117";} -.icon-smile:before{content:"\f118";} -.icon-frown:before{content:"\f119";} -.icon-meh:before{content:"\f11a";} -.icon-gamepad:before{content:"\f11b";} -.icon-keyboard:before{content:"\f11c";} -.icon-flag-alt:before{content:"\f11d";} -.icon-flag-checkered:before{content:"\f11e";} -.icon-terminal:before{content:"\f120";} -.icon-code:before{content:"\f121";} -.icon-reply-all:before{content:"\f122";} -.icon-mail-reply-all:before{content:"\f122";} -.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123";} -.icon-location-arrow:before{content:"\f124";} -.icon-crop:before{content:"\f125";} -.icon-code-fork:before{content:"\f126";} -.icon-unlink:before{content:"\f127";} -.icon-question:before{content:"\f128";} -.icon-info:before{content:"\f129";} -.icon-exclamation:before{content:"\f12a";} -.icon-superscript:before{content:"\f12b";} -.icon-subscript:before{content:"\f12c";} -.icon-eraser:before{content:"\f12d";} -.icon-puzzle-piece:before{content:"\f12e";} -.icon-microphone:before{content:"\f130";} -.icon-microphone-off:before{content:"\f131";} -.icon-shield:before{content:"\f132";} -.icon-calendar-empty:before{content:"\f133";} -.icon-fire-extinguisher:before{content:"\f134";} -.icon-rocket:before{content:"\f135";} -.icon-maxcdn:before{content:"\f136";} -.icon-chevron-sign-left:before{content:"\f137";} -.icon-chevron-sign-right:before{content:"\f138";} -.icon-chevron-sign-up:before{content:"\f139";} -.icon-chevron-sign-down:before{content:"\f13a";} -.icon-html5:before{content:"\f13b";} -.icon-css3:before{content:"\f13c";} -.icon-anchor:before{content:"\f13d";} -.icon-unlock-alt:before{content:"\f13e";} -.icon-bullseye:before{content:"\f140";} -.icon-ellipsis-horizontal:before{content:"\f141";} -.icon-ellipsis-vertical:before{content:"\f142";} -.icon-rss-sign:before{content:"\f143";} -.icon-play-sign:before{content:"\f144";} -.icon-ticket:before{content:"\f145";} -.icon-minus-sign-alt:before{content:"\f146";} -.icon-check-minus:before{content:"\f147";} -.icon-level-up:before{content:"\f148";} -.icon-level-down:before{content:"\f149";} -.icon-check-sign:before{content:"\f14a";} -.icon-edit-sign:before{content:"\f14b";} -.icon-external-link-sign:before{content:"\f14c";} -.icon-share-sign:before{content:"\f14d";} -.icon-compass:before{content:"\f14e";} -.icon-collapse:before{content:"\f150";} -.icon-collapse-top:before{content:"\f151";} -.icon-expand:before{content:"\f152";} -.icon-euro:before,.icon-eur:before{content:"\f153";} -.icon-gbp:before{content:"\f154";} -.icon-dollar:before,.icon-usd:before{content:"\f155";} -.icon-rupee:before,.icon-inr:before{content:"\f156";} -.icon-yen:before,.icon-jpy:before{content:"\f157";} -.icon-renminbi:before,.icon-cny:before{content:"\f158";} -.icon-won:before,.icon-krw:before{content:"\f159";} -.icon-bitcoin:before,.icon-btc:before{content:"\f15a";} -.icon-file:before{content:"\f15b";} -.icon-file-text:before{content:"\f15c";} -.icon-sort-by-alphabet:before{content:"\f15d";} -.icon-sort-by-alphabet-alt:before{content:"\f15e";} -.icon-sort-by-attributes:before{content:"\f160";} -.icon-sort-by-attributes-alt:before{content:"\f161";} -.icon-sort-by-order:before{content:"\f162";} -.icon-sort-by-order-alt:before{content:"\f163";} -.icon-thumbs-up:before{content:"\f164";} -.icon-thumbs-down:before{content:"\f165";} -.icon-youtube-sign:before{content:"\f166";} -.icon-youtube:before{content:"\f167";} -.icon-xing:before{content:"\f168";} -.icon-xing-sign:before{content:"\f169";} -.icon-youtube-play:before{content:"\f16a";} -.icon-dropbox:before{content:"\f16b";} -.icon-stackexchange:before{content:"\f16c";} -.icon-instagram:before{content:"\f16d";} -.icon-flickr:before{content:"\f16e";} -.icon-adn:before{content:"\f170";} -.icon-bitbucket:before{content:"\f171";} -.icon-bitbucket-sign:before{content:"\f172";} -.icon-tumblr:before{content:"\f173";} -.icon-tumblr-sign:before{content:"\f174";} -.icon-long-arrow-down:before{content:"\f175";} -.icon-long-arrow-up:before{content:"\f176";} -.icon-long-arrow-left:before{content:"\f177";} -.icon-long-arrow-right:before{content:"\f178";} -.icon-apple:before{content:"\f179";} -.icon-windows:before{content:"\f17a";} -.icon-android:before{content:"\f17b";} -.icon-linux:before{content:"\f17c";} -.icon-dribbble:before{content:"\f17d";} -.icon-skype:before{content:"\f17e";} -.icon-foursquare:before{content:"\f180";} -.icon-trello:before{content:"\f181";} -.icon-female:before{content:"\f182";} -.icon-male:before{content:"\f183";} -.icon-gittip:before{content:"\f184";} -.icon-sun:before{content:"\f185";} -.icon-moon:before{content:"\f186";} -.icon-archive:before{content:"\f187";} -.icon-bug:before{content:"\f188";} -.icon-vk:before{content:"\f189";} -.icon-weibo:before{content:"\f18a";} -.icon-renren:before{content:"\f18b";} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/font/FontAwesome.otf b/library/font_awesome/src/3.2.1/assets/font-awesome/font/FontAwesome.otf deleted file mode 100644 index 70125459f..000000000 Binary files a/library/font_awesome/src/3.2.1/assets/font-awesome/font/FontAwesome.otf and /dev/null differ diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.eot b/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.eot deleted file mode 100644 index 0662cb96b..000000000 Binary files a/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.eot and /dev/null differ diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.svg b/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.svg deleted file mode 100644 index 2edb4ec34..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.svg +++ /dev/null @@ -1,399 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.ttf b/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.ttf deleted file mode 100644 index d36592469..000000000 Binary files a/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.ttf and /dev/null differ diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.woff b/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.woff deleted file mode 100644 index b9bd17e15..000000000 Binary files a/library/font_awesome/src/3.2.1/assets/font-awesome/font/fontawesome-webfont.woff and /dev/null differ diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/bootstrap.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/bootstrap.less deleted file mode 100644 index a2c96046b..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/less/bootstrap.less +++ /dev/null @@ -1,84 +0,0 @@ -/* BOOTSTRAP SPECIFIC CLASSES - * -------------------------- */ - -/* Bootstrap 2.0 sprites.less reset */ -[class^="icon-"], -[class*=" icon-"] { - display: inline; - width: auto; - height: auto; - line-height: normal; - vertical-align: baseline; - background-image: none; - background-position: 0% 0%; - background-repeat: repeat; - margin-top: 0; -} - -/* more sprites.less reset */ -.icon-white, -.nav-pills > .active > a > [class^="icon-"], -.nav-pills > .active > a > [class*=" icon-"], -.nav-list > .active > a > [class^="icon-"], -.nav-list > .active > a > [class*=" icon-"], -.navbar-inverse .nav > .active > a > [class^="icon-"], -.navbar-inverse .nav > .active > a > [class*=" icon-"], -.dropdown-menu > li > a:hover > [class^="icon-"], -.dropdown-menu > li > a:hover > [class*=" icon-"], -.dropdown-menu > .active > a > [class^="icon-"], -.dropdown-menu > .active > a > [class*=" icon-"], -.dropdown-submenu:hover > a > [class^="icon-"], -.dropdown-submenu:hover > a > [class*=" icon-"] { - background-image: none; -} - - -/* keeps Bootstrap styles with and without icons the same */ -.btn, .nav { - [class^="icon-"], - [class*=" icon-"] { -// display: inline; - &.icon-large { line-height: .9em; } - &.icon-spin { display: inline-block; } - } -} -.nav-tabs, .nav-pills { - [class^="icon-"], - [class*=" icon-"] { - &, &.icon-large { line-height: .9em; } - } -} -.btn { - [class^="icon-"], - [class*=" icon-"] { - &.pull-left, &.pull-right { - &.icon-2x { margin-top: .18em; } - } - &.icon-spin.icon-large { line-height: .8em; } - } -} -.btn.btn-small { - [class^="icon-"], - [class*=" icon-"] { - &.pull-left, &.pull-right { - &.icon-2x { margin-top: .25em; } - } - } -} -.btn.btn-large { - [class^="icon-"], - [class*=" icon-"] { - margin-top: 0; // overrides bootstrap default - &.pull-left, &.pull-right { - &.icon-2x { margin-top: .05em; } - } - &.pull-left.icon-2x { margin-right: .2em; } - &.pull-right.icon-2x { margin-left: .2em; } - } -} - -/* Fixes alignment in nav lists */ -.nav-list [class^="icon-"], -.nav-list [class*=" icon-"] { - line-height: inherit; -} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/core.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/core.less deleted file mode 100644 index 1ef7e2235..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/less/core.less +++ /dev/null @@ -1,129 +0,0 @@ -/* FONT AWESOME CORE - * -------------------------- */ - -[class^="icon-"], -[class*=" icon-"] { - .icon-FontAwesome(); -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - text-decoration: inherit; - display: inline-block; - speak: none; -} - -/* makes the font 33% larger relative to the icon container */ -.icon-large:before { - vertical-align: -10%; - font-size: 4/3em; -} - -/* makes sure icons active on rollover in links */ -a { - [class^="icon-"], - [class*=" icon-"] { - display: inline; - } -} - -/* increased font size for icon-large */ -[class^="icon-"], -[class*=" icon-"] { - &.icon-fixed-width { - display: inline-block; - width: 16/14em; - text-align: right; - padding-right: 4/14em; - &.icon-large { - width: 20/14em; - } - } -} - -.icons-ul { - margin-left: @icons-li-width; - list-style-type: none; - - > li { position: relative; } - - .icon-li { - position: absolute; - left: -@icons-li-width; - width: @icons-li-width; - text-align: center; - line-height: inherit; - } -} - -// allows usage of the hide class directly on font awesome icons -[class^="icon-"], -[class*=" icon-"] { - &.hide { - display: none; - } -} - -.icon-muted { color: @iconMuted; } -.icon-light { color: @iconLight; } -.icon-dark { color: @iconDark; } - -// Icon Borders -// ------------------------- - -.icon-border { - border: solid 1px @borderColor; - padding: .2em .25em .15em; - .border-radius(3px); -} - -// Icon Sizes -// ------------------------- - -.icon-2x { - font-size: 2em; - &.icon-border { - border-width: 2px; - .border-radius(4px); - } -} -.icon-3x { - font-size: 3em; - &.icon-border { - border-width: 3px; - .border-radius(5px); - } -} -.icon-4x { - font-size: 4em; - &.icon-border { - border-width: 4px; - .border-radius(6px); - } -} - -.icon-5x { - font-size: 5em; - &.icon-border { - border-width: 5px; - .border-radius(7px); - } -} - - -// Floats & Margins -// ------------------------- - -// Quick floats -.pull-right { float: right; } -.pull-left { float: left; } - -[class^="icon-"], -[class*=" icon-"] { - &.pull-left { - margin-right: .3em; - } - &.pull-right { - margin-left: .3em; - } -} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/extras.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/extras.less deleted file mode 100644 index c93c260c8..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/less/extras.less +++ /dev/null @@ -1,93 +0,0 @@ -/* EXTRAS - * -------------------------- */ - -/* Stacked and layered icon */ -.icon-stack(); - -/* Animated rotating icon */ -.icon-spin { - display: inline-block; - -moz-animation: spin 2s infinite linear; - -o-animation: spin 2s infinite linear; - -webkit-animation: spin 2s infinite linear; - animation: spin 2s infinite linear; -} - -/* Prevent stack and spinners from being taken inline when inside a link */ -a .icon-stack, -a .icon-spin { - display: inline-block; - text-decoration: none; -} - -@-moz-keyframes spin { - 0% { -moz-transform: rotate(0deg); } - 100% { -moz-transform: rotate(359deg); } -} -@-webkit-keyframes spin { - 0% { -webkit-transform: rotate(0deg); } - 100% { -webkit-transform: rotate(359deg); } -} -@-o-keyframes spin { - 0% { -o-transform: rotate(0deg); } - 100% { -o-transform: rotate(359deg); } -} -@-ms-keyframes spin { - 0% { -ms-transform: rotate(0deg); } - 100% { -ms-transform: rotate(359deg); } -} -@keyframes spin { - 0% { transform: rotate(0deg); } - 100% { transform: rotate(359deg); } -} - -/* Icon rotations and mirroring */ -.icon-rotate-90:before { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); - -ms-transform: rotate(90deg); - -o-transform: rotate(90deg); - transform: rotate(90deg); - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); -} - -.icon-rotate-180:before { - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); - transform: rotate(180deg); - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); -} - -.icon-rotate-270:before { - -webkit-transform: rotate(270deg); - -moz-transform: rotate(270deg); - -ms-transform: rotate(270deg); - -o-transform: rotate(270deg); - transform: rotate(270deg); - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); -} - -.icon-flip-horizontal:before { - -webkit-transform: scale(-1, 1); - -moz-transform: scale(-1, 1); - -ms-transform: scale(-1, 1); - -o-transform: scale(-1, 1); - transform: scale(-1, 1); -} - -.icon-flip-vertical:before { - -webkit-transform: scale(1, -1); - -moz-transform: scale(1, -1); - -ms-transform: scale(1, -1); - -o-transform: scale(1, -1); - transform: scale(1, -1); -} - -/* ensure rotation occurs inside anchor tags */ -a { - .icon-rotate-90, .icon-rotate-180, .icon-rotate-270, .icon-flip-horizontal, .icon-flip-vertical { - &:before { display: inline-block; } - } -} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/font-awesome-ie7.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/font-awesome-ie7.less deleted file mode 100644 index 6675c4989..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/less/font-awesome-ie7.less +++ /dev/null @@ -1,1953 +0,0 @@ -/*! - * Font Awesome 3.2.1 - * the iconic font designed for Bootstrap - * ------------------------------------------------------------------------------ - * The full suite of pictographic icons, examples, and documentation can be - * found at http://fontawesome.io. Stay up to date on Twitter at - * http://twitter.com/fontawesome. - * - * License - * ------------------------------------------------------------------------------ - * - The Font Awesome font is licensed under SIL OFL 1.1 - - * http://scripts.sil.org/OFL - * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - - * http://opensource.org/licenses/mit-license.html - * - Font Awesome documentation licensed under CC BY 3.0 - - * http://creativecommons.org/licenses/by/3.0/ - * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: - * "Font Awesome by Dave Gandy - http://fontawesome.io" - * - * Author - Dave Gandy - * ------------------------------------------------------------------------------ - * Email: dave@fontawesome.io - * Twitter: http://twitter.com/davegandy - * Work: Lead Product Designer @ Kyruus - http://kyruus.com - */ - -.icon-large { - font-size: 4/3em; - margin-top: -4px; - padding-top: 3px; - margin-bottom: -4px; - padding-bottom: 3px; - vertical-align: middle; -} - -.nav { - [class^="icon-"], - [class*=" icon-"] { - vertical-align: inherit; - margin-top: -4px; - padding-top: 3px; - margin-bottom: -4px; - padding-bottom: 3px; - &.icon-large { - vertical-align: -25%; - } - } -} - -.nav-pills, .nav-tabs { - [class^="icon-"], - [class*=" icon-"] { - &.icon-large { - line-height: .75em; - margin-top: -7px; - padding-top: 5px; - margin-bottom: -5px; - padding-bottom: 4px; - } - } -} - -.btn { - [class^="icon-"], - [class*=" icon-"] { - &.pull-left, &.pull-right { vertical-align: inherit; } - &.icon-large { - margin-top: -.5em; - } - } -} - -a [class^="icon-"], -a [class*=" icon-"] { - cursor: pointer; -} - -.ie7icon(@inner) { *zoom: ~"expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '@{inner}')"; } - - -.icon-glass { - .ie7icon(''); -} - - -.icon-music { - .ie7icon(''); -} - - -.icon-search { - .ie7icon(''); -} - - -.icon-envelope-alt { - .ie7icon(''); -} - - -.icon-heart { - .ie7icon(''); -} - - -.icon-star { - .ie7icon(''); -} - - -.icon-star-empty { - .ie7icon(''); -} - - -.icon-user { - .ie7icon(''); -} - - -.icon-film { - .ie7icon(''); -} - - -.icon-th-large { - .ie7icon(''); -} - - -.icon-th { - .ie7icon(''); -} - - -.icon-th-list { - .ie7icon(''); -} - - -.icon-ok { - .ie7icon(''); -} - - -.icon-remove { - .ie7icon(''); -} - - -.icon-zoom-in { - .ie7icon(''); -} - - -.icon-zoom-out { - .ie7icon(''); -} - - -.icon-off { - .ie7icon(''); -} - -.icon-power-off { - .ie7icon(''); -} - - -.icon-signal { - .ie7icon(''); -} - - -.icon-cog { - .ie7icon(''); -} - -.icon-gear { - .ie7icon(''); -} - - -.icon-trash { - .ie7icon(''); -} - - -.icon-home { - .ie7icon(''); -} - - -.icon-file-alt { - .ie7icon(''); -} - - -.icon-time { - .ie7icon(''); -} - - -.icon-road { - .ie7icon(''); -} - - -.icon-download-alt { - .ie7icon(''); -} - - -.icon-download { - .ie7icon(''); -} - - -.icon-upload { - .ie7icon(''); -} - - -.icon-inbox { - .ie7icon(''); -} - - -.icon-play-circle { - .ie7icon(''); -} - - -.icon-repeat { - .ie7icon(''); -} - -.icon-rotate-right { - .ie7icon(''); -} - - -.icon-refresh { - .ie7icon(''); -} - - -.icon-list-alt { - .ie7icon(''); -} - - -.icon-lock { - .ie7icon(''); -} - - -.icon-flag { - .ie7icon(''); -} - - -.icon-headphones { - .ie7icon(''); -} - - -.icon-volume-off { - .ie7icon(''); -} - - -.icon-volume-down { - .ie7icon(''); -} - - -.icon-volume-up { - .ie7icon(''); -} - - -.icon-qrcode { - .ie7icon(''); -} - - -.icon-barcode { - .ie7icon(''); -} - - -.icon-tag { - .ie7icon(''); -} - - -.icon-tags { - .ie7icon(''); -} - - -.icon-book { - .ie7icon(''); -} - - -.icon-bookmark { - .ie7icon(''); -} - - -.icon-print { - .ie7icon(''); -} - - -.icon-camera { - .ie7icon(''); -} - - -.icon-font { - .ie7icon(''); -} - - -.icon-bold { - .ie7icon(''); -} - - -.icon-italic { - .ie7icon(''); -} - - -.icon-text-height { - .ie7icon(''); -} - - -.icon-text-width { - .ie7icon(''); -} - - -.icon-align-left { - .ie7icon(''); -} - - -.icon-align-center { - .ie7icon(''); -} - - -.icon-align-right { - .ie7icon(''); -} - - -.icon-align-justify { - .ie7icon(''); -} - - -.icon-list { - .ie7icon(''); -} - - -.icon-indent-left { - .ie7icon(''); -} - - -.icon-indent-right { - .ie7icon(''); -} - - -.icon-facetime-video { - .ie7icon(''); -} - - -.icon-picture { - .ie7icon(''); -} - - -.icon-pencil { - .ie7icon(''); -} - - -.icon-map-marker { - .ie7icon(''); -} - - -.icon-adjust { - .ie7icon(''); -} - - -.icon-tint { - .ie7icon(''); -} - - -.icon-edit { - .ie7icon(''); -} - - -.icon-share { - .ie7icon(''); -} - - -.icon-check { - .ie7icon(''); -} - - -.icon-move { - .ie7icon(''); -} - - -.icon-step-backward { - .ie7icon(''); -} - - -.icon-fast-backward { - .ie7icon(''); -} - - -.icon-backward { - .ie7icon(''); -} - - -.icon-play { - .ie7icon(''); -} - - -.icon-pause { - .ie7icon(''); -} - - -.icon-stop { - .ie7icon(''); -} - - -.icon-forward { - .ie7icon(''); -} - - -.icon-fast-forward { - .ie7icon(''); -} - - -.icon-step-forward { - .ie7icon(''); -} - - -.icon-eject { - .ie7icon(''); -} - - -.icon-chevron-left { - .ie7icon(''); -} - - -.icon-chevron-right { - .ie7icon(''); -} - - -.icon-plus-sign { - .ie7icon(''); -} - - -.icon-minus-sign { - .ie7icon(''); -} - - -.icon-remove-sign { - .ie7icon(''); -} - - -.icon-ok-sign { - .ie7icon(''); -} - - -.icon-question-sign { - .ie7icon(''); -} - - -.icon-info-sign { - .ie7icon(''); -} - - -.icon-screenshot { - .ie7icon(''); -} - - -.icon-remove-circle { - .ie7icon(''); -} - - -.icon-ok-circle { - .ie7icon(''); -} - - -.icon-ban-circle { - .ie7icon(''); -} - - -.icon-arrow-left { - .ie7icon(''); -} - - -.icon-arrow-right { - .ie7icon(''); -} - - -.icon-arrow-up { - .ie7icon(''); -} - - -.icon-arrow-down { - .ie7icon(''); -} - - -.icon-share-alt { - .ie7icon(''); -} - -.icon-mail-forward { - .ie7icon(''); -} - - -.icon-resize-full { - .ie7icon(''); -} - - -.icon-resize-small { - .ie7icon(''); -} - - -.icon-plus { - .ie7icon(''); -} - - -.icon-minus { - .ie7icon(''); -} - - -.icon-asterisk { - .ie7icon(''); -} - - -.icon-exclamation-sign { - .ie7icon(''); -} - - -.icon-gift { - .ie7icon(''); -} - - -.icon-leaf { - .ie7icon(''); -} - - -.icon-fire { - .ie7icon(''); -} - - -.icon-eye-open { - .ie7icon(''); -} - - -.icon-eye-close { - .ie7icon(''); -} - - -.icon-warning-sign { - .ie7icon(''); -} - - -.icon-plane { - .ie7icon(''); -} - - -.icon-calendar { - .ie7icon(''); -} - - -.icon-random { - .ie7icon(''); -} - - -.icon-comment { - .ie7icon(''); -} - - -.icon-magnet { - .ie7icon(''); -} - - -.icon-chevron-up { - .ie7icon(''); -} - - -.icon-chevron-down { - .ie7icon(''); -} - - -.icon-retweet { - .ie7icon(''); -} - - -.icon-shopping-cart { - .ie7icon(''); -} - - -.icon-folder-close { - .ie7icon(''); -} - - -.icon-folder-open { - .ie7icon(''); -} - - -.icon-resize-vertical { - .ie7icon(''); -} - - -.icon-resize-horizontal { - .ie7icon(''); -} - - -.icon-bar-chart { - .ie7icon(''); -} - - -.icon-twitter-sign { - .ie7icon(''); -} - - -.icon-facebook-sign { - .ie7icon(''); -} - - -.icon-camera-retro { - .ie7icon(''); -} - - -.icon-key { - .ie7icon(''); -} - - -.icon-cogs { - .ie7icon(''); -} - -.icon-gears { - .ie7icon(''); -} - - -.icon-comments { - .ie7icon(''); -} - - -.icon-thumbs-up-alt { - .ie7icon(''); -} - - -.icon-thumbs-down-alt { - .ie7icon(''); -} - - -.icon-star-half { - .ie7icon(''); -} - - -.icon-heart-empty { - .ie7icon(''); -} - - -.icon-signout { - .ie7icon(''); -} - - -.icon-linkedin-sign { - .ie7icon(''); -} - - -.icon-pushpin { - .ie7icon(''); -} - - -.icon-external-link { - .ie7icon(''); -} - - -.icon-signin { - .ie7icon(''); -} - - -.icon-trophy { - .ie7icon(''); -} - - -.icon-github-sign { - .ie7icon(''); -} - - -.icon-upload-alt { - .ie7icon(''); -} - - -.icon-lemon { - .ie7icon(''); -} - - -.icon-phone { - .ie7icon(''); -} - - -.icon-check-empty { - .ie7icon(''); -} - -.icon-unchecked { - .ie7icon(''); -} - - -.icon-bookmark-empty { - .ie7icon(''); -} - - -.icon-phone-sign { - .ie7icon(''); -} - - -.icon-twitter { - .ie7icon(''); -} - - -.icon-facebook { - .ie7icon(''); -} - - -.icon-github { - .ie7icon(''); -} - - -.icon-unlock { - .ie7icon(''); -} - - -.icon-credit-card { - .ie7icon(''); -} - - -.icon-rss { - .ie7icon(''); -} - - -.icon-hdd { - .ie7icon(''); -} - - -.icon-bullhorn { - .ie7icon(''); -} - - -.icon-bell { - .ie7icon(''); -} - - -.icon-certificate { - .ie7icon(''); -} - - -.icon-hand-right { - .ie7icon(''); -} - - -.icon-hand-left { - .ie7icon(''); -} - - -.icon-hand-up { - .ie7icon(''); -} - - -.icon-hand-down { - .ie7icon(''); -} - - -.icon-circle-arrow-left { - .ie7icon(''); -} - - -.icon-circle-arrow-right { - .ie7icon(''); -} - - -.icon-circle-arrow-up { - .ie7icon(''); -} - - -.icon-circle-arrow-down { - .ie7icon(''); -} - - -.icon-globe { - .ie7icon(''); -} - - -.icon-wrench { - .ie7icon(''); -} - - -.icon-tasks { - .ie7icon(''); -} - - -.icon-filter { - .ie7icon(''); -} - - -.icon-briefcase { - .ie7icon(''); -} - - -.icon-fullscreen { - .ie7icon(''); -} - - -.icon-group { - .ie7icon(''); -} - - -.icon-link { - .ie7icon(''); -} - - -.icon-cloud { - .ie7icon(''); -} - - -.icon-beaker { - .ie7icon(''); -} - - -.icon-cut { - .ie7icon(''); -} - - -.icon-copy { - .ie7icon(''); -} - - -.icon-paper-clip { - .ie7icon(''); -} - -.icon-paperclip { - .ie7icon(''); -} - - -.icon-save { - .ie7icon(''); -} - - -.icon-sign-blank { - .ie7icon(''); -} - - -.icon-reorder { - .ie7icon(''); -} - - -.icon-list-ul { - .ie7icon(''); -} - - -.icon-list-ol { - .ie7icon(''); -} - - -.icon-strikethrough { - .ie7icon(''); -} - - -.icon-underline { - .ie7icon(''); -} - - -.icon-table { - .ie7icon(''); -} - - -.icon-magic { - .ie7icon(''); -} - - -.icon-truck { - .ie7icon(''); -} - - -.icon-pinterest { - .ie7icon(''); -} - - -.icon-pinterest-sign { - .ie7icon(''); -} - - -.icon-google-plus-sign { - .ie7icon(''); -} - - -.icon-google-plus { - .ie7icon(''); -} - - -.icon-money { - .ie7icon(''); -} - - -.icon-caret-down { - .ie7icon(''); -} - - -.icon-caret-up { - .ie7icon(''); -} - - -.icon-caret-left { - .ie7icon(''); -} - - -.icon-caret-right { - .ie7icon(''); -} - - -.icon-columns { - .ie7icon(''); -} - - -.icon-sort { - .ie7icon(''); -} - - -.icon-sort-down { - .ie7icon(''); -} - - -.icon-sort-up { - .ie7icon(''); -} - - -.icon-envelope { - .ie7icon(''); -} - - -.icon-linkedin { - .ie7icon(''); -} - - -.icon-undo { - .ie7icon(''); -} - -.icon-rotate-left { - .ie7icon(''); -} - - -.icon-legal { - .ie7icon(''); -} - - -.icon-dashboard { - .ie7icon(''); -} - - -.icon-comment-alt { - .ie7icon(''); -} - - -.icon-comments-alt { - .ie7icon(''); -} - - -.icon-bolt { - .ie7icon(''); -} - - -.icon-sitemap { - .ie7icon(''); -} - - -.icon-umbrella { - .ie7icon(''); -} - - -.icon-paste { - .ie7icon(''); -} - - -.icon-lightbulb { - .ie7icon(''); -} - - -.icon-exchange { - .ie7icon(''); -} - - -.icon-cloud-download { - .ie7icon(''); -} - - -.icon-cloud-upload { - .ie7icon(''); -} - - -.icon-user-md { - .ie7icon(''); -} - - -.icon-stethoscope { - .ie7icon(''); -} - - -.icon-suitcase { - .ie7icon(''); -} - - -.icon-bell-alt { - .ie7icon(''); -} - - -.icon-coffee { - .ie7icon(''); -} - - -.icon-food { - .ie7icon(''); -} - - -.icon-file-text-alt { - .ie7icon(''); -} - - -.icon-building { - .ie7icon(''); -} - - -.icon-hospital { - .ie7icon(''); -} - - -.icon-ambulance { - .ie7icon(''); -} - - -.icon-medkit { - .ie7icon(''); -} - - -.icon-fighter-jet { - .ie7icon(''); -} - - -.icon-beer { - .ie7icon(''); -} - - -.icon-h-sign { - .ie7icon(''); -} - - -.icon-plus-sign-alt { - .ie7icon(''); -} - - -.icon-double-angle-left { - .ie7icon(''); -} - - -.icon-double-angle-right { - .ie7icon(''); -} - - -.icon-double-angle-up { - .ie7icon(''); -} - - -.icon-double-angle-down { - .ie7icon(''); -} - - -.icon-angle-left { - .ie7icon(''); -} - - -.icon-angle-right { - .ie7icon(''); -} - - -.icon-angle-up { - .ie7icon(''); -} - - -.icon-angle-down { - .ie7icon(''); -} - - -.icon-desktop { - .ie7icon(''); -} - - -.icon-laptop { - .ie7icon(''); -} - - -.icon-tablet { - .ie7icon(''); -} - - -.icon-mobile-phone { - .ie7icon(''); -} - - -.icon-circle-blank { - .ie7icon(''); -} - - -.icon-quote-left { - .ie7icon(''); -} - - -.icon-quote-right { - .ie7icon(''); -} - - -.icon-spinner { - .ie7icon(''); -} - - -.icon-circle { - .ie7icon(''); -} - - -.icon-reply { - .ie7icon(''); -} - -.icon-mail-reply { - .ie7icon(''); -} - - -.icon-github-alt { - .ie7icon(''); -} - - -.icon-folder-close-alt { - .ie7icon(''); -} - - -.icon-folder-open-alt { - .ie7icon(''); -} - - -.icon-expand-alt { - .ie7icon(''); -} - - -.icon-collapse-alt { - .ie7icon(''); -} - - -.icon-smile { - .ie7icon(''); -} - - -.icon-frown { - .ie7icon(''); -} - - -.icon-meh { - .ie7icon(''); -} - - -.icon-gamepad { - .ie7icon(''); -} - - -.icon-keyboard { - .ie7icon(''); -} - - -.icon-flag-alt { - .ie7icon(''); -} - - -.icon-flag-checkered { - .ie7icon(''); -} - - -.icon-terminal { - .ie7icon(''); -} - - -.icon-code { - .ie7icon(''); -} - - -.icon-reply-all { - .ie7icon(''); -} - - -.icon-mail-reply-all { - .ie7icon(''); -} - - -.icon-star-half-empty { - .ie7icon(''); -} - -.icon-star-half-full { - .ie7icon(''); -} - - -.icon-location-arrow { - .ie7icon(''); -} - - -.icon-crop { - .ie7icon(''); -} - - -.icon-code-fork { - .ie7icon(''); -} - - -.icon-unlink { - .ie7icon(''); -} - - -.icon-question { - .ie7icon(''); -} - - -.icon-info { - .ie7icon(''); -} - - -.icon-exclamation { - .ie7icon(''); -} - - -.icon-superscript { - .ie7icon(''); -} - - -.icon-subscript { - .ie7icon(''); -} - - -.icon-eraser { - .ie7icon(''); -} - - -.icon-puzzle-piece { - .ie7icon(''); -} - - -.icon-microphone { - .ie7icon(''); -} - - -.icon-microphone-off { - .ie7icon(''); -} - - -.icon-shield { - .ie7icon(''); -} - - -.icon-calendar-empty { - .ie7icon(''); -} - - -.icon-fire-extinguisher { - .ie7icon(''); -} - - -.icon-rocket { - .ie7icon(''); -} - - -.icon-maxcdn { - .ie7icon(''); -} - - -.icon-chevron-sign-left { - .ie7icon(''); -} - - -.icon-chevron-sign-right { - .ie7icon(''); -} - - -.icon-chevron-sign-up { - .ie7icon(''); -} - - -.icon-chevron-sign-down { - .ie7icon(''); -} - - -.icon-html5 { - .ie7icon(''); -} - - -.icon-css3 { - .ie7icon(''); -} - - -.icon-anchor { - .ie7icon(''); -} - - -.icon-unlock-alt { - .ie7icon(''); -} - - -.icon-bullseye { - .ie7icon(''); -} - - -.icon-ellipsis-horizontal { - .ie7icon(''); -} - - -.icon-ellipsis-vertical { - .ie7icon(''); -} - - -.icon-rss-sign { - .ie7icon(''); -} - - -.icon-play-sign { - .ie7icon(''); -} - - -.icon-ticket { - .ie7icon(''); -} - - -.icon-minus-sign-alt { - .ie7icon(''); -} - - -.icon-check-minus { - .ie7icon(''); -} - - -.icon-level-up { - .ie7icon(''); -} - - -.icon-level-down { - .ie7icon(''); -} - - -.icon-check-sign { - .ie7icon(''); -} - - -.icon-edit-sign { - .ie7icon(''); -} - - -.icon-external-link-sign { - .ie7icon(''); -} - - -.icon-share-sign { - .ie7icon(''); -} - - -.icon-compass { - .ie7icon(''); -} - - -.icon-collapse { - .ie7icon(''); -} - - -.icon-collapse-top { - .ie7icon(''); -} - - -.icon-expand { - .ie7icon(''); -} - - -.icon-eur { - .ie7icon(''); -} - -.icon-euro { - .ie7icon(''); -} - - -.icon-gbp { - .ie7icon(''); -} - - -.icon-usd { - .ie7icon(''); -} - -.icon-dollar { - .ie7icon(''); -} - - -.icon-inr { - .ie7icon(''); -} - -.icon-rupee { - .ie7icon(''); -} - - -.icon-jpy { - .ie7icon(''); -} - -.icon-yen { - .ie7icon(''); -} - - -.icon-cny { - .ie7icon(''); -} - -.icon-renminbi { - .ie7icon(''); -} - - -.icon-krw { - .ie7icon(''); -} - -.icon-won { - .ie7icon(''); -} - - -.icon-btc { - .ie7icon(''); -} - -.icon-bitcoin { - .ie7icon(''); -} - - -.icon-file { - .ie7icon(''); -} - - -.icon-file-text { - .ie7icon(''); -} - - -.icon-sort-by-alphabet { - .ie7icon(''); -} - - -.icon-sort-by-alphabet-alt { - .ie7icon(''); -} - - -.icon-sort-by-attributes { - .ie7icon(''); -} - - -.icon-sort-by-attributes-alt { - .ie7icon(''); -} - - -.icon-sort-by-order { - .ie7icon(''); -} - - -.icon-sort-by-order-alt { - .ie7icon(''); -} - - -.icon-thumbs-up { - .ie7icon(''); -} - - -.icon-thumbs-down { - .ie7icon(''); -} - - -.icon-youtube-sign { - .ie7icon(''); -} - - -.icon-youtube { - .ie7icon(''); -} - - -.icon-xing { - .ie7icon(''); -} - - -.icon-xing-sign { - .ie7icon(''); -} - - -.icon-youtube-play { - .ie7icon(''); -} - - -.icon-dropbox { - .ie7icon(''); -} - - -.icon-stackexchange { - .ie7icon(''); -} - - -.icon-instagram { - .ie7icon(''); -} - - -.icon-flickr { - .ie7icon(''); -} - - -.icon-adn { - .ie7icon(''); -} - - -.icon-bitbucket { - .ie7icon(''); -} - - -.icon-bitbucket-sign { - .ie7icon(''); -} - - -.icon-tumblr { - .ie7icon(''); -} - - -.icon-tumblr-sign { - .ie7icon(''); -} - - -.icon-long-arrow-down { - .ie7icon(''); -} - - -.icon-long-arrow-up { - .ie7icon(''); -} - - -.icon-long-arrow-left { - .ie7icon(''); -} - - -.icon-long-arrow-right { - .ie7icon(''); -} - - -.icon-apple { - .ie7icon(''); -} - - -.icon-windows { - .ie7icon(''); -} - - -.icon-android { - .ie7icon(''); -} - - -.icon-linux { - .ie7icon(''); -} - - -.icon-dribbble { - .ie7icon(''); -} - - -.icon-skype { - .ie7icon(''); -} - - -.icon-foursquare { - .ie7icon(''); -} - - -.icon-trello { - .ie7icon(''); -} - - -.icon-female { - .ie7icon(''); -} - - -.icon-male { - .ie7icon(''); -} - - -.icon-gittip { - .ie7icon(''); -} - - -.icon-sun { - .ie7icon(''); -} - - -.icon-moon { - .ie7icon(''); -} - - -.icon-archive { - .ie7icon(''); -} - - -.icon-bug { - .ie7icon(''); -} - - -.icon-vk { - .ie7icon(''); -} - - -.icon-weibo { - .ie7icon(''); -} - - -.icon-renren { - .ie7icon(''); -} - - diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/font-awesome.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/font-awesome.less deleted file mode 100644 index 0f454612b..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/less/font-awesome.less +++ /dev/null @@ -1,33 +0,0 @@ -/*! - * Font Awesome 3.2.1 - * the iconic font designed for Bootstrap - * ------------------------------------------------------------------------------ - * The full suite of pictographic icons, examples, and documentation can be - * found at http://fontawesome.io. Stay up to date on Twitter at - * http://twitter.com/fontawesome. - * - * License - * ------------------------------------------------------------------------------ - * - The Font Awesome font is licensed under SIL OFL 1.1 - - * http://scripts.sil.org/OFL - * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - - * http://opensource.org/licenses/mit-license.html - * - Font Awesome documentation licensed under CC BY 3.0 - - * http://creativecommons.org/licenses/by/3.0/ - * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: - * "Font Awesome by Dave Gandy - http://fontawesome.io" - * - * Author - Dave Gandy - * ------------------------------------------------------------------------------ - * Email: dave@fontawesome.io - * Twitter: http://twitter.com/davegandy - * Work: Lead Product Designer @ Kyruus - http://kyruus.com - */ - -@import "variables.less"; -@import "mixins.less"; -@import "path.less"; -@import "core.less"; -@import "bootstrap.less"; -@import "extras.less"; -@import "icons.less"; diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/icons.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/icons.less deleted file mode 100644 index 476d201ec..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/less/icons.less +++ /dev/null @@ -1,381 +0,0 @@ -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ - -.icon-glass:before { content: @glass; } -.icon-music:before { content: @music; } -.icon-search:before { content: @search; } -.icon-envelope-alt:before { content: @envelope-alt; } -.icon-heart:before { content: @heart; } -.icon-star:before { content: @star; } -.icon-star-empty:before { content: @star-empty; } -.icon-user:before { content: @user; } -.icon-film:before { content: @film; } -.icon-th-large:before { content: @th-large; } -.icon-th:before { content: @th; } -.icon-th-list:before { content: @th-list; } -.icon-ok:before { content: @ok; } -.icon-remove:before { content: @remove; } -.icon-zoom-in:before { content: @zoom-in; } -.icon-zoom-out:before { content: @zoom-out; } -.icon-power-off:before, -.icon-off:before { content: @off; } -.icon-signal:before { content: @signal; } -.icon-gear:before, -.icon-cog:before { content: @cog; } -.icon-trash:before { content: @trash; } -.icon-home:before { content: @home; } -.icon-file-alt:before { content: @file-alt; } -.icon-time:before { content: @time; } -.icon-road:before { content: @road; } -.icon-download-alt:before { content: @download-alt; } -.icon-download:before { content: @download; } -.icon-upload:before { content: @upload; } -.icon-inbox:before { content: @inbox; } -.icon-play-circle:before { content: @play-circle; } -.icon-rotate-right:before, -.icon-repeat:before { content: @repeat; } -.icon-refresh:before { content: @refresh; } -.icon-list-alt:before { content: @list-alt; } -.icon-lock:before { content: @lock; } -.icon-flag:before { content: @flag; } -.icon-headphones:before { content: @headphones; } -.icon-volume-off:before { content: @volume-off; } -.icon-volume-down:before { content: @volume-down; } -.icon-volume-up:before { content: @volume-up; } -.icon-qrcode:before { content: @qrcode; } -.icon-barcode:before { content: @barcode; } -.icon-tag:before { content: @tag; } -.icon-tags:before { content: @tags; } -.icon-book:before { content: @book; } -.icon-bookmark:before { content: @bookmark; } -.icon-print:before { content: @print; } -.icon-camera:before { content: @camera; } -.icon-font:before { content: @font; } -.icon-bold:before { content: @bold; } -.icon-italic:before { content: @italic; } -.icon-text-height:before { content: @text-height; } -.icon-text-width:before { content: @text-width; } -.icon-align-left:before { content: @align-left; } -.icon-align-center:before { content: @align-center; } -.icon-align-right:before { content: @align-right; } -.icon-align-justify:before { content: @align-justify; } -.icon-list:before { content: @list; } -.icon-indent-left:before { content: @indent-left; } -.icon-indent-right:before { content: @indent-right; } -.icon-facetime-video:before { content: @facetime-video; } -.icon-picture:before { content: @picture; } -.icon-pencil:before { content: @pencil; } -.icon-map-marker:before { content: @map-marker; } -.icon-adjust:before { content: @adjust; } -.icon-tint:before { content: @tint; } -.icon-edit:before { content: @edit; } -.icon-share:before { content: @share; } -.icon-check:before { content: @check; } -.icon-move:before { content: @move; } -.icon-step-backward:before { content: @step-backward; } -.icon-fast-backward:before { content: @fast-backward; } -.icon-backward:before { content: @backward; } -.icon-play:before { content: @play; } -.icon-pause:before { content: @pause; } -.icon-stop:before { content: @stop; } -.icon-forward:before { content: @forward; } -.icon-fast-forward:before { content: @fast-forward; } -.icon-step-forward:before { content: @step-forward; } -.icon-eject:before { content: @eject; } -.icon-chevron-left:before { content: @chevron-left; } -.icon-chevron-right:before { content: @chevron-right; } -.icon-plus-sign:before { content: @plus-sign; } -.icon-minus-sign:before { content: @minus-sign; } -.icon-remove-sign:before { content: @remove-sign; } -.icon-ok-sign:before { content: @ok-sign; } -.icon-question-sign:before { content: @question-sign; } -.icon-info-sign:before { content: @info-sign; } -.icon-screenshot:before { content: @screenshot; } -.icon-remove-circle:before { content: @remove-circle; } -.icon-ok-circle:before { content: @ok-circle; } -.icon-ban-circle:before { content: @ban-circle; } -.icon-arrow-left:before { content: @arrow-left; } -.icon-arrow-right:before { content: @arrow-right; } -.icon-arrow-up:before { content: @arrow-up; } -.icon-arrow-down:before { content: @arrow-down; } -.icon-mail-forward:before, -.icon-share-alt:before { content: @share-alt; } -.icon-resize-full:before { content: @resize-full; } -.icon-resize-small:before { content: @resize-small; } -.icon-plus:before { content: @plus; } -.icon-minus:before { content: @minus; } -.icon-asterisk:before { content: @asterisk; } -.icon-exclamation-sign:before { content: @exclamation-sign; } -.icon-gift:before { content: @gift; } -.icon-leaf:before { content: @leaf; } -.icon-fire:before { content: @fire; } -.icon-eye-open:before { content: @eye-open; } -.icon-eye-close:before { content: @eye-close; } -.icon-warning-sign:before { content: @warning-sign; } -.icon-plane:before { content: @plane; } -.icon-calendar:before { content: @calendar; } -.icon-random:before { content: @random; } -.icon-comment:before { content: @comment; } -.icon-magnet:before { content: @magnet; } -.icon-chevron-up:before { content: @chevron-up; } -.icon-chevron-down:before { content: @chevron-down; } -.icon-retweet:before { content: @retweet; } -.icon-shopping-cart:before { content: @shopping-cart; } -.icon-folder-close:before { content: @folder-close; } -.icon-folder-open:before { content: @folder-open; } -.icon-resize-vertical:before { content: @resize-vertical; } -.icon-resize-horizontal:before { content: @resize-horizontal; } -.icon-bar-chart:before { content: @bar-chart; } -.icon-twitter-sign:before { content: @twitter-sign; } -.icon-facebook-sign:before { content: @facebook-sign; } -.icon-camera-retro:before { content: @camera-retro; } -.icon-key:before { content: @key; } -.icon-gears:before, -.icon-cogs:before { content: @cogs; } -.icon-comments:before { content: @comments; } -.icon-thumbs-up-alt:before { content: @thumbs-up-alt; } -.icon-thumbs-down-alt:before { content: @thumbs-down-alt; } -.icon-star-half:before { content: @star-half; } -.icon-heart-empty:before { content: @heart-empty; } -.icon-signout:before { content: @signout; } -.icon-linkedin-sign:before { content: @linkedin-sign; } -.icon-pushpin:before { content: @pushpin; } -.icon-external-link:before { content: @external-link; } -.icon-signin:before { content: @signin; } -.icon-trophy:before { content: @trophy; } -.icon-github-sign:before { content: @github-sign; } -.icon-upload-alt:before { content: @upload-alt; } -.icon-lemon:before { content: @lemon; } -.icon-phone:before { content: @phone; } -.icon-unchecked:before, -.icon-check-empty:before { content: @check-empty; } -.icon-bookmark-empty:before { content: @bookmark-empty; } -.icon-phone-sign:before { content: @phone-sign; } -.icon-twitter:before { content: @twitter; } -.icon-facebook:before { content: @facebook; } -.icon-github:before { content: @github; } -.icon-unlock:before { content: @unlock; } -.icon-credit-card:before { content: @credit-card; } -.icon-rss:before { content: @rss; } -.icon-hdd:before { content: @hdd; } -.icon-bullhorn:before { content: @bullhorn; } -.icon-bell:before { content: @bell; } -.icon-certificate:before { content: @certificate; } -.icon-hand-right:before { content: @hand-right; } -.icon-hand-left:before { content: @hand-left; } -.icon-hand-up:before { content: @hand-up; } -.icon-hand-down:before { content: @hand-down; } -.icon-circle-arrow-left:before { content: @circle-arrow-left; } -.icon-circle-arrow-right:before { content: @circle-arrow-right; } -.icon-circle-arrow-up:before { content: @circle-arrow-up; } -.icon-circle-arrow-down:before { content: @circle-arrow-down; } -.icon-globe:before { content: @globe; } -.icon-wrench:before { content: @wrench; } -.icon-tasks:before { content: @tasks; } -.icon-filter:before { content: @filter; } -.icon-briefcase:before { content: @briefcase; } -.icon-fullscreen:before { content: @fullscreen; } -.icon-group:before { content: @group; } -.icon-link:before { content: @link; } -.icon-cloud:before { content: @cloud; } -.icon-beaker:before { content: @beaker; } -.icon-cut:before { content: @cut; } -.icon-copy:before { content: @copy; } -.icon-paperclip:before, -.icon-paper-clip:before { content: @paper-clip; } -.icon-save:before { content: @save; } -.icon-sign-blank:before { content: @sign-blank; } -.icon-reorder:before { content: @reorder; } -.icon-list-ul:before { content: @list-ul; } -.icon-list-ol:before { content: @list-ol; } -.icon-strikethrough:before { content: @strikethrough; } -.icon-underline:before { content: @underline; } -.icon-table:before { content: @table; } -.icon-magic:before { content: @magic; } -.icon-truck:before { content: @truck; } -.icon-pinterest:before { content: @pinterest; } -.icon-pinterest-sign:before { content: @pinterest-sign; } -.icon-google-plus-sign:before { content: @google-plus-sign; } -.icon-google-plus:before { content: @google-plus; } -.icon-money:before { content: @money; } -.icon-caret-down:before { content: @caret-down; } -.icon-caret-up:before { content: @caret-up; } -.icon-caret-left:before { content: @caret-left; } -.icon-caret-right:before { content: @caret-right; } -.icon-columns:before { content: @columns; } -.icon-sort:before { content: @sort; } -.icon-sort-down:before { content: @sort-down; } -.icon-sort-up:before { content: @sort-up; } -.icon-envelope:before { content: @envelope; } -.icon-linkedin:before { content: @linkedin; } -.icon-rotate-left:before, -.icon-undo:before { content: @undo; } -.icon-legal:before { content: @legal; } -.icon-dashboard:before { content: @dashboard; } -.icon-comment-alt:before { content: @comment-alt; } -.icon-comments-alt:before { content: @comments-alt; } -.icon-bolt:before { content: @bolt; } -.icon-sitemap:before { content: @sitemap; } -.icon-umbrella:before { content: @umbrella; } -.icon-paste:before { content: @paste; } -.icon-lightbulb:before { content: @lightbulb; } -.icon-exchange:before { content: @exchange; } -.icon-cloud-download:before { content: @cloud-download; } -.icon-cloud-upload:before { content: @cloud-upload; } -.icon-user-md:before { content: @user-md; } -.icon-stethoscope:before { content: @stethoscope; } -.icon-suitcase:before { content: @suitcase; } -.icon-bell-alt:before { content: @bell-alt; } -.icon-coffee:before { content: @coffee; } -.icon-food:before { content: @food; } -.icon-file-text-alt:before { content: @file-text-alt; } -.icon-building:before { content: @building; } -.icon-hospital:before { content: @hospital; } -.icon-ambulance:before { content: @ambulance; } -.icon-medkit:before { content: @medkit; } -.icon-fighter-jet:before { content: @fighter-jet; } -.icon-beer:before { content: @beer; } -.icon-h-sign:before { content: @h-sign; } -.icon-plus-sign-alt:before { content: @plus-sign-alt; } -.icon-double-angle-left:before { content: @double-angle-left; } -.icon-double-angle-right:before { content: @double-angle-right; } -.icon-double-angle-up:before { content: @double-angle-up; } -.icon-double-angle-down:before { content: @double-angle-down; } -.icon-angle-left:before { content: @angle-left; } -.icon-angle-right:before { content: @angle-right; } -.icon-angle-up:before { content: @angle-up; } -.icon-angle-down:before { content: @angle-down; } -.icon-desktop:before { content: @desktop; } -.icon-laptop:before { content: @laptop; } -.icon-tablet:before { content: @tablet; } -.icon-mobile-phone:before { content: @mobile-phone; } -.icon-circle-blank:before { content: @circle-blank; } -.icon-quote-left:before { content: @quote-left; } -.icon-quote-right:before { content: @quote-right; } -.icon-spinner:before { content: @spinner; } -.icon-circle:before { content: @circle; } -.icon-mail-reply:before, -.icon-reply:before { content: @reply; } -.icon-github-alt:before { content: @github-alt; } -.icon-folder-close-alt:before { content: @folder-close-alt; } -.icon-folder-open-alt:before { content: @folder-open-alt; } -.icon-expand-alt:before { content: @expand-alt; } -.icon-collapse-alt:before { content: @collapse-alt; } -.icon-smile:before { content: @smile; } -.icon-frown:before { content: @frown; } -.icon-meh:before { content: @meh; } -.icon-gamepad:before { content: @gamepad; } -.icon-keyboard:before { content: @keyboard; } -.icon-flag-alt:before { content: @flag-alt; } -.icon-flag-checkered:before { content: @flag-checkered; } -.icon-terminal:before { content: @terminal; } -.icon-code:before { content: @code; } -.icon-reply-all:before { content: @reply-all; } -.icon-mail-reply-all:before { content: @mail-reply-all; } -.icon-star-half-full:before, -.icon-star-half-empty:before { content: @star-half-empty; } -.icon-location-arrow:before { content: @location-arrow; } -.icon-crop:before { content: @crop; } -.icon-code-fork:before { content: @code-fork; } -.icon-unlink:before { content: @unlink; } -.icon-question:before { content: @question; } -.icon-info:before { content: @info; } -.icon-exclamation:before { content: @exclamation; } -.icon-superscript:before { content: @superscript; } -.icon-subscript:before { content: @subscript; } -.icon-eraser:before { content: @eraser; } -.icon-puzzle-piece:before { content: @puzzle-piece; } -.icon-microphone:before { content: @microphone; } -.icon-microphone-off:before { content: @microphone-off; } -.icon-shield:before { content: @shield; } -.icon-calendar-empty:before { content: @calendar-empty; } -.icon-fire-extinguisher:before { content: @fire-extinguisher; } -.icon-rocket:before { content: @rocket; } -.icon-maxcdn:before { content: @maxcdn; } -.icon-chevron-sign-left:before { content: @chevron-sign-left; } -.icon-chevron-sign-right:before { content: @chevron-sign-right; } -.icon-chevron-sign-up:before { content: @chevron-sign-up; } -.icon-chevron-sign-down:before { content: @chevron-sign-down; } -.icon-html5:before { content: @html5; } -.icon-css3:before { content: @css3; } -.icon-anchor:before { content: @anchor; } -.icon-unlock-alt:before { content: @unlock-alt; } -.icon-bullseye:before { content: @bullseye; } -.icon-ellipsis-horizontal:before { content: @ellipsis-horizontal; } -.icon-ellipsis-vertical:before { content: @ellipsis-vertical; } -.icon-rss-sign:before { content: @rss-sign; } -.icon-play-sign:before { content: @play-sign; } -.icon-ticket:before { content: @ticket; } -.icon-minus-sign-alt:before { content: @minus-sign-alt; } -.icon-check-minus:before { content: @check-minus; } -.icon-level-up:before { content: @level-up; } -.icon-level-down:before { content: @level-down; } -.icon-check-sign:before { content: @check-sign; } -.icon-edit-sign:before { content: @edit-sign; } -.icon-external-link-sign:before { content: @external-link-sign; } -.icon-share-sign:before { content: @share-sign; } -.icon-compass:before { content: @compass; } -.icon-collapse:before { content: @collapse; } -.icon-collapse-top:before { content: @collapse-top; } -.icon-expand:before { content: @expand; } -.icon-euro:before, -.icon-eur:before { content: @eur; } -.icon-gbp:before { content: @gbp; } -.icon-dollar:before, -.icon-usd:before { content: @usd; } -.icon-rupee:before, -.icon-inr:before { content: @inr; } -.icon-yen:before, -.icon-jpy:before { content: @jpy; } -.icon-renminbi:before, -.icon-cny:before { content: @cny; } -.icon-won:before, -.icon-krw:before { content: @krw; } -.icon-bitcoin:before, -.icon-btc:before { content: @btc; } -.icon-file:before { content: @file; } -.icon-file-text:before { content: @file-text; } -.icon-sort-by-alphabet:before { content: @sort-by-alphabet; } -.icon-sort-by-alphabet-alt:before { content: @sort-by-alphabet-alt; } -.icon-sort-by-attributes:before { content: @sort-by-attributes; } -.icon-sort-by-attributes-alt:before { content: @sort-by-attributes-alt; } -.icon-sort-by-order:before { content: @sort-by-order; } -.icon-sort-by-order-alt:before { content: @sort-by-order-alt; } -.icon-thumbs-up:before { content: @thumbs-up; } -.icon-thumbs-down:before { content: @thumbs-down; } -.icon-youtube-sign:before { content: @youtube-sign; } -.icon-youtube:before { content: @youtube; } -.icon-xing:before { content: @xing; } -.icon-xing-sign:before { content: @xing-sign; } -.icon-youtube-play:before { content: @youtube-play; } -.icon-dropbox:before { content: @dropbox; } -.icon-stackexchange:before { content: @stackexchange; } -.icon-instagram:before { content: @instagram; } -.icon-flickr:before { content: @flickr; } -.icon-adn:before { content: @adn; } -.icon-bitbucket:before { content: @bitbucket; } -.icon-bitbucket-sign:before { content: @bitbucket-sign; } -.icon-tumblr:before { content: @tumblr; } -.icon-tumblr-sign:before { content: @tumblr-sign; } -.icon-long-arrow-down:before { content: @long-arrow-down; } -.icon-long-arrow-up:before { content: @long-arrow-up; } -.icon-long-arrow-left:before { content: @long-arrow-left; } -.icon-long-arrow-right:before { content: @long-arrow-right; } -.icon-apple:before { content: @apple; } -.icon-windows:before { content: @windows; } -.icon-android:before { content: @android; } -.icon-linux:before { content: @linux; } -.icon-dribbble:before { content: @dribbble; } -.icon-skype:before { content: @skype; } -.icon-foursquare:before { content: @foursquare; } -.icon-trello:before { content: @trello; } -.icon-female:before { content: @female; } -.icon-male:before { content: @male; } -.icon-gittip:before { content: @gittip; } -.icon-sun:before { content: @sun; } -.icon-moon:before { content: @moon; } -.icon-archive:before { content: @archive; } -.icon-bug:before { content: @bug; } -.icon-vk:before { content: @vk; } -.icon-weibo:before { content: @weibo; } -.icon-renren:before { content: @renren; } diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/mixins.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/mixins.less deleted file mode 100644 index f7fdda590..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/less/mixins.less +++ /dev/null @@ -1,48 +0,0 @@ -// Mixins -// -------------------------- - -.icon(@icon) { - .icon-FontAwesome(); - content: @icon; -} - -.icon-FontAwesome() { - font-family: FontAwesome; - font-weight: normal; - font-style: normal; - text-decoration: inherit; - -webkit-font-smoothing: antialiased; - *margin-right: .3em; // fixes ie7 issues -} - -.border-radius(@radius) { - -webkit-border-radius: @radius; - -moz-border-radius: @radius; - border-radius: @radius; -} - -.icon-stack(@width: 2em, @height: 2em, @top-font-size: 1em, @base-font-size: 2em) { - .icon-stack { - position: relative; - display: inline-block; - width: @width; - height: @height; - line-height: @width; - vertical-align: -35%; - [class^="icon-"], - [class*=" icon-"] { - display: block; - text-align: center; - position: absolute; - width: 100%; - height: 100%; - font-size: @top-font-size; - line-height: inherit; - *line-height: @height; - } - .icon-stack-base { - font-size: @base-font-size; - *line-height: @height / @base-font-size; - } - } -} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/path.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/path.less deleted file mode 100644 index 8ccef8cf0..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/less/path.less +++ /dev/null @@ -1,14 +0,0 @@ -/* FONT PATH - * -------------------------- */ - -@font-face { - font-family: 'FontAwesome'; - src: url('@{FontAwesomePath}/fontawesome-webfont.eot?v=@{FontAwesomeVersion}'); - src: url('@{FontAwesomePath}/fontawesome-webfont.eot?#iefix&v=@{FontAwesomeVersion}') format('embedded-opentype'), - url('@{FontAwesomePath}/fontawesome-webfont.woff?v=@{FontAwesomeVersion}') format('woff'), - url('@{FontAwesomePath}/fontawesome-webfont.ttf?v=@{FontAwesomeVersion}') format('truetype'), - url('@{FontAwesomePath}/fontawesome-webfont.svg#fontawesomeregular?v=@{FontAwesomeVersion}') format('svg'); -// src: url('@{FontAwesomePath}/FontAwesome.otf') format('opentype'); // used when developing fonts - font-weight: normal; - font-style: normal; -} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/less/variables.less b/library/font_awesome/src/3.2.1/assets/font-awesome/less/variables.less deleted file mode 100644 index 9d0879b0d..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/less/variables.less +++ /dev/null @@ -1,735 +0,0 @@ -// Variables -// -------------------------- - -@FontAwesomePath: "../font"; -//@FontAwesomePath: "//netdna.bootstrapcdn.com/font-awesome/3.2.1/font"; // for referencing Bootstrap CDN font files directly -@FontAwesomeVersion: "3.2.1"; -@borderColor: #eee; -@iconMuted: #eee; -@iconLight: #fff; -@iconDark: #333; -@icons-li-width: 30/14em; - - - @glass: "\f000"; - - @music: "\f001"; - - @search: "\f002"; - - @envelope-alt: "\f003"; - - @heart: "\f004"; - - @star: "\f005"; - - @star-empty: "\f006"; - - @user: "\f007"; - - @film: "\f008"; - - @th-large: "\f009"; - - @th: "\f00a"; - - @th-list: "\f00b"; - - @ok: "\f00c"; - - @remove: "\f00d"; - - @zoom-in: "\f00e"; - - @zoom-out: "\f010"; - - @off: "\f011"; - - @signal: "\f012"; - - @cog: "\f013"; - - @trash: "\f014"; - - @home: "\f015"; - - @file-alt: "\f016"; - - @time: "\f017"; - - @road: "\f018"; - - @download-alt: "\f019"; - - @download: "\f01a"; - - @upload: "\f01b"; - - @inbox: "\f01c"; - - @play-circle: "\f01d"; - - @repeat: "\f01e"; - - @refresh: "\f021"; - - @list-alt: "\f022"; - - @lock: "\f023"; - - @flag: "\f024"; - - @headphones: "\f025"; - - @volume-off: "\f026"; - - @volume-down: "\f027"; - - @volume-up: "\f028"; - - @qrcode: "\f029"; - - @barcode: "\f02a"; - - @tag: "\f02b"; - - @tags: "\f02c"; - - @book: "\f02d"; - - @bookmark: "\f02e"; - - @print: "\f02f"; - - @camera: "\f030"; - - @font: "\f031"; - - @bold: "\f032"; - - @italic: "\f033"; - - @text-height: "\f034"; - - @text-width: "\f035"; - - @align-left: "\f036"; - - @align-center: "\f037"; - - @align-right: "\f038"; - - @align-justify: "\f039"; - - @list: "\f03a"; - - @indent-left: "\f03b"; - - @indent-right: "\f03c"; - - @facetime-video: "\f03d"; - - @picture: "\f03e"; - - @pencil: "\f040"; - - @map-marker: "\f041"; - - @adjust: "\f042"; - - @tint: "\f043"; - - @edit: "\f044"; - - @share: "\f045"; - - @check: "\f046"; - - @move: "\f047"; - - @step-backward: "\f048"; - - @fast-backward: "\f049"; - - @backward: "\f04a"; - - @play: "\f04b"; - - @pause: "\f04c"; - - @stop: "\f04d"; - - @forward: "\f04e"; - - @fast-forward: "\f050"; - - @step-forward: "\f051"; - - @eject: "\f052"; - - @chevron-left: "\f053"; - - @chevron-right: "\f054"; - - @plus-sign: "\f055"; - - @minus-sign: "\f056"; - - @remove-sign: "\f057"; - - @ok-sign: "\f058"; - - @question-sign: "\f059"; - - @info-sign: "\f05a"; - - @screenshot: "\f05b"; - - @remove-circle: "\f05c"; - - @ok-circle: "\f05d"; - - @ban-circle: "\f05e"; - - @arrow-left: "\f060"; - - @arrow-right: "\f061"; - - @arrow-up: "\f062"; - - @arrow-down: "\f063"; - - @share-alt: "\f064"; - - @resize-full: "\f065"; - - @resize-small: "\f066"; - - @plus: "\f067"; - - @minus: "\f068"; - - @asterisk: "\f069"; - - @exclamation-sign: "\f06a"; - - @gift: "\f06b"; - - @leaf: "\f06c"; - - @fire: "\f06d"; - - @eye-open: "\f06e"; - - @eye-close: "\f070"; - - @warning-sign: "\f071"; - - @plane: "\f072"; - - @calendar: "\f073"; - - @random: "\f074"; - - @comment: "\f075"; - - @magnet: "\f076"; - - @chevron-up: "\f077"; - - @chevron-down: "\f078"; - - @retweet: "\f079"; - - @shopping-cart: "\f07a"; - - @folder-close: "\f07b"; - - @folder-open: "\f07c"; - - @resize-vertical: "\f07d"; - - @resize-horizontal: "\f07e"; - - @bar-chart: "\f080"; - - @twitter-sign: "\f081"; - - @facebook-sign: "\f082"; - - @camera-retro: "\f083"; - - @key: "\f084"; - - @cogs: "\f085"; - - @comments: "\f086"; - - @thumbs-up-alt: "\f087"; - - @thumbs-down-alt: "\f088"; - - @star-half: "\f089"; - - @heart-empty: "\f08a"; - - @signout: "\f08b"; - - @linkedin-sign: "\f08c"; - - @pushpin: "\f08d"; - - @external-link: "\f08e"; - - @signin: "\f090"; - - @trophy: "\f091"; - - @github-sign: "\f092"; - - @upload-alt: "\f093"; - - @lemon: "\f094"; - - @phone: "\f095"; - - @check-empty: "\f096"; - - @bookmark-empty: "\f097"; - - @phone-sign: "\f098"; - - @twitter: "\f099"; - - @facebook: "\f09a"; - - @github: "\f09b"; - - @unlock: "\f09c"; - - @credit-card: "\f09d"; - - @rss: "\f09e"; - - @hdd: "\f0a0"; - - @bullhorn: "\f0a1"; - - @bell: "\f0a2"; - - @certificate: "\f0a3"; - - @hand-right: "\f0a4"; - - @hand-left: "\f0a5"; - - @hand-up: "\f0a6"; - - @hand-down: "\f0a7"; - - @circle-arrow-left: "\f0a8"; - - @circle-arrow-right: "\f0a9"; - - @circle-arrow-up: "\f0aa"; - - @circle-arrow-down: "\f0ab"; - - @globe: "\f0ac"; - - @wrench: "\f0ad"; - - @tasks: "\f0ae"; - - @filter: "\f0b0"; - - @briefcase: "\f0b1"; - - @fullscreen: "\f0b2"; - - @group: "\f0c0"; - - @link: "\f0c1"; - - @cloud: "\f0c2"; - - @beaker: "\f0c3"; - - @cut: "\f0c4"; - - @copy: "\f0c5"; - - @paper-clip: "\f0c6"; - - @save: "\f0c7"; - - @sign-blank: "\f0c8"; - - @reorder: "\f0c9"; - - @list-ul: "\f0ca"; - - @list-ol: "\f0cb"; - - @strikethrough: "\f0cc"; - - @underline: "\f0cd"; - - @table: "\f0ce"; - - @magic: "\f0d0"; - - @truck: "\f0d1"; - - @pinterest: "\f0d2"; - - @pinterest-sign: "\f0d3"; - - @google-plus-sign: "\f0d4"; - - @google-plus: "\f0d5"; - - @money: "\f0d6"; - - @caret-down: "\f0d7"; - - @caret-up: "\f0d8"; - - @caret-left: "\f0d9"; - - @caret-right: "\f0da"; - - @columns: "\f0db"; - - @sort: "\f0dc"; - - @sort-down: "\f0dd"; - - @sort-up: "\f0de"; - - @envelope: "\f0e0"; - - @linkedin: "\f0e1"; - - @undo: "\f0e2"; - - @legal: "\f0e3"; - - @dashboard: "\f0e4"; - - @comment-alt: "\f0e5"; - - @comments-alt: "\f0e6"; - - @bolt: "\f0e7"; - - @sitemap: "\f0e8"; - - @umbrella: "\f0e9"; - - @paste: "\f0ea"; - - @lightbulb: "\f0eb"; - - @exchange: "\f0ec"; - - @cloud-download: "\f0ed"; - - @cloud-upload: "\f0ee"; - - @user-md: "\f0f0"; - - @stethoscope: "\f0f1"; - - @suitcase: "\f0f2"; - - @bell-alt: "\f0f3"; - - @coffee: "\f0f4"; - - @food: "\f0f5"; - - @file-text-alt: "\f0f6"; - - @building: "\f0f7"; - - @hospital: "\f0f8"; - - @ambulance: "\f0f9"; - - @medkit: "\f0fa"; - - @fighter-jet: "\f0fb"; - - @beer: "\f0fc"; - - @h-sign: "\f0fd"; - - @plus-sign-alt: "\f0fe"; - - @double-angle-left: "\f100"; - - @double-angle-right: "\f101"; - - @double-angle-up: "\f102"; - - @double-angle-down: "\f103"; - - @angle-left: "\f104"; - - @angle-right: "\f105"; - - @angle-up: "\f106"; - - @angle-down: "\f107"; - - @desktop: "\f108"; - - @laptop: "\f109"; - - @tablet: "\f10a"; - - @mobile-phone: "\f10b"; - - @circle-blank: "\f10c"; - - @quote-left: "\f10d"; - - @quote-right: "\f10e"; - - @spinner: "\f110"; - - @circle: "\f111"; - - @reply: "\f112"; - - @github-alt: "\f113"; - - @folder-close-alt: "\f114"; - - @folder-open-alt: "\f115"; - - @expand-alt: "\f116"; - - @collapse-alt: "\f117"; - - @smile: "\f118"; - - @frown: "\f119"; - - @meh: "\f11a"; - - @gamepad: "\f11b"; - - @keyboard: "\f11c"; - - @flag-alt: "\f11d"; - - @flag-checkered: "\f11e"; - - @terminal: "\f120"; - - @code: "\f121"; - - @reply-all: "\f122"; - - @mail-reply-all: "\f122"; - - @star-half-empty: "\f123"; - - @location-arrow: "\f124"; - - @crop: "\f125"; - - @code-fork: "\f126"; - - @unlink: "\f127"; - - @question: "\f128"; - - @info: "\f129"; - - @exclamation: "\f12a"; - - @superscript: "\f12b"; - - @subscript: "\f12c"; - - @eraser: "\f12d"; - - @puzzle-piece: "\f12e"; - - @microphone: "\f130"; - - @microphone-off: "\f131"; - - @shield: "\f132"; - - @calendar-empty: "\f133"; - - @fire-extinguisher: "\f134"; - - @rocket: "\f135"; - - @maxcdn: "\f136"; - - @chevron-sign-left: "\f137"; - - @chevron-sign-right: "\f138"; - - @chevron-sign-up: "\f139"; - - @chevron-sign-down: "\f13a"; - - @html5: "\f13b"; - - @css3: "\f13c"; - - @anchor: "\f13d"; - - @unlock-alt: "\f13e"; - - @bullseye: "\f140"; - - @ellipsis-horizontal: "\f141"; - - @ellipsis-vertical: "\f142"; - - @rss-sign: "\f143"; - - @play-sign: "\f144"; - - @ticket: "\f145"; - - @minus-sign-alt: "\f146"; - - @check-minus: "\f147"; - - @level-up: "\f148"; - - @level-down: "\f149"; - - @check-sign: "\f14a"; - - @edit-sign: "\f14b"; - - @external-link-sign: "\f14c"; - - @share-sign: "\f14d"; - - @compass: "\f14e"; - - @collapse: "\f150"; - - @collapse-top: "\f151"; - - @expand: "\f152"; - - @eur: "\f153"; - - @gbp: "\f154"; - - @usd: "\f155"; - - @inr: "\f156"; - - @jpy: "\f157"; - - @cny: "\f158"; - - @krw: "\f159"; - - @btc: "\f15a"; - - @file: "\f15b"; - - @file-text: "\f15c"; - - @sort-by-alphabet: "\f15d"; - - @sort-by-alphabet-alt: "\f15e"; - - @sort-by-attributes: "\f160"; - - @sort-by-attributes-alt: "\f161"; - - @sort-by-order: "\f162"; - - @sort-by-order-alt: "\f163"; - - @thumbs-up: "\f164"; - - @thumbs-down: "\f165"; - - @youtube-sign: "\f166"; - - @youtube: "\f167"; - - @xing: "\f168"; - - @xing-sign: "\f169"; - - @youtube-play: "\f16a"; - - @dropbox: "\f16b"; - - @stackexchange: "\f16c"; - - @instagram: "\f16d"; - - @flickr: "\f16e"; - - @adn: "\f170"; - - @bitbucket: "\f171"; - - @bitbucket-sign: "\f172"; - - @tumblr: "\f173"; - - @tumblr-sign: "\f174"; - - @long-arrow-down: "\f175"; - - @long-arrow-up: "\f176"; - - @long-arrow-left: "\f177"; - - @long-arrow-right: "\f178"; - - @apple: "\f179"; - - @windows: "\f17a"; - - @android: "\f17b"; - - @linux: "\f17c"; - - @dribbble: "\f17d"; - - @skype: "\f17e"; - - @foursquare: "\f180"; - - @trello: "\f181"; - - @female: "\f182"; - - @male: "\f183"; - - @gittip: "\f184"; - - @sun: "\f185"; - - @moon: "\f186"; - - @archive: "\f187"; - - @bug: "\f188"; - - @vk: "\f189"; - - @weibo: "\f18a"; - - @renren: "\f18b"; - diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_bootstrap.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_bootstrap.scss deleted file mode 100644 index 837d2df65..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_bootstrap.scss +++ /dev/null @@ -1,84 +0,0 @@ -/* BOOTSTRAP SPECIFIC CLASSES - * -------------------------- */ - -/* Bootstrap 2.0 sprites.less reset */ -[class^="icon-"], -[class*=" icon-"] { - display: inline; - width: auto; - height: auto; - line-height: normal; - vertical-align: baseline; - background-image: none; - background-position: 0% 0%; - background-repeat: repeat; - margin-top: 0; -} - -/* more sprites.less reset */ -.icon-white, -.nav-pills > .active > a > [class^="icon-"], -.nav-pills > .active > a > [class*=" icon-"], -.nav-list > .active > a > [class^="icon-"], -.nav-list > .active > a > [class*=" icon-"], -.navbar-inverse .nav > .active > a > [class^="icon-"], -.navbar-inverse .nav > .active > a > [class*=" icon-"], -.dropdown-menu > li > a:hover > [class^="icon-"], -.dropdown-menu > li > a:hover > [class*=" icon-"], -.dropdown-menu > .active > a > [class^="icon-"], -.dropdown-menu > .active > a > [class*=" icon-"], -.dropdown-submenu:hover > a > [class^="icon-"], -.dropdown-submenu:hover > a > [class*=" icon-"] { - background-image: none; -} - - -/* keeps Bootstrap styles with and without icons the same */ -.btn, .nav { - [class^="icon-"], - [class*=" icon-"] { - // display: inline; - &.icon-large { line-height: .9em; } - &.icon-spin { display: inline-block; } - } -} -.nav-tabs, .nav-pills { - [class^="icon-"], - [class*=" icon-"] { - &, &.icon-large { line-height: .9em; } - } -} -.btn { - [class^="icon-"], - [class*=" icon-"] { - &.pull-left, &.pull-right { - &.icon-2x { margin-top: .18em; } - } - &.icon-spin.icon-large { line-height: .8em; } - } -} -.btn.btn-small { - [class^="icon-"], - [class*=" icon-"] { - &.pull-left, &.pull-right { - &.icon-2x { margin-top: .25em; } - } - } -} -.btn.btn-large { - [class^="icon-"], - [class*=" icon-"] { - margin-top: 0; // overrides bootstrap default - &.pull-left, &.pull-right { - &.icon-2x { margin-top: .05em; } - } - &.pull-left.icon-2x { margin-right: .2em; } - &.pull-right.icon-2x { margin-left: .2em; } - } -} - -/* Fixes alignment in nav lists */ -.nav-list [class^="icon-"], -.nav-list [class*=" icon-"] { - line-height: inherit; -} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_core.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_core.scss deleted file mode 100644 index 0189c73df..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_core.scss +++ /dev/null @@ -1,129 +0,0 @@ -/* FONT AWESOME CORE - * -------------------------- */ - -[class^="icon-"], -[class*=" icon-"] { - @include icon-FontAwesome(); -} - -[class^="icon-"]:before, -[class*=" icon-"]:before { - text-decoration: inherit; - display: inline-block; - speak: none; -} - -/* makes the font 33% larger relative to the icon container */ -.icon-large:before { - vertical-align: -10%; - font-size: (4em/3); -} - -/* makes sure icons active on rollover in links */ -a { - [class^="icon-"], - [class*=" icon-"] { - display: inline; - } -} - -/* increased font size for icon-large */ -[class^="icon-"], -[class*=" icon-"] { - &.icon-fixed-width { - display: inline-block; - width: (16em/14); - text-align: right; - padding-right: (4em/14); - &.icon-large { - width: (20em/14); - } - } -} - -.icons-ul { - margin-left: $icons-li-width; - list-style-type: none; - - > li { position: relative; } - - .icon-li { - position: absolute; - left: -$icons-li-width; - width: $icons-li-width; - text-align: center; - line-height: inherit; - } -} - -// allows usage of the hide class directly on font awesome icons -[class^="icon-"], -[class*=" icon-"] { - &.hide { - display: none; - } -} - -.icon-muted { color: $iconMuted; } -.icon-light { color: $iconLight; } -.icon-dark { color: $iconDark; } - -// Icon Borders -// ------------------------- - -.icon-border { - border: solid 1px $borderColor; - padding: .2em .25em .15em; - @include border-radius(3px); -} - -// Icon Sizes -// ------------------------- - -.icon-2x { - font-size: 2em; - &.icon-border { - border-width: 2px; - @include border-radius(4px); - } -} -.icon-3x { - font-size: 3em; - &.icon-border { - border-width: 3px; - @include border-radius(5px); - } -} -.icon-4x { - font-size: 4em; - &.icon-border { - border-width: 4px; - @include border-radius(6px); - } -} - -.icon-5x { - font-size: 5em; - &.icon-border { - border-width: 5px; - @include border-radius(7px); - } -} - - -// Floats & Margins -// ------------------------- - -// Quick floats -.pull-right { float: right; } -.pull-left { float: left; } - -[class^="icon-"], -[class*=" icon-"] { - &.pull-left { - margin-right: .3em; - } - &.pull-right { - margin-left: .3em; - } -} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_extras.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_extras.scss deleted file mode 100644 index 9a25845d8..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_extras.scss +++ /dev/null @@ -1,93 +0,0 @@ -/* EXTRAS - * -------------------------- */ - -/* Stacked and layered icon */ -@include icon-stack(); - -/* Animated rotating icon */ -.icon-spin { - display: inline-block; - -moz-animation: spin 2s infinite linear; - -o-animation: spin 2s infinite linear; - -webkit-animation: spin 2s infinite linear; - animation: spin 2s infinite linear; -} - -/* Prevent stack and spinners from being taken inline when inside a link */ -a .icon-stack, -a .icon-spin { - display: inline-block; - text-decoration: none; -} - -@-moz-keyframes spin { - 0% { -moz-transform: rotate(0deg); } - 100% { -moz-transform: rotate(359deg); } -} -@-webkit-keyframes spin { - 0% { -webkit-transform: rotate(0deg); } - 100% { -webkit-transform: rotate(359deg); } -} -@-o-keyframes spin { - 0% { -o-transform: rotate(0deg); } - 100% { -o-transform: rotate(359deg); } -} -@-ms-keyframes spin { - 0% { -ms-transform: rotate(0deg); } - 100% { -ms-transform: rotate(359deg); } -} -@keyframes spin { - 0% { transform: rotate(0deg); } - 100% { transform: rotate(359deg); } -} - -/* Icon rotations and mirroring */ -.icon-rotate-90:before { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); - -ms-transform: rotate(90deg); - -o-transform: rotate(90deg); - transform: rotate(90deg); - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); -} - -.icon-rotate-180:before { - -webkit-transform: rotate(180deg); - -moz-transform: rotate(180deg); - -ms-transform: rotate(180deg); - -o-transform: rotate(180deg); - transform: rotate(180deg); - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); -} - -.icon-rotate-270:before { - -webkit-transform: rotate(270deg); - -moz-transform: rotate(270deg); - -ms-transform: rotate(270deg); - -o-transform: rotate(270deg); - transform: rotate(270deg); - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); -} - -.icon-flip-horizontal:before { - -webkit-transform: scale(-1, 1); - -moz-transform: scale(-1, 1); - -ms-transform: scale(-1, 1); - -o-transform: scale(-1, 1); - transform: scale(-1, 1); -} - -.icon-flip-vertical:before { - -webkit-transform: scale(1, -1); - -moz-transform: scale(1, -1); - -ms-transform: scale(1, -1); - -o-transform: scale(1, -1); - transform: scale(1, -1); -} - -/* ensure rotation occurs inside anchor tags */ -a { - .icon-rotate-90, .icon-rotate-180, .icon-rotate-270, .icon-flip-horizontal, .icon-flip-vertical { - &:before { display: inline-block; } - } -} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_icons.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_icons.scss deleted file mode 100644 index eefda0c9e..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_icons.scss +++ /dev/null @@ -1,381 +0,0 @@ -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - * readers do not read off random characters that represent icons */ - -.icon-glass:before { content: $glass; } -.icon-music:before { content: $music; } -.icon-search:before { content: $search; } -.icon-envelope-alt:before { content: $envelope-alt; } -.icon-heart:before { content: $heart; } -.icon-star:before { content: $star; } -.icon-star-empty:before { content: $star-empty; } -.icon-user:before { content: $user; } -.icon-film:before { content: $film; } -.icon-th-large:before { content: $th-large; } -.icon-th:before { content: $th; } -.icon-th-list:before { content: $th-list; } -.icon-ok:before { content: $ok; } -.icon-remove:before { content: $remove; } -.icon-zoom-in:before { content: $zoom-in; } -.icon-zoom-out:before { content: $zoom-out; } -.icon-power-off:before, -.icon-off:before { content: $off; } -.icon-signal:before { content: $signal; } -.icon-gear:before, -.icon-cog:before { content: $cog; } -.icon-trash:before { content: $trash; } -.icon-home:before { content: $home; } -.icon-file-alt:before { content: $file-alt; } -.icon-time:before { content: $time; } -.icon-road:before { content: $road; } -.icon-download-alt:before { content: $download-alt; } -.icon-download:before { content: $download; } -.icon-upload:before { content: $upload; } -.icon-inbox:before { content: $inbox; } -.icon-play-circle:before { content: $play-circle; } -.icon-rotate-right:before, -.icon-repeat:before { content: $repeat; } -.icon-refresh:before { content: $refresh; } -.icon-list-alt:before { content: $list-alt; } -.icon-lock:before { content: $lock; } -.icon-flag:before { content: $flag; } -.icon-headphones:before { content: $headphones; } -.icon-volume-off:before { content: $volume-off; } -.icon-volume-down:before { content: $volume-down; } -.icon-volume-up:before { content: $volume-up; } -.icon-qrcode:before { content: $qrcode; } -.icon-barcode:before { content: $barcode; } -.icon-tag:before { content: $tag; } -.icon-tags:before { content: $tags; } -.icon-book:before { content: $book; } -.icon-bookmark:before { content: $bookmark; } -.icon-print:before { content: $print; } -.icon-camera:before { content: $camera; } -.icon-font:before { content: $font; } -.icon-bold:before { content: $bold; } -.icon-italic:before { content: $italic; } -.icon-text-height:before { content: $text-height; } -.icon-text-width:before { content: $text-width; } -.icon-align-left:before { content: $align-left; } -.icon-align-center:before { content: $align-center; } -.icon-align-right:before { content: $align-right; } -.icon-align-justify:before { content: $align-justify; } -.icon-list:before { content: $list; } -.icon-indent-left:before { content: $indent-left; } -.icon-indent-right:before { content: $indent-right; } -.icon-facetime-video:before { content: $facetime-video; } -.icon-picture:before { content: $picture; } -.icon-pencil:before { content: $pencil; } -.icon-map-marker:before { content: $map-marker; } -.icon-adjust:before { content: $adjust; } -.icon-tint:before { content: $tint; } -.icon-edit:before { content: $edit; } -.icon-share:before { content: $share; } -.icon-check:before { content: $check; } -.icon-move:before { content: $move; } -.icon-step-backward:before { content: $step-backward; } -.icon-fast-backward:before { content: $fast-backward; } -.icon-backward:before { content: $backward; } -.icon-play:before { content: $play; } -.icon-pause:before { content: $pause; } -.icon-stop:before { content: $stop; } -.icon-forward:before { content: $forward; } -.icon-fast-forward:before { content: $fast-forward; } -.icon-step-forward:before { content: $step-forward; } -.icon-eject:before { content: $eject; } -.icon-chevron-left:before { content: $chevron-left; } -.icon-chevron-right:before { content: $chevron-right; } -.icon-plus-sign:before { content: $plus-sign; } -.icon-minus-sign:before { content: $minus-sign; } -.icon-remove-sign:before { content: $remove-sign; } -.icon-ok-sign:before { content: $ok-sign; } -.icon-question-sign:before { content: $question-sign; } -.icon-info-sign:before { content: $info-sign; } -.icon-screenshot:before { content: $screenshot; } -.icon-remove-circle:before { content: $remove-circle; } -.icon-ok-circle:before { content: $ok-circle; } -.icon-ban-circle:before { content: $ban-circle; } -.icon-arrow-left:before { content: $arrow-left; } -.icon-arrow-right:before { content: $arrow-right; } -.icon-arrow-up:before { content: $arrow-up; } -.icon-arrow-down:before { content: $arrow-down; } -.icon-mail-forward:before, -.icon-share-alt:before { content: $share-alt; } -.icon-resize-full:before { content: $resize-full; } -.icon-resize-small:before { content: $resize-small; } -.icon-plus:before { content: $plus; } -.icon-minus:before { content: $minus; } -.icon-asterisk:before { content: $asterisk; } -.icon-exclamation-sign:before { content: $exclamation-sign; } -.icon-gift:before { content: $gift; } -.icon-leaf:before { content: $leaf; } -.icon-fire:before { content: $fire; } -.icon-eye-open:before { content: $eye-open; } -.icon-eye-close:before { content: $eye-close; } -.icon-warning-sign:before { content: $warning-sign; } -.icon-plane:before { content: $plane; } -.icon-calendar:before { content: $calendar; } -.icon-random:before { content: $random; } -.icon-comment:before { content: $comment; } -.icon-magnet:before { content: $magnet; } -.icon-chevron-up:before { content: $chevron-up; } -.icon-chevron-down:before { content: $chevron-down; } -.icon-retweet:before { content: $retweet; } -.icon-shopping-cart:before { content: $shopping-cart; } -.icon-folder-close:before { content: $folder-close; } -.icon-folder-open:before { content: $folder-open; } -.icon-resize-vertical:before { content: $resize-vertical; } -.icon-resize-horizontal:before { content: $resize-horizontal; } -.icon-bar-chart:before { content: $bar-chart; } -.icon-twitter-sign:before { content: $twitter-sign; } -.icon-facebook-sign:before { content: $facebook-sign; } -.icon-camera-retro:before { content: $camera-retro; } -.icon-key:before { content: $key; } -.icon-gears:before, -.icon-cogs:before { content: $cogs; } -.icon-comments:before { content: $comments; } -.icon-thumbs-up-alt:before { content: $thumbs-up-alt; } -.icon-thumbs-down-alt:before { content: $thumbs-down-alt; } -.icon-star-half:before { content: $star-half; } -.icon-heart-empty:before { content: $heart-empty; } -.icon-signout:before { content: $signout; } -.icon-linkedin-sign:before { content: $linkedin-sign; } -.icon-pushpin:before { content: $pushpin; } -.icon-external-link:before { content: $external-link; } -.icon-signin:before { content: $signin; } -.icon-trophy:before { content: $trophy; } -.icon-github-sign:before { content: $github-sign; } -.icon-upload-alt:before { content: $upload-alt; } -.icon-lemon:before { content: $lemon; } -.icon-phone:before { content: $phone; } -.icon-unchecked:before, -.icon-check-empty:before { content: $check-empty; } -.icon-bookmark-empty:before { content: $bookmark-empty; } -.icon-phone-sign:before { content: $phone-sign; } -.icon-twitter:before { content: $twitter; } -.icon-facebook:before { content: $facebook; } -.icon-github:before { content: $github; } -.icon-unlock:before { content: $unlock; } -.icon-credit-card:before { content: $credit-card; } -.icon-rss:before { content: $rss; } -.icon-hdd:before { content: $hdd; } -.icon-bullhorn:before { content: $bullhorn; } -.icon-bell:before { content: $bell; } -.icon-certificate:before { content: $certificate; } -.icon-hand-right:before { content: $hand-right; } -.icon-hand-left:before { content: $hand-left; } -.icon-hand-up:before { content: $hand-up; } -.icon-hand-down:before { content: $hand-down; } -.icon-circle-arrow-left:before { content: $circle-arrow-left; } -.icon-circle-arrow-right:before { content: $circle-arrow-right; } -.icon-circle-arrow-up:before { content: $circle-arrow-up; } -.icon-circle-arrow-down:before { content: $circle-arrow-down; } -.icon-globe:before { content: $globe; } -.icon-wrench:before { content: $wrench; } -.icon-tasks:before { content: $tasks; } -.icon-filter:before { content: $filter; } -.icon-briefcase:before { content: $briefcase; } -.icon-fullscreen:before { content: $fullscreen; } -.icon-group:before { content: $group; } -.icon-link:before { content: $link; } -.icon-cloud:before { content: $cloud; } -.icon-beaker:before { content: $beaker; } -.icon-cut:before { content: $cut; } -.icon-copy:before { content: $copy; } -.icon-paperclip:before, -.icon-paper-clip:before { content: $paper-clip; } -.icon-save:before { content: $save; } -.icon-sign-blank:before { content: $sign-blank; } -.icon-reorder:before { content: $reorder; } -.icon-list-ul:before { content: $list-ul; } -.icon-list-ol:before { content: $list-ol; } -.icon-strikethrough:before { content: $strikethrough; } -.icon-underline:before { content: $underline; } -.icon-table:before { content: $table; } -.icon-magic:before { content: $magic; } -.icon-truck:before { content: $truck; } -.icon-pinterest:before { content: $pinterest; } -.icon-pinterest-sign:before { content: $pinterest-sign; } -.icon-google-plus-sign:before { content: $google-plus-sign; } -.icon-google-plus:before { content: $google-plus; } -.icon-money:before { content: $money; } -.icon-caret-down:before { content: $caret-down; } -.icon-caret-up:before { content: $caret-up; } -.icon-caret-left:before { content: $caret-left; } -.icon-caret-right:before { content: $caret-right; } -.icon-columns:before { content: $columns; } -.icon-sort:before { content: $sort; } -.icon-sort-down:before { content: $sort-down; } -.icon-sort-up:before { content: $sort-up; } -.icon-envelope:before { content: $envelope; } -.icon-linkedin:before { content: $linkedin; } -.icon-rotate-left:before, -.icon-undo:before { content: $undo; } -.icon-legal:before { content: $legal; } -.icon-dashboard:before { content: $dashboard; } -.icon-comment-alt:before { content: $comment-alt; } -.icon-comments-alt:before { content: $comments-alt; } -.icon-bolt:before { content: $bolt; } -.icon-sitemap:before { content: $sitemap; } -.icon-umbrella:before { content: $umbrella; } -.icon-paste:before { content: $paste; } -.icon-lightbulb:before { content: $lightbulb; } -.icon-exchange:before { content: $exchange; } -.icon-cloud-download:before { content: $cloud-download; } -.icon-cloud-upload:before { content: $cloud-upload; } -.icon-user-md:before { content: $user-md; } -.icon-stethoscope:before { content: $stethoscope; } -.icon-suitcase:before { content: $suitcase; } -.icon-bell-alt:before { content: $bell-alt; } -.icon-coffee:before { content: $coffee; } -.icon-food:before { content: $food; } -.icon-file-text-alt:before { content: $file-text-alt; } -.icon-building:before { content: $building; } -.icon-hospital:before { content: $hospital; } -.icon-ambulance:before { content: $ambulance; } -.icon-medkit:before { content: $medkit; } -.icon-fighter-jet:before { content: $fighter-jet; } -.icon-beer:before { content: $beer; } -.icon-h-sign:before { content: $h-sign; } -.icon-plus-sign-alt:before { content: $plus-sign-alt; } -.icon-double-angle-left:before { content: $double-angle-left; } -.icon-double-angle-right:before { content: $double-angle-right; } -.icon-double-angle-up:before { content: $double-angle-up; } -.icon-double-angle-down:before { content: $double-angle-down; } -.icon-angle-left:before { content: $angle-left; } -.icon-angle-right:before { content: $angle-right; } -.icon-angle-up:before { content: $angle-up; } -.icon-angle-down:before { content: $angle-down; } -.icon-desktop:before { content: $desktop; } -.icon-laptop:before { content: $laptop; } -.icon-tablet:before { content: $tablet; } -.icon-mobile-phone:before { content: $mobile-phone; } -.icon-circle-blank:before { content: $circle-blank; } -.icon-quote-left:before { content: $quote-left; } -.icon-quote-right:before { content: $quote-right; } -.icon-spinner:before { content: $spinner; } -.icon-circle:before { content: $circle; } -.icon-mail-reply:before, -.icon-reply:before { content: $reply; } -.icon-github-alt:before { content: $github-alt; } -.icon-folder-close-alt:before { content: $folder-close-alt; } -.icon-folder-open-alt:before { content: $folder-open-alt; } -.icon-expand-alt:before { content: $expand-alt; } -.icon-collapse-alt:before { content: $collapse-alt; } -.icon-smile:before { content: $smile; } -.icon-frown:before { content: $frown; } -.icon-meh:before { content: $meh; } -.icon-gamepad:before { content: $gamepad; } -.icon-keyboard:before { content: $keyboard; } -.icon-flag-alt:before { content: $flag-alt; } -.icon-flag-checkered:before { content: $flag-checkered; } -.icon-terminal:before { content: $terminal; } -.icon-code:before { content: $code; } -.icon-reply-all:before { content: $reply-all; } -.icon-mail-reply-all:before { content: $mail-reply-all; } -.icon-star-half-full:before, -.icon-star-half-empty:before { content: $star-half-empty; } -.icon-location-arrow:before { content: $location-arrow; } -.icon-crop:before { content: $crop; } -.icon-code-fork:before { content: $code-fork; } -.icon-unlink:before { content: $unlink; } -.icon-question:before { content: $question; } -.icon-info:before { content: $info; } -.icon-exclamation:before { content: $exclamation; } -.icon-superscript:before { content: $superscript; } -.icon-subscript:before { content: $subscript; } -.icon-eraser:before { content: $eraser; } -.icon-puzzle-piece:before { content: $puzzle-piece; } -.icon-microphone:before { content: $microphone; } -.icon-microphone-off:before { content: $microphone-off; } -.icon-shield:before { content: $shield; } -.icon-calendar-empty:before { content: $calendar-empty; } -.icon-fire-extinguisher:before { content: $fire-extinguisher; } -.icon-rocket:before { content: $rocket; } -.icon-maxcdn:before { content: $maxcdn; } -.icon-chevron-sign-left:before { content: $chevron-sign-left; } -.icon-chevron-sign-right:before { content: $chevron-sign-right; } -.icon-chevron-sign-up:before { content: $chevron-sign-up; } -.icon-chevron-sign-down:before { content: $chevron-sign-down; } -.icon-html5:before { content: $html5; } -.icon-css3:before { content: $css3; } -.icon-anchor:before { content: $anchor; } -.icon-unlock-alt:before { content: $unlock-alt; } -.icon-bullseye:before { content: $bullseye; } -.icon-ellipsis-horizontal:before { content: $ellipsis-horizontal; } -.icon-ellipsis-vertical:before { content: $ellipsis-vertical; } -.icon-rss-sign:before { content: $rss-sign; } -.icon-play-sign:before { content: $play-sign; } -.icon-ticket:before { content: $ticket; } -.icon-minus-sign-alt:before { content: $minus-sign-alt; } -.icon-check-minus:before { content: $check-minus; } -.icon-level-up:before { content: $level-up; } -.icon-level-down:before { content: $level-down; } -.icon-check-sign:before { content: $check-sign; } -.icon-edit-sign:before { content: $edit-sign; } -.icon-external-link-sign:before { content: $external-link-sign; } -.icon-share-sign:before { content: $share-sign; } -.icon-compass:before { content: $compass; } -.icon-collapse:before { content: $collapse; } -.icon-collapse-top:before { content: $collapse-top; } -.icon-expand:before { content: $expand; } -.icon-euro:before, -.icon-eur:before { content: $eur; } -.icon-gbp:before { content: $gbp; } -.icon-dollar:before, -.icon-usd:before { content: $usd; } -.icon-rupee:before, -.icon-inr:before { content: $inr; } -.icon-yen:before, -.icon-jpy:before { content: $jpy; } -.icon-renminbi:before, -.icon-cny:before { content: $cny; } -.icon-won:before, -.icon-krw:before { content: $krw; } -.icon-bitcoin:before, -.icon-btc:before { content: $btc; } -.icon-file:before { content: $file; } -.icon-file-text:before { content: $file-text; } -.icon-sort-by-alphabet:before { content: $sort-by-alphabet; } -.icon-sort-by-alphabet-alt:before { content: $sort-by-alphabet-alt; } -.icon-sort-by-attributes:before { content: $sort-by-attributes; } -.icon-sort-by-attributes-alt:before { content: $sort-by-attributes-alt; } -.icon-sort-by-order:before { content: $sort-by-order; } -.icon-sort-by-order-alt:before { content: $sort-by-order-alt; } -.icon-thumbs-up:before { content: $thumbs-up; } -.icon-thumbs-down:before { content: $thumbs-down; } -.icon-youtube-sign:before { content: $youtube-sign; } -.icon-youtube:before { content: $youtube; } -.icon-xing:before { content: $xing; } -.icon-xing-sign:before { content: $xing-sign; } -.icon-youtube-play:before { content: $youtube-play; } -.icon-dropbox:before { content: $dropbox; } -.icon-stackexchange:before { content: $stackexchange; } -.icon-instagram:before { content: $instagram; } -.icon-flickr:before { content: $flickr; } -.icon-adn:before { content: $adn; } -.icon-bitbucket:before { content: $bitbucket; } -.icon-bitbucket-sign:before { content: $bitbucket-sign; } -.icon-tumblr:before { content: $tumblr; } -.icon-tumblr-sign:before { content: $tumblr-sign; } -.icon-long-arrow-down:before { content: $long-arrow-down; } -.icon-long-arrow-up:before { content: $long-arrow-up; } -.icon-long-arrow-left:before { content: $long-arrow-left; } -.icon-long-arrow-right:before { content: $long-arrow-right; } -.icon-apple:before { content: $apple; } -.icon-windows:before { content: $windows; } -.icon-android:before { content: $android; } -.icon-linux:before { content: $linux; } -.icon-dribbble:before { content: $dribbble; } -.icon-skype:before { content: $skype; } -.icon-foursquare:before { content: $foursquare; } -.icon-trello:before { content: $trello; } -.icon-female:before { content: $female; } -.icon-male:before { content: $male; } -.icon-gittip:before { content: $gittip; } -.icon-sun:before { content: $sun; } -.icon-moon:before { content: $moon; } -.icon-archive:before { content: $archive; } -.icon-bug:before { content: $bug; } -.icon-vk:before { content: $vk; } -.icon-weibo:before { content: $weibo; } -.icon-renren:before { content: $renren; } diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_mixins.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_mixins.scss deleted file mode 100644 index ca9c5931b..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_mixins.scss +++ /dev/null @@ -1,48 +0,0 @@ -// Mixins -// -------------------------- - -@mixin icon($icon) { - @include icon-FontAwesome(); - content: $icon; -} - -@mixin icon-FontAwesome() { - font-family: FontAwesome; - font-weight: normal; - font-style: normal; - text-decoration: inherit; - -webkit-font-smoothing: antialiased; - *margin-right: .3em; // fixes ie7 issues -} - -@mixin border-radius($radius) { - -webkit-border-radius: $radius; - -moz-border-radius: $radius; - border-radius: $radius; -} - -@mixin icon-stack($width: 2em, $height: 2em, $top-font-size: 1em, $base-font-size: 2em) { - .icon-stack { - position: relative; - display: inline-block; - width: $width; - height: $height; - line-height: $width; - vertical-align: -35%; - [class^="icon-"], - [class*=" icon-"] { - display: block; - text-align: center; - position: absolute; - width: 100%; - height: 100%; - font-size: $top-font-size; - line-height: inherit; - *line-height: $height; - } - .icon-stack-base { - font-size: $base-font-size; - *line-height: #{$height / $base-font-size}em; - } - } -} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_path.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_path.scss deleted file mode 100644 index bb3f36b70..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_path.scss +++ /dev/null @@ -1,14 +0,0 @@ -/* FONT PATH - * -------------------------- */ - -@font-face { - font-family: 'FontAwesome'; - src: url('#{$FontAwesomePath}/fontawesome-webfont.eot?v=#{$FontAwesomeVersion}'); - src: url('#{$FontAwesomePath}/fontawesome-webfont.eot?#iefix&v=#{$FontAwesomeVersion}') format('embedded-opentype'), - url('#{$FontAwesomePath}/fontawesome-webfont.woff?v=#{$FontAwesomeVersion}') format('woff'), - url('#{$FontAwesomePath}/fontawesome-webfont.ttf?v=#{$FontAwesomeVersion}') format('truetype'), - url('#{$FontAwesomePath}/fontawesome-webfont.svg#fontawesomeregular?v=#{$FontAwesomeVersion}') format('svg'); -// src: url('#{$FontAwesomePath}/FontAwesome.otf') format('opentype'); // used when developing fonts - font-weight: normal; - font-style: normal; -} diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_variables.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_variables.scss deleted file mode 100644 index 7d6bbc5b1..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/_variables.scss +++ /dev/null @@ -1,734 +0,0 @@ -// Variables -// -------------------------- - -$FontAwesomePath: "../font" !default; -$FontAwesomeVersion: "3.2.1" !default; -$borderColor: #eeeeee !default; -$iconMuted: #eeeeee !default; -$iconLight: white !default; -$iconDark: #333333 !default; -$icons-li-width: (30em/14); - - -$glass: "\f000"; - -$music: "\f001"; - -$search: "\f002"; - -$envelope-alt: "\f003"; - -$heart: "\f004"; - -$star: "\f005"; - -$star-empty: "\f006"; - -$user: "\f007"; - -$film: "\f008"; - -$th-large: "\f009"; - -$th: "\f00a"; - -$th-list: "\f00b"; - -$ok: "\f00c"; - -$remove: "\f00d"; - -$zoom-in: "\f00e"; - -$zoom-out: "\f010"; - -$off: "\f011"; - -$signal: "\f012"; - -$cog: "\f013"; - -$trash: "\f014"; - -$home: "\f015"; - -$file-alt: "\f016"; - -$time: "\f017"; - -$road: "\f018"; - -$download-alt: "\f019"; - -$download: "\f01a"; - -$upload: "\f01b"; - -$inbox: "\f01c"; - -$play-circle: "\f01d"; - -$repeat: "\f01e"; - -$refresh: "\f021"; - -$list-alt: "\f022"; - -$lock: "\f023"; - -$flag: "\f024"; - -$headphones: "\f025"; - -$volume-off: "\f026"; - -$volume-down: "\f027"; - -$volume-up: "\f028"; - -$qrcode: "\f029"; - -$barcode: "\f02a"; - -$tag: "\f02b"; - -$tags: "\f02c"; - -$book: "\f02d"; - -$bookmark: "\f02e"; - -$print: "\f02f"; - -$camera: "\f030"; - -$font: "\f031"; - -$bold: "\f032"; - -$italic: "\f033"; - -$text-height: "\f034"; - -$text-width: "\f035"; - -$align-left: "\f036"; - -$align-center: "\f037"; - -$align-right: "\f038"; - -$align-justify: "\f039"; - -$list: "\f03a"; - -$indent-left: "\f03b"; - -$indent-right: "\f03c"; - -$facetime-video: "\f03d"; - -$picture: "\f03e"; - -$pencil: "\f040"; - -$map-marker: "\f041"; - -$adjust: "\f042"; - -$tint: "\f043"; - -$edit: "\f044"; - -$share: "\f045"; - -$check: "\f046"; - -$move: "\f047"; - -$step-backward: "\f048"; - -$fast-backward: "\f049"; - -$backward: "\f04a"; - -$play: "\f04b"; - -$pause: "\f04c"; - -$stop: "\f04d"; - -$forward: "\f04e"; - -$fast-forward: "\f050"; - -$step-forward: "\f051"; - -$eject: "\f052"; - -$chevron-left: "\f053"; - -$chevron-right: "\f054"; - -$plus-sign: "\f055"; - -$minus-sign: "\f056"; - -$remove-sign: "\f057"; - -$ok-sign: "\f058"; - -$question-sign: "\f059"; - -$info-sign: "\f05a"; - -$screenshot: "\f05b"; - -$remove-circle: "\f05c"; - -$ok-circle: "\f05d"; - -$ban-circle: "\f05e"; - -$arrow-left: "\f060"; - -$arrow-right: "\f061"; - -$arrow-up: "\f062"; - -$arrow-down: "\f063"; - -$share-alt: "\f064"; - -$resize-full: "\f065"; - -$resize-small: "\f066"; - -$plus: "\f067"; - -$minus: "\f068"; - -$asterisk: "\f069"; - -$exclamation-sign: "\f06a"; - -$gift: "\f06b"; - -$leaf: "\f06c"; - -$fire: "\f06d"; - -$eye-open: "\f06e"; - -$eye-close: "\f070"; - -$warning-sign: "\f071"; - -$plane: "\f072"; - -$calendar: "\f073"; - -$random: "\f074"; - -$comment: "\f075"; - -$magnet: "\f076"; - -$chevron-up: "\f077"; - -$chevron-down: "\f078"; - -$retweet: "\f079"; - -$shopping-cart: "\f07a"; - -$folder-close: "\f07b"; - -$folder-open: "\f07c"; - -$resize-vertical: "\f07d"; - -$resize-horizontal: "\f07e"; - -$bar-chart: "\f080"; - -$twitter-sign: "\f081"; - -$facebook-sign: "\f082"; - -$camera-retro: "\f083"; - -$key: "\f084"; - -$cogs: "\f085"; - -$comments: "\f086"; - -$thumbs-up-alt: "\f087"; - -$thumbs-down-alt: "\f088"; - -$star-half: "\f089"; - -$heart-empty: "\f08a"; - -$signout: "\f08b"; - -$linkedin-sign: "\f08c"; - -$pushpin: "\f08d"; - -$external-link: "\f08e"; - -$signin: "\f090"; - -$trophy: "\f091"; - -$github-sign: "\f092"; - -$upload-alt: "\f093"; - -$lemon: "\f094"; - -$phone: "\f095"; - -$check-empty: "\f096"; - -$bookmark-empty: "\f097"; - -$phone-sign: "\f098"; - -$twitter: "\f099"; - -$facebook: "\f09a"; - -$github: "\f09b"; - -$unlock: "\f09c"; - -$credit-card: "\f09d"; - -$rss: "\f09e"; - -$hdd: "\f0a0"; - -$bullhorn: "\f0a1"; - -$bell: "\f0a2"; - -$certificate: "\f0a3"; - -$hand-right: "\f0a4"; - -$hand-left: "\f0a5"; - -$hand-up: "\f0a6"; - -$hand-down: "\f0a7"; - -$circle-arrow-left: "\f0a8"; - -$circle-arrow-right: "\f0a9"; - -$circle-arrow-up: "\f0aa"; - -$circle-arrow-down: "\f0ab"; - -$globe: "\f0ac"; - -$wrench: "\f0ad"; - -$tasks: "\f0ae"; - -$filter: "\f0b0"; - -$briefcase: "\f0b1"; - -$fullscreen: "\f0b2"; - -$group: "\f0c0"; - -$link: "\f0c1"; - -$cloud: "\f0c2"; - -$beaker: "\f0c3"; - -$cut: "\f0c4"; - -$copy: "\f0c5"; - -$paper-clip: "\f0c6"; - -$save: "\f0c7"; - -$sign-blank: "\f0c8"; - -$reorder: "\f0c9"; - -$list-ul: "\f0ca"; - -$list-ol: "\f0cb"; - -$strikethrough: "\f0cc"; - -$underline: "\f0cd"; - -$table: "\f0ce"; - -$magic: "\f0d0"; - -$truck: "\f0d1"; - -$pinterest: "\f0d2"; - -$pinterest-sign: "\f0d3"; - -$google-plus-sign: "\f0d4"; - -$google-plus: "\f0d5"; - -$money: "\f0d6"; - -$caret-down: "\f0d7"; - -$caret-up: "\f0d8"; - -$caret-left: "\f0d9"; - -$caret-right: "\f0da"; - -$columns: "\f0db"; - -$sort: "\f0dc"; - -$sort-down: "\f0dd"; - -$sort-up: "\f0de"; - -$envelope: "\f0e0"; - -$linkedin: "\f0e1"; - -$undo: "\f0e2"; - -$legal: "\f0e3"; - -$dashboard: "\f0e4"; - -$comment-alt: "\f0e5"; - -$comments-alt: "\f0e6"; - -$bolt: "\f0e7"; - -$sitemap: "\f0e8"; - -$umbrella: "\f0e9"; - -$paste: "\f0ea"; - -$lightbulb: "\f0eb"; - -$exchange: "\f0ec"; - -$cloud-download: "\f0ed"; - -$cloud-upload: "\f0ee"; - -$user-md: "\f0f0"; - -$stethoscope: "\f0f1"; - -$suitcase: "\f0f2"; - -$bell-alt: "\f0f3"; - -$coffee: "\f0f4"; - -$food: "\f0f5"; - -$file-text-alt: "\f0f6"; - -$building: "\f0f7"; - -$hospital: "\f0f8"; - -$ambulance: "\f0f9"; - -$medkit: "\f0fa"; - -$fighter-jet: "\f0fb"; - -$beer: "\f0fc"; - -$h-sign: "\f0fd"; - -$plus-sign-alt: "\f0fe"; - -$double-angle-left: "\f100"; - -$double-angle-right: "\f101"; - -$double-angle-up: "\f102"; - -$double-angle-down: "\f103"; - -$angle-left: "\f104"; - -$angle-right: "\f105"; - -$angle-up: "\f106"; - -$angle-down: "\f107"; - -$desktop: "\f108"; - -$laptop: "\f109"; - -$tablet: "\f10a"; - -$mobile-phone: "\f10b"; - -$circle-blank: "\f10c"; - -$quote-left: "\f10d"; - -$quote-right: "\f10e"; - -$spinner: "\f110"; - -$circle: "\f111"; - -$reply: "\f112"; - -$github-alt: "\f113"; - -$folder-close-alt: "\f114"; - -$folder-open-alt: "\f115"; - -$expand-alt: "\f116"; - -$collapse-alt: "\f117"; - -$smile: "\f118"; - -$frown: "\f119"; - -$meh: "\f11a"; - -$gamepad: "\f11b"; - -$keyboard: "\f11c"; - -$flag-alt: "\f11d"; - -$flag-checkered: "\f11e"; - -$terminal: "\f120"; - -$code: "\f121"; - -$reply-all: "\f122"; - -$mail-reply-all: "\f122"; - -$star-half-empty: "\f123"; - -$location-arrow: "\f124"; - -$crop: "\f125"; - -$code-fork: "\f126"; - -$unlink: "\f127"; - -$question: "\f128"; - -$info: "\f129"; - -$exclamation: "\f12a"; - -$superscript: "\f12b"; - -$subscript: "\f12c"; - -$eraser: "\f12d"; - -$puzzle-piece: "\f12e"; - -$microphone: "\f130"; - -$microphone-off: "\f131"; - -$shield: "\f132"; - -$calendar-empty: "\f133"; - -$fire-extinguisher: "\f134"; - -$rocket: "\f135"; - -$maxcdn: "\f136"; - -$chevron-sign-left: "\f137"; - -$chevron-sign-right: "\f138"; - -$chevron-sign-up: "\f139"; - -$chevron-sign-down: "\f13a"; - -$html5: "\f13b"; - -$css3: "\f13c"; - -$anchor: "\f13d"; - -$unlock-alt: "\f13e"; - -$bullseye: "\f140"; - -$ellipsis-horizontal: "\f141"; - -$ellipsis-vertical: "\f142"; - -$rss-sign: "\f143"; - -$play-sign: "\f144"; - -$ticket: "\f145"; - -$minus-sign-alt: "\f146"; - -$check-minus: "\f147"; - -$level-up: "\f148"; - -$level-down: "\f149"; - -$check-sign: "\f14a"; - -$edit-sign: "\f14b"; - -$external-link-sign: "\f14c"; - -$share-sign: "\f14d"; - -$compass: "\f14e"; - -$collapse: "\f150"; - -$collapse-top: "\f151"; - -$expand: "\f152"; - -$eur: "\f153"; - -$gbp: "\f154"; - -$usd: "\f155"; - -$inr: "\f156"; - -$jpy: "\f157"; - -$cny: "\f158"; - -$krw: "\f159"; - -$btc: "\f15a"; - -$file: "\f15b"; - -$file-text: "\f15c"; - -$sort-by-alphabet: "\f15d"; - -$sort-by-alphabet-alt: "\f15e"; - -$sort-by-attributes: "\f160"; - -$sort-by-attributes-alt: "\f161"; - -$sort-by-order: "\f162"; - -$sort-by-order-alt: "\f163"; - -$thumbs-up: "\f164"; - -$thumbs-down: "\f165"; - -$youtube-sign: "\f166"; - -$youtube: "\f167"; - -$xing: "\f168"; - -$xing-sign: "\f169"; - -$youtube-play: "\f16a"; - -$dropbox: "\f16b"; - -$stackexchange: "\f16c"; - -$instagram: "\f16d"; - -$flickr: "\f16e"; - -$adn: "\f170"; - -$bitbucket: "\f171"; - -$bitbucket-sign: "\f172"; - -$tumblr: "\f173"; - -$tumblr-sign: "\f174"; - -$long-arrow-down: "\f175"; - -$long-arrow-up: "\f176"; - -$long-arrow-left: "\f177"; - -$long-arrow-right: "\f178"; - -$apple: "\f179"; - -$windows: "\f17a"; - -$android: "\f17b"; - -$linux: "\f17c"; - -$dribbble: "\f17d"; - -$skype: "\f17e"; - -$foursquare: "\f180"; - -$trello: "\f181"; - -$female: "\f182"; - -$male: "\f183"; - -$gittip: "\f184"; - -$sun: "\f185"; - -$moon: "\f186"; - -$archive: "\f187"; - -$bug: "\f188"; - -$vk: "\f189"; - -$weibo: "\f18a"; - -$renren: "\f18b"; - diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/font-awesome-ie7.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/font-awesome-ie7.scss deleted file mode 100644 index 0e236f61e..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/font-awesome-ie7.scss +++ /dev/null @@ -1,1953 +0,0 @@ -/*! - * Font Awesome 3.2.1 - * the iconic font designed for Bootstrap - * ------------------------------------------------------------------------------ - * The full suite of pictographic icons, examples, and documentation can be - * found at http://fontawesome.io. Stay up to date on Twitter at - * http://twitter.com/fontawesome. - * - * License - * ------------------------------------------------------------------------------ - * - The Font Awesome font is licensed under SIL OFL 1.1 - - * http://scripts.sil.org/OFL - * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - - * http://opensource.org/licenses/mit-license.html - * - Font Awesome documentation licensed under CC BY 3.0 - - * http://creativecommons.org/licenses/by/3.0/ - * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: - * "Font Awesome by Dave Gandy - http://fontawesome.io" - * - * Author - Dave Gandy - * ------------------------------------------------------------------------------ - * Email: dave@fontawesome.io - * Twitter: http://twitter.com/davegandy - * Work: Lead Product Designer @ Kyruus - http://kyruus.com - */ - -.icon-large { - font-size: (4em/3); - margin-top: -4px; - padding-top: 3px; - margin-bottom: -4px; - padding-bottom: 3px; - vertical-align: middle; -} - -.nav { - [class^="icon-"], - [class*=" icon-"] { - vertical-align: inherit; - margin-top: -4px; - padding-top: 3px; - margin-bottom: -4px; - padding-bottom: 3px; - &.icon-large { - vertical-align: -25%; - } - } -} - -.nav-pills, .nav-tabs { - [class^="icon-"], - [class*=" icon-"] { - &.icon-large { - line-height: .75em; - margin-top: -7px; - padding-top: 5px; - margin-bottom: -5px; - padding-bottom: 4px; - } - } -} - -.btn { - [class^="icon-"], - [class*=" icon-"] { - &.pull-left, &.pull-right { vertical-align: inherit; } - &.icon-large { - margin-top: -.5em; - } - } -} - -a [class^="icon-"], -a [class*=" icon-"] { - cursor: pointer; -} - -@mixin ie7icon($inner) { *zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = '#{$inner}'); } - - -.icon-glass { - @include ie7icon(''); -} - - -.icon-music { - @include ie7icon(''); -} - - -.icon-search { - @include ie7icon(''); -} - - -.icon-envelope-alt { - @include ie7icon(''); -} - - -.icon-heart { - @include ie7icon(''); -} - - -.icon-star { - @include ie7icon(''); -} - - -.icon-star-empty { - @include ie7icon(''); -} - - -.icon-user { - @include ie7icon(''); -} - - -.icon-film { - @include ie7icon(''); -} - - -.icon-th-large { - @include ie7icon(''); -} - - -.icon-th { - @include ie7icon(''); -} - - -.icon-th-list { - @include ie7icon(''); -} - - -.icon-ok { - @include ie7icon(''); -} - - -.icon-remove { - @include ie7icon(''); -} - - -.icon-zoom-in { - @include ie7icon(''); -} - - -.icon-zoom-out { - @include ie7icon(''); -} - - -.icon-off { - @include ie7icon(''); -} - -.icon-power-off { - @include ie7icon(''); -} - - -.icon-signal { - @include ie7icon(''); -} - - -.icon-cog { - @include ie7icon(''); -} - -.icon-gear { - @include ie7icon(''); -} - - -.icon-trash { - @include ie7icon(''); -} - - -.icon-home { - @include ie7icon(''); -} - - -.icon-file-alt { - @include ie7icon(''); -} - - -.icon-time { - @include ie7icon(''); -} - - -.icon-road { - @include ie7icon(''); -} - - -.icon-download-alt { - @include ie7icon(''); -} - - -.icon-download { - @include ie7icon(''); -} - - -.icon-upload { - @include ie7icon(''); -} - - -.icon-inbox { - @include ie7icon(''); -} - - -.icon-play-circle { - @include ie7icon(''); -} - - -.icon-repeat { - @include ie7icon(''); -} - -.icon-rotate-right { - @include ie7icon(''); -} - - -.icon-refresh { - @include ie7icon(''); -} - - -.icon-list-alt { - @include ie7icon(''); -} - - -.icon-lock { - @include ie7icon(''); -} - - -.icon-flag { - @include ie7icon(''); -} - - -.icon-headphones { - @include ie7icon(''); -} - - -.icon-volume-off { - @include ie7icon(''); -} - - -.icon-volume-down { - @include ie7icon(''); -} - - -.icon-volume-up { - @include ie7icon(''); -} - - -.icon-qrcode { - @include ie7icon(''); -} - - -.icon-barcode { - @include ie7icon(''); -} - - -.icon-tag { - @include ie7icon(''); -} - - -.icon-tags { - @include ie7icon(''); -} - - -.icon-book { - @include ie7icon(''); -} - - -.icon-bookmark { - @include ie7icon(''); -} - - -.icon-print { - @include ie7icon(''); -} - - -.icon-camera { - @include ie7icon(''); -} - - -.icon-font { - @include ie7icon(''); -} - - -.icon-bold { - @include ie7icon(''); -} - - -.icon-italic { - @include ie7icon(''); -} - - -.icon-text-height { - @include ie7icon(''); -} - - -.icon-text-width { - @include ie7icon(''); -} - - -.icon-align-left { - @include ie7icon(''); -} - - -.icon-align-center { - @include ie7icon(''); -} - - -.icon-align-right { - @include ie7icon(''); -} - - -.icon-align-justify { - @include ie7icon(''); -} - - -.icon-list { - @include ie7icon(''); -} - - -.icon-indent-left { - @include ie7icon(''); -} - - -.icon-indent-right { - @include ie7icon(''); -} - - -.icon-facetime-video { - @include ie7icon(''); -} - - -.icon-picture { - @include ie7icon(''); -} - - -.icon-pencil { - @include ie7icon(''); -} - - -.icon-map-marker { - @include ie7icon(''); -} - - -.icon-adjust { - @include ie7icon(''); -} - - -.icon-tint { - @include ie7icon(''); -} - - -.icon-edit { - @include ie7icon(''); -} - - -.icon-share { - @include ie7icon(''); -} - - -.icon-check { - @include ie7icon(''); -} - - -.icon-move { - @include ie7icon(''); -} - - -.icon-step-backward { - @include ie7icon(''); -} - - -.icon-fast-backward { - @include ie7icon(''); -} - - -.icon-backward { - @include ie7icon(''); -} - - -.icon-play { - @include ie7icon(''); -} - - -.icon-pause { - @include ie7icon(''); -} - - -.icon-stop { - @include ie7icon(''); -} - - -.icon-forward { - @include ie7icon(''); -} - - -.icon-fast-forward { - @include ie7icon(''); -} - - -.icon-step-forward { - @include ie7icon(''); -} - - -.icon-eject { - @include ie7icon(''); -} - - -.icon-chevron-left { - @include ie7icon(''); -} - - -.icon-chevron-right { - @include ie7icon(''); -} - - -.icon-plus-sign { - @include ie7icon(''); -} - - -.icon-minus-sign { - @include ie7icon(''); -} - - -.icon-remove-sign { - @include ie7icon(''); -} - - -.icon-ok-sign { - @include ie7icon(''); -} - - -.icon-question-sign { - @include ie7icon(''); -} - - -.icon-info-sign { - @include ie7icon(''); -} - - -.icon-screenshot { - @include ie7icon(''); -} - - -.icon-remove-circle { - @include ie7icon(''); -} - - -.icon-ok-circle { - @include ie7icon(''); -} - - -.icon-ban-circle { - @include ie7icon(''); -} - - -.icon-arrow-left { - @include ie7icon(''); -} - - -.icon-arrow-right { - @include ie7icon(''); -} - - -.icon-arrow-up { - @include ie7icon(''); -} - - -.icon-arrow-down { - @include ie7icon(''); -} - - -.icon-share-alt { - @include ie7icon(''); -} - -.icon-mail-forward { - @include ie7icon(''); -} - - -.icon-resize-full { - @include ie7icon(''); -} - - -.icon-resize-small { - @include ie7icon(''); -} - - -.icon-plus { - @include ie7icon(''); -} - - -.icon-minus { - @include ie7icon(''); -} - - -.icon-asterisk { - @include ie7icon(''); -} - - -.icon-exclamation-sign { - @include ie7icon(''); -} - - -.icon-gift { - @include ie7icon(''); -} - - -.icon-leaf { - @include ie7icon(''); -} - - -.icon-fire { - @include ie7icon(''); -} - - -.icon-eye-open { - @include ie7icon(''); -} - - -.icon-eye-close { - @include ie7icon(''); -} - - -.icon-warning-sign { - @include ie7icon(''); -} - - -.icon-plane { - @include ie7icon(''); -} - - -.icon-calendar { - @include ie7icon(''); -} - - -.icon-random { - @include ie7icon(''); -} - - -.icon-comment { - @include ie7icon(''); -} - - -.icon-magnet { - @include ie7icon(''); -} - - -.icon-chevron-up { - @include ie7icon(''); -} - - -.icon-chevron-down { - @include ie7icon(''); -} - - -.icon-retweet { - @include ie7icon(''); -} - - -.icon-shopping-cart { - @include ie7icon(''); -} - - -.icon-folder-close { - @include ie7icon(''); -} - - -.icon-folder-open { - @include ie7icon(''); -} - - -.icon-resize-vertical { - @include ie7icon(''); -} - - -.icon-resize-horizontal { - @include ie7icon(''); -} - - -.icon-bar-chart { - @include ie7icon(''); -} - - -.icon-twitter-sign { - @include ie7icon(''); -} - - -.icon-facebook-sign { - @include ie7icon(''); -} - - -.icon-camera-retro { - @include ie7icon(''); -} - - -.icon-key { - @include ie7icon(''); -} - - -.icon-cogs { - @include ie7icon(''); -} - -.icon-gears { - @include ie7icon(''); -} - - -.icon-comments { - @include ie7icon(''); -} - - -.icon-thumbs-up-alt { - @include ie7icon(''); -} - - -.icon-thumbs-down-alt { - @include ie7icon(''); -} - - -.icon-star-half { - @include ie7icon(''); -} - - -.icon-heart-empty { - @include ie7icon(''); -} - - -.icon-signout { - @include ie7icon(''); -} - - -.icon-linkedin-sign { - @include ie7icon(''); -} - - -.icon-pushpin { - @include ie7icon(''); -} - - -.icon-external-link { - @include ie7icon(''); -} - - -.icon-signin { - @include ie7icon(''); -} - - -.icon-trophy { - @include ie7icon(''); -} - - -.icon-github-sign { - @include ie7icon(''); -} - - -.icon-upload-alt { - @include ie7icon(''); -} - - -.icon-lemon { - @include ie7icon(''); -} - - -.icon-phone { - @include ie7icon(''); -} - - -.icon-check-empty { - @include ie7icon(''); -} - -.icon-unchecked { - @include ie7icon(''); -} - - -.icon-bookmark-empty { - @include ie7icon(''); -} - - -.icon-phone-sign { - @include ie7icon(''); -} - - -.icon-twitter { - @include ie7icon(''); -} - - -.icon-facebook { - @include ie7icon(''); -} - - -.icon-github { - @include ie7icon(''); -} - - -.icon-unlock { - @include ie7icon(''); -} - - -.icon-credit-card { - @include ie7icon(''); -} - - -.icon-rss { - @include ie7icon(''); -} - - -.icon-hdd { - @include ie7icon(''); -} - - -.icon-bullhorn { - @include ie7icon(''); -} - - -.icon-bell { - @include ie7icon(''); -} - - -.icon-certificate { - @include ie7icon(''); -} - - -.icon-hand-right { - @include ie7icon(''); -} - - -.icon-hand-left { - @include ie7icon(''); -} - - -.icon-hand-up { - @include ie7icon(''); -} - - -.icon-hand-down { - @include ie7icon(''); -} - - -.icon-circle-arrow-left { - @include ie7icon(''); -} - - -.icon-circle-arrow-right { - @include ie7icon(''); -} - - -.icon-circle-arrow-up { - @include ie7icon(''); -} - - -.icon-circle-arrow-down { - @include ie7icon(''); -} - - -.icon-globe { - @include ie7icon(''); -} - - -.icon-wrench { - @include ie7icon(''); -} - - -.icon-tasks { - @include ie7icon(''); -} - - -.icon-filter { - @include ie7icon(''); -} - - -.icon-briefcase { - @include ie7icon(''); -} - - -.icon-fullscreen { - @include ie7icon(''); -} - - -.icon-group { - @include ie7icon(''); -} - - -.icon-link { - @include ie7icon(''); -} - - -.icon-cloud { - @include ie7icon(''); -} - - -.icon-beaker { - @include ie7icon(''); -} - - -.icon-cut { - @include ie7icon(''); -} - - -.icon-copy { - @include ie7icon(''); -} - - -.icon-paper-clip { - @include ie7icon(''); -} - -.icon-paperclip { - @include ie7icon(''); -} - - -.icon-save { - @include ie7icon(''); -} - - -.icon-sign-blank { - @include ie7icon(''); -} - - -.icon-reorder { - @include ie7icon(''); -} - - -.icon-list-ul { - @include ie7icon(''); -} - - -.icon-list-ol { - @include ie7icon(''); -} - - -.icon-strikethrough { - @include ie7icon(''); -} - - -.icon-underline { - @include ie7icon(''); -} - - -.icon-table { - @include ie7icon(''); -} - - -.icon-magic { - @include ie7icon(''); -} - - -.icon-truck { - @include ie7icon(''); -} - - -.icon-pinterest { - @include ie7icon(''); -} - - -.icon-pinterest-sign { - @include ie7icon(''); -} - - -.icon-google-plus-sign { - @include ie7icon(''); -} - - -.icon-google-plus { - @include ie7icon(''); -} - - -.icon-money { - @include ie7icon(''); -} - - -.icon-caret-down { - @include ie7icon(''); -} - - -.icon-caret-up { - @include ie7icon(''); -} - - -.icon-caret-left { - @include ie7icon(''); -} - - -.icon-caret-right { - @include ie7icon(''); -} - - -.icon-columns { - @include ie7icon(''); -} - - -.icon-sort { - @include ie7icon(''); -} - - -.icon-sort-down { - @include ie7icon(''); -} - - -.icon-sort-up { - @include ie7icon(''); -} - - -.icon-envelope { - @include ie7icon(''); -} - - -.icon-linkedin { - @include ie7icon(''); -} - - -.icon-undo { - @include ie7icon(''); -} - -.icon-rotate-left { - @include ie7icon(''); -} - - -.icon-legal { - @include ie7icon(''); -} - - -.icon-dashboard { - @include ie7icon(''); -} - - -.icon-comment-alt { - @include ie7icon(''); -} - - -.icon-comments-alt { - @include ie7icon(''); -} - - -.icon-bolt { - @include ie7icon(''); -} - - -.icon-sitemap { - @include ie7icon(''); -} - - -.icon-umbrella { - @include ie7icon(''); -} - - -.icon-paste { - @include ie7icon(''); -} - - -.icon-lightbulb { - @include ie7icon(''); -} - - -.icon-exchange { - @include ie7icon(''); -} - - -.icon-cloud-download { - @include ie7icon(''); -} - - -.icon-cloud-upload { - @include ie7icon(''); -} - - -.icon-user-md { - @include ie7icon(''); -} - - -.icon-stethoscope { - @include ie7icon(''); -} - - -.icon-suitcase { - @include ie7icon(''); -} - - -.icon-bell-alt { - @include ie7icon(''); -} - - -.icon-coffee { - @include ie7icon(''); -} - - -.icon-food { - @include ie7icon(''); -} - - -.icon-file-text-alt { - @include ie7icon(''); -} - - -.icon-building { - @include ie7icon(''); -} - - -.icon-hospital { - @include ie7icon(''); -} - - -.icon-ambulance { - @include ie7icon(''); -} - - -.icon-medkit { - @include ie7icon(''); -} - - -.icon-fighter-jet { - @include ie7icon(''); -} - - -.icon-beer { - @include ie7icon(''); -} - - -.icon-h-sign { - @include ie7icon(''); -} - - -.icon-plus-sign-alt { - @include ie7icon(''); -} - - -.icon-double-angle-left { - @include ie7icon(''); -} - - -.icon-double-angle-right { - @include ie7icon(''); -} - - -.icon-double-angle-up { - @include ie7icon(''); -} - - -.icon-double-angle-down { - @include ie7icon(''); -} - - -.icon-angle-left { - @include ie7icon(''); -} - - -.icon-angle-right { - @include ie7icon(''); -} - - -.icon-angle-up { - @include ie7icon(''); -} - - -.icon-angle-down { - @include ie7icon(''); -} - - -.icon-desktop { - @include ie7icon(''); -} - - -.icon-laptop { - @include ie7icon(''); -} - - -.icon-tablet { - @include ie7icon(''); -} - - -.icon-mobile-phone { - @include ie7icon(''); -} - - -.icon-circle-blank { - @include ie7icon(''); -} - - -.icon-quote-left { - @include ie7icon(''); -} - - -.icon-quote-right { - @include ie7icon(''); -} - - -.icon-spinner { - @include ie7icon(''); -} - - -.icon-circle { - @include ie7icon(''); -} - - -.icon-reply { - @include ie7icon(''); -} - -.icon-mail-reply { - @include ie7icon(''); -} - - -.icon-github-alt { - @include ie7icon(''); -} - - -.icon-folder-close-alt { - @include ie7icon(''); -} - - -.icon-folder-open-alt { - @include ie7icon(''); -} - - -.icon-expand-alt { - @include ie7icon(''); -} - - -.icon-collapse-alt { - @include ie7icon(''); -} - - -.icon-smile { - @include ie7icon(''); -} - - -.icon-frown { - @include ie7icon(''); -} - - -.icon-meh { - @include ie7icon(''); -} - - -.icon-gamepad { - @include ie7icon(''); -} - - -.icon-keyboard { - @include ie7icon(''); -} - - -.icon-flag-alt { - @include ie7icon(''); -} - - -.icon-flag-checkered { - @include ie7icon(''); -} - - -.icon-terminal { - @include ie7icon(''); -} - - -.icon-code { - @include ie7icon(''); -} - - -.icon-reply-all { - @include ie7icon(''); -} - - -.icon-mail-reply-all { - @include ie7icon(''); -} - - -.icon-star-half-empty { - @include ie7icon(''); -} - -.icon-star-half-full { - @include ie7icon(''); -} - - -.icon-location-arrow { - @include ie7icon(''); -} - - -.icon-crop { - @include ie7icon(''); -} - - -.icon-code-fork { - @include ie7icon(''); -} - - -.icon-unlink { - @include ie7icon(''); -} - - -.icon-question { - @include ie7icon(''); -} - - -.icon-info { - @include ie7icon(''); -} - - -.icon-exclamation { - @include ie7icon(''); -} - - -.icon-superscript { - @include ie7icon(''); -} - - -.icon-subscript { - @include ie7icon(''); -} - - -.icon-eraser { - @include ie7icon(''); -} - - -.icon-puzzle-piece { - @include ie7icon(''); -} - - -.icon-microphone { - @include ie7icon(''); -} - - -.icon-microphone-off { - @include ie7icon(''); -} - - -.icon-shield { - @include ie7icon(''); -} - - -.icon-calendar-empty { - @include ie7icon(''); -} - - -.icon-fire-extinguisher { - @include ie7icon(''); -} - - -.icon-rocket { - @include ie7icon(''); -} - - -.icon-maxcdn { - @include ie7icon(''); -} - - -.icon-chevron-sign-left { - @include ie7icon(''); -} - - -.icon-chevron-sign-right { - @include ie7icon(''); -} - - -.icon-chevron-sign-up { - @include ie7icon(''); -} - - -.icon-chevron-sign-down { - @include ie7icon(''); -} - - -.icon-html5 { - @include ie7icon(''); -} - - -.icon-css3 { - @include ie7icon(''); -} - - -.icon-anchor { - @include ie7icon(''); -} - - -.icon-unlock-alt { - @include ie7icon(''); -} - - -.icon-bullseye { - @include ie7icon(''); -} - - -.icon-ellipsis-horizontal { - @include ie7icon(''); -} - - -.icon-ellipsis-vertical { - @include ie7icon(''); -} - - -.icon-rss-sign { - @include ie7icon(''); -} - - -.icon-play-sign { - @include ie7icon(''); -} - - -.icon-ticket { - @include ie7icon(''); -} - - -.icon-minus-sign-alt { - @include ie7icon(''); -} - - -.icon-check-minus { - @include ie7icon(''); -} - - -.icon-level-up { - @include ie7icon(''); -} - - -.icon-level-down { - @include ie7icon(''); -} - - -.icon-check-sign { - @include ie7icon(''); -} - - -.icon-edit-sign { - @include ie7icon(''); -} - - -.icon-external-link-sign { - @include ie7icon(''); -} - - -.icon-share-sign { - @include ie7icon(''); -} - - -.icon-compass { - @include ie7icon(''); -} - - -.icon-collapse { - @include ie7icon(''); -} - - -.icon-collapse-top { - @include ie7icon(''); -} - - -.icon-expand { - @include ie7icon(''); -} - - -.icon-eur { - @include ie7icon(''); -} - -.icon-euro { - @include ie7icon(''); -} - - -.icon-gbp { - @include ie7icon(''); -} - - -.icon-usd { - @include ie7icon(''); -} - -.icon-dollar { - @include ie7icon(''); -} - - -.icon-inr { - @include ie7icon(''); -} - -.icon-rupee { - @include ie7icon(''); -} - - -.icon-jpy { - @include ie7icon(''); -} - -.icon-yen { - @include ie7icon(''); -} - - -.icon-cny { - @include ie7icon(''); -} - -.icon-renminbi { - @include ie7icon(''); -} - - -.icon-krw { - @include ie7icon(''); -} - -.icon-won { - @include ie7icon(''); -} - - -.icon-btc { - @include ie7icon(''); -} - -.icon-bitcoin { - @include ie7icon(''); -} - - -.icon-file { - @include ie7icon(''); -} - - -.icon-file-text { - @include ie7icon(''); -} - - -.icon-sort-by-alphabet { - @include ie7icon(''); -} - - -.icon-sort-by-alphabet-alt { - @include ie7icon(''); -} - - -.icon-sort-by-attributes { - @include ie7icon(''); -} - - -.icon-sort-by-attributes-alt { - @include ie7icon(''); -} - - -.icon-sort-by-order { - @include ie7icon(''); -} - - -.icon-sort-by-order-alt { - @include ie7icon(''); -} - - -.icon-thumbs-up { - @include ie7icon(''); -} - - -.icon-thumbs-down { - @include ie7icon(''); -} - - -.icon-youtube-sign { - @include ie7icon(''); -} - - -.icon-youtube { - @include ie7icon(''); -} - - -.icon-xing { - @include ie7icon(''); -} - - -.icon-xing-sign { - @include ie7icon(''); -} - - -.icon-youtube-play { - @include ie7icon(''); -} - - -.icon-dropbox { - @include ie7icon(''); -} - - -.icon-stackexchange { - @include ie7icon(''); -} - - -.icon-instagram { - @include ie7icon(''); -} - - -.icon-flickr { - @include ie7icon(''); -} - - -.icon-adn { - @include ie7icon(''); -} - - -.icon-bitbucket { - @include ie7icon(''); -} - - -.icon-bitbucket-sign { - @include ie7icon(''); -} - - -.icon-tumblr { - @include ie7icon(''); -} - - -.icon-tumblr-sign { - @include ie7icon(''); -} - - -.icon-long-arrow-down { - @include ie7icon(''); -} - - -.icon-long-arrow-up { - @include ie7icon(''); -} - - -.icon-long-arrow-left { - @include ie7icon(''); -} - - -.icon-long-arrow-right { - @include ie7icon(''); -} - - -.icon-apple { - @include ie7icon(''); -} - - -.icon-windows { - @include ie7icon(''); -} - - -.icon-android { - @include ie7icon(''); -} - - -.icon-linux { - @include ie7icon(''); -} - - -.icon-dribbble { - @include ie7icon(''); -} - - -.icon-skype { - @include ie7icon(''); -} - - -.icon-foursquare { - @include ie7icon(''); -} - - -.icon-trello { - @include ie7icon(''); -} - - -.icon-female { - @include ie7icon(''); -} - - -.icon-male { - @include ie7icon(''); -} - - -.icon-gittip { - @include ie7icon(''); -} - - -.icon-sun { - @include ie7icon(''); -} - - -.icon-moon { - @include ie7icon(''); -} - - -.icon-archive { - @include ie7icon(''); -} - - -.icon-bug { - @include ie7icon(''); -} - - -.icon-vk { - @include ie7icon(''); -} - - -.icon-weibo { - @include ie7icon(''); -} - - -.icon-renren { - @include ie7icon(''); -} - - diff --git a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/font-awesome.scss b/library/font_awesome/src/3.2.1/assets/font-awesome/scss/font-awesome.scss deleted file mode 100644 index e5903d856..000000000 --- a/library/font_awesome/src/3.2.1/assets/font-awesome/scss/font-awesome.scss +++ /dev/null @@ -1,33 +0,0 @@ -/*! - * Font Awesome 3.2.1 - * the iconic font designed for Bootstrap - * ------------------------------------------------------------------------------ - * The full suite of pictographic icons, examples, and documentation can be - * found at http://fontawesome.io. Stay up to date on Twitter at - * http://twitter.com/fontawesome. - * - * License - * ------------------------------------------------------------------------------ - * - The Font Awesome font is licensed under SIL OFL 1.1 - - * http://scripts.sil.org/OFL - * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - - * http://opensource.org/licenses/mit-license.html - * - Font Awesome documentation licensed under CC BY 3.0 - - * http://creativecommons.org/licenses/by/3.0/ - * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: - * "Font Awesome by Dave Gandy - http://fontawesome.io" - * - * Author - Dave Gandy - * ------------------------------------------------------------------------------ - * Email: dave@fontawesome.io - * Twitter: http://twitter.com/davegandy - * Work: Lead Product Designer @ Kyruus - http://kyruus.com - */ - -@import "variables"; -@import "mixins"; -@import "path"; -@import "core"; -@import "bootstrap"; -@import "extras"; -@import "icons"; diff --git a/library/font_awesome/src/3.2.1/assets/img/contribution-sample.png b/library/font_awesome/src/3.2.1/assets/img/contribution-sample.png deleted file mode 100644 index 7e6356279..000000000 Binary files a/library/font_awesome/src/3.2.1/assets/img/contribution-sample.png and /dev/null differ diff --git a/library/font_awesome/src/3.2.1/assets/img/fort_awesome.jpg b/library/font_awesome/src/3.2.1/assets/img/fort_awesome.jpg deleted file mode 100644 index 3542fae0f..000000000 Binary files a/library/font_awesome/src/3.2.1/assets/img/fort_awesome.jpg and /dev/null differ diff --git a/library/font_awesome/src/3.2.1/assets/img/glyphicons-halflings-white.png b/library/font_awesome/src/3.2.1/assets/img/glyphicons-halflings-white.png deleted file mode 100644 index 3bf6484a2..000000000 Binary files a/library/font_awesome/src/3.2.1/assets/img/glyphicons-halflings-white.png and /dev/null differ diff --git a/library/font_awesome/src/3.2.1/assets/img/glyphicons-halflings.png b/library/font_awesome/src/3.2.1/assets/img/glyphicons-halflings.png deleted file mode 100644 index 8bc9e642b..000000000 Binary files a/library/font_awesome/src/3.2.1/assets/img/glyphicons-halflings.png and /dev/null differ diff --git a/library/font_awesome/src/3.2.1/assets/img/icon-flag.pdf b/library/font_awesome/src/3.2.1/assets/img/icon-flag.pdf deleted file mode 100644 index 1c8913d14..000000000 --- a/library/font_awesome/src/3.2.1/assets/img/icon-flag.pdf +++ /dev/null @@ -1,1355 +0,0 @@ -%PDF-1.5 % -1 0 obj <>/OCGs[5 0 R 29 0 R 51 0 R 73 0 R 95 0 R 117 0 R 140 0 R 163 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream - - - - - application/pdf - - - Web - - - - - Adobe Illustrator CS6 (Macintosh) - 2012-12-10T10:41:19-05:00 - 2013-01-02T00:01:34-05:00 - 2013-01-02T00:01:34-05:00 - - - - 256 - 128 - JPEG - /9j/4AAQSkZJRgABAgEAyADIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAAyAAAAAEA AQDIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAgAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYqw /wDNP8zdE/Lnys2varG9wXlW3s7OKgeadwWC8jsoCoWZj0A7mgKrE/yX/wCcitD/ADM1G60n9Gya PrFtEblLd5RcRywqwVikoSL4lLLVSvfau+KvXMVdirsVdirsVdirsVfOtx/zml5Ni80nTk0a5k0F ZjE2tiVeXENx9VbYISyd/wC85U/Zrtir6HhminhjmhcSRSqHjddwysKgg+4xVfirsVdirsVdirsV fP8A+fP/ADk5d+Q/Mf8Ahjy5p9ve6rbxpLqFxe82hiMqh44ljieNmYowYnkAKjr2VZH+QP58r+Zt rfWeoWUen69pqpJNHCxaGaFzx9SMNV14tsyknqN96BV67irsVdirsVdirsVeD3f/ADmJ+W1v5pbS Ba3kumRzeg+toEMNQ3EyLHy9Ro+9etP2cVe7RyRyxrJGweNwGR1IKspFQQR1BxVqaeCBPUmkWJOn JyFFT7nFW45I5EEkbB0bdWUggj2IxVdirsVdiryr/nJjyZYeZfyn1Sa5kaGfQlbVbR0ANZII3BRg f2XRyPY0PamKvA/+ca7vyl5H8t6/+avmG5mJs5BotlYQKC0jzLHOeFWUM7BdgSAqhia9lUH58/5y 9/MTXJZYPLix+XNNNVUxBZ7tl6VaaReK1/yEBHicVeP6n5v82apMZtT1q+vZSa87i5mlP3uxxVMv L35p/mN5dlSTR/Md/ahKUh9d5ITTYcoZC8TU91xV7t5I/wCc1dQt7f6v500YXrqPgv8ATSsUjUH+ 7IZDwJPirKP8nFVDzr/zmprl3BJa+T9HTTOQoNRvWFxMK90hAESsP8ouPbFUj/5xi88ebtV/PCB9 T1e6vW1a2ulv/rEjSCQRxGVNmqBwZBxp0Gw2xV9sEAih3B6jFXwDrf5Q6Xaf85B/8q3gvZRpct9b xpdFQZUguYEueG5ILIsnDl3pWnbFX0z+cH/OQnlv8rfQ8uWFi2p65HbIYbQOEgt4qcY/Wk+Jq0Wo QCpHUioxV8vecP8AnI783PM8sgk1uTSrN60stLJtEAJ6eoh9ZvD4nOKsBfzBrzz/AFh9SumnqD6p nkL1HQ8i1cVZn5Q/P781/Ks0ZstenvLVCK2OoMbuAr140kJdB/qMuKvdNE/5zd0Y6aP075buU1JV ofqMqPA7U6/vSjxgnt8XzxVh3nn/AJzK86atDJaeVrCHy/A44m7dvrV3T/ILKsSV/wBRiOxxVH/8 4d+a/MuqfmZrsGp6nc30d3pUl3cC5leUvPFcwIkhLljyCzMPpxVv/nMf8sDp+rx/mJb3CmDV5oLC +tGrzW5jt2EciHoUaG2ow7Ed67Kp5/zj75f0X8rPy5v/AM1/NF5WLVreNLS2thzdYDJ8KANw5Syy AbVooFSetFWHefv+cxPPOsSS23lSCPy9p52S4IW4vWHiXcGJKjsqVH82KvGdX88ec9ZlMuq67f3z k1rPczSAfIMxA+jFVbQvzD896DMkuj+YL+yZOiRXEgjO9aNGSUYV7MMVe4eRP+cz/M2notr5x01N ZiAp9fteNtc/N4wPRf8A2ITFU/8AMf8Azm9aCBk8t+WpGuCPgn1GZVRT7ww8i/8AyMXFXg3mv86f zL80axBqupa3Ok1pIJbKC2PoQQspqCkSUWv+U1Se5xVONZ/J+C0/Pk/lpFqDfVJL6CGO+KVdYLmF LkVWtC6RycfAkV2xVmn5mf8AOVPmh5pvLnkYDRdD08mzg1CnqXs0cP7sMGcUiDBaii8/8rFXhOq6 1rGr3TXerX1xqF01S091K80hruficscVRHl/zV5l8u3a3ehapdaZcKa87aV46/6wU0YexxV7l5b/ AOc0fPdhp31bWtKtNaulFEvuRtXPvIkatG3+xVcVYj58/wCcm/zT83RPaC9XRNNcUe00wNCzj/Ln LNMfcBgp8MVfT3/OK+tarq35P2M2p3Ul5NBc3MEc0zF39NHqqljuePLavbbFWUfnX/5KPzf/ANsq 6/5NHFXxXH/6zbcf+BlB/wB0ubFXmmKuxV2KuxV2KvYP+cT/APyduj/8YLz/AKhpMVfemKvkDzN/ 621D/wAx2n/90yHFWFf85Yf+Tt1j/jBZ/wDUNHirx/FXYq7FXYq7FX0B/wA4Vf8Ak09V/wC2Hcf9 Rlpir1X/AJzV/wDJWaV/23Lf/qDu8VYp5+/9Y28uf9GX/J18VfKuKuxV2KuxV2KuxV9K+Zv/AFtq H/mO0/8A7pkOKvnXVv8Ajq3n/GeT/iZxVCYq7FXYq7FX3V/ziF/5Ju2/5jrv/iQxVmv51/8Ako/N /wD2yrr/AJNHFXxXH/6zbcf+BlB/3S5sVeaYq7FXYq7FXYq9g/5xP/8AJ26P/wAYLz/qGkxV96Yq +QPM3/rbUP8AzHaf/wB0yHFWFf8AOWH/AJO3WP8AjBZ/9Q0eKvH8VdirsVdirsVfQH/OFX/k09V/ 7Ydx/wBRlpir1X/nNX/yVmlf9ty3/wCoO7xVinn7/wBY28uf9GX/ACdfFXyrirsVdirsVdirsVfS vmb/ANbah/5jtP8A+6ZDir511b/jq3n/ABnk/wCJnFUJirsVdirsVfdX/OIX/km7b/mOu/8AiQxV mv51/wDko/N//bKuv+TRxV8Vx/8ArNtx/wCBlB/3S5sVYLoXl3XtfvlsNE0641K8bcQWsTSsB0qQ oNB7nbFXrOh/84i/nFqcSy3NvZaQG3C31z8QFO4tluKfrxVB+av+cV/zg8v273KafDrMEYJkbS5T M4A8IZFimb/YocVeSTQzQSvDMjRTRsVkjcFWVgaEMDuCMVWgEkACpOwA61xV9L/84p/k752s/Odv 501exk0vSLW3mFqLleEtw86GMcYmIdUCuW5kUO1K9lX15ir5A8zf+ttQ/wDMdp//AHTIcVYV/wA5 Yf8Ak7dY/wCMFn/1DR4qw/yX+Uf5jec6P5e0O4urUmhvXCwWw8f30xRGp3Ckn2xV6RF/zhl+bL23 rNd6RHJ/yztczmT71gZP+GxVgHnb8lPzN8mRtPrmiTLYrWuoW5W4twB3aSIt6f8As+OKsGxVUggm nmSGCNpZpCFjjQFmZj0AA3JxV9Zf84lflB518t65qHmzzDZPpdvdWDWNnZ3A4XEnqzRStI0f2owv oUo4BNemKp//AM5q/wDkrNK/7blv/wBQd3irFPP3/rG3lz/oy/5Ovir5k0XQdb1y/TT9GsLjUb2T 7NvaxtK9OleKA0A7npir1vQv+cRfzi1SFZbi3stIDioS/ufjp2qtstwR8jviqH8yf84ofnFotu9x FY22sRRir/o2f1Hp7RSrDI3yVScVeSXtje2F3LZ31vJa3cDcJredGjkRh1VkYBlPzxVQxVm35efk /wCe/Pl7DHo2mTfo55Ak+rSqUtYlrR29RuIcqN+CVb2xV6/5m/8AW2of+Y7T/wDumQ4qs0r/AJw1 84ah5rvzrmo2+n6AtzI0N1CfWuLiMsShSLZY6jrzbY9mxV7f5c/5xl/JvRLdIzoa6pcLTndajI87 uR4pVYR/sUGKoHzd/wA4q/lJr1qwsbB9BvqH07qwdgte3OGQvGR40Cn3xV4bqv8Azhb+ZNveOmm6 lpl9aVPpzySTW8hH+XH6cgU/JzirKPJv/OE0izxz+ctdRolIL2Glqx5jwNxMq8fekX0jFX0x5a8t aJ5Z0O10PQ7VbPTLJSlvApZqVJZiWYszMzEkkmpOKsd/Ov8A8lH5v/7ZV1/yaOKvEv8AnFHyh5c8 2/lN5i0TzFZLf6ZNq6u8DM6HlHBEysrxsjqQe6sPDpir6N8t+VPLfljTU03QNOg02yT/AHVboF5H pydvtO3+UxJxVNcVdirGvMv5afl/5muBc695fsdQuhQfWZYV9YgbAGVaOR7E4qt8vflh+Xfl2dbn RfLmn2V0u6XMcCGZe+0rAuPoOKsnxV2KvkDzN/621D/zHaf/AN0yHFX0p5h/Kn8vPMfmG28w65oV vqGrWiCKKefmyFFJKiSHl6UlORpzU4qymOOOKNY41CRoAqIoAVVAoAAOgGKrsVcQGBBFQdiD0IxV hOo/kl+UuoXT3V15U04zvu7RwrECfErHwFfemKp15d8i+TPLY/3AaJY6Y5HFpbaCOORh/lSAc2+k 4qnmKvAP+c1f/JWaV/23Lf8A6g7vFWV/lP5X0HzR+QHlvRNes1vtLurCMT27llrxkLKQyFXUhhUF SDirOvKnkryp5S08af5c0uDTLXbmsK/G5HQySNykkb3dicVTrFXYqkXmXyJ5M80Ko8w6LZ6m0YpH JcQo8iDwWSnNR8jiqUaX+S/5T6ZcC4s/KmmrOKFXkt0mKkdCvq8+J9xirM0RI0WONQiIAqIooABs AAMVfMuvflv54uP+ct7fzNDo9w/l9rizuf0oAPq4jhsY4n5PWgYPGw4nf23GKvpvFXYq7FXYq7FX Yqxb81NJ1HWPy28zaXpsJuL+8065htYFIBeRoyFUVIFScVeb/wDOJXk7zP5Y8jarB5h02bTLi61F poILleEhjEMacuB+IDkp64q9xxV2KuxV2KuxV2KuxV8ya9+W/ni4/wCct7fzNDo9w/l9rizuf0oA Pq4jhsY4n5PWgYPGw4nf23GKvpvFXYq7FXYq7FXYq7FXi/8Azlh5R8y+Z/y2srPy/p82p3drq0F1 Nb2685BELeeIsEG7UeVenz6Yqzb8m9F1PRPyu8taXqlu1rqFrZItxbvTkjEluLUruAdxirMsVdir sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirs VdirsVdirsVdirsVdirsVdirsVdirsVfLH/OS/51/mb5M/MWPR/LWs/UNObT4LgwfVrSb947yBm5 TRSPuEG1aYq8n/6Gj/Pb/qZv+nHT/wDsnxV3/Q0f57f9TN/046f/ANk+Ku/6Gj/Pb/qZv+nHT/8A snxV3/Q0f57f9TN/046f/wBk+Ku/6Gj/AD2/6mb/AKcdP/7J8Vd/0NH+e3/Uzf8ATjp//ZPirv8A oaP89v8AqZv+nHT/APsnxV9j/kn5k1nzJ+Vmg67rdz9a1S9ile6ueEcXIrPIgPCNUQfCo6DFXgV1 /wA5tawvmljbaBav5WWUqEZpBfPEDT1BJy9JWI34emfDl3xV9X2d3BeWcF5bnlBcxpNExBBKOoZT Q9Njiq2/1LTtPgM9/dQ2kA6yzyLEn/BOQMVS+y85+T76YQWWu6fdTHpFDdQSMf8AYq5OKpxirsVQ 2oappmmwrNqN3DZwuwjSS4kSJS7fZUFyBU9hiqJxV8u/mV/zl9rvl/z5qGhaFo1nPpmj3Ulndy3h l9aaSBik3pmN0WMB1KrVXr19sVfRPkzzPaeavKuleYrSNobfVLdLhYX3ZCw+JCe/FqivfFU0ubq1 tYWnupkghX7UsrBFHzZiBiqUweevJNxMsEHmHTZZmNFiS8gZifAKHriqdghgCDUHcEdCMVdiqhe3 9jYWsl3fXEVpaxCstxO6xxqOlWdiFGKqkM0M8Mc8EiywyqHilQhlZWFVZWGxBHQ4qvxV2KuxV2Ku xV2KuxV8Qf8AOZP/AJNyH/tlW3/J2bFXhWKuxV2KuxV2KuxV2Kv0K/5xu/8AJJeVv+ME3/UTLir5 f1/8svKsH/OUA8jxQuvl2bULXlah6ER3FtHdPCrKAQnKQovcL3rvirIvzT/5yz80XF5daF5Hij0T SbSRraPUQoe6lSI8A0YYcIVIGw4lv8odMVeA6vres6zeNe6vf3Go3j/auLqV5pD/ALJyxxVA4qz/ AMifnp+ZnkqSNdK1eS4sEI5aZek3FsQP2QrnlH/zzZTir07VP+c2fO89iItO0LT7K7K0e5kaWcV8 UjrHT/ZFsVeH+b/PPm3zhqR1HzJqc2o3IqI/UNI4wdysUS8Y419lUYq/RryDLLL5F8uSyu0ksml2 TSSMSzMzW6Ekk7kk4q+P/wDnJvyVoVh+edhbWUbQQ+ZIrW91FVb/AHfdXcsEzx1B48xFyPX4iT7Y qyz81/8AnI288j3Mv5dfl1ZRafa+X1XT21SYetIrRKFZYY3HGqtsXk5cjU07lV85eYfNfmbzHd/W 9e1S61O434vdSvLxr2QMaKPZdsVSnFWXeSvzY/MHyXMjeX9auLe3U1awdvVtW33rBJyTfxADe+Kv Yn/5zc85nThHH5e05dRpRrpnnaEnxEIZW/5KYq8a89/ml5689XQn8yapJdRI3KCyX93axHp8EKUS tNuRq3icVfcP/OOUkkn5J+VWkYuwt5FBYknitxIqjfsAKDFXpGKuxV2KuxV2KuxV2KviD/nMn/yb kP8A2yrb/k7NirwrFXYq7FXYq7FXYq7FX6Ff843f+SS8rf8AGCb/AKiZcVeFeZv/AFtqH/mO0/8A 7pkOKvnXVv8Ajq3n/GeT/iZxVCYq7FXYq7FXYq/TT8vP+UA8s/8AbKsf+oZMVfMH/OVP/k/fKP8A zA6d/wB1G4xV4/8AnX/5Nzzf/wBtW6/5OnFWFYq7FXYq7FXYq/Qr/nG7/wAkl5W/4wTf9RMuKvSs VdirsVdirsVdirsVfEH/ADmT/wCTch/7ZVt/ydmxV4VirsVdirsVdirsVdir9Cv+cbv/ACSXlb/j BN/1Ey4q8K8zf+ttQ/8AMdp//dMhxV866t/x1bz/AIzyf8TOKoTFXYq7FXYq7FX6afl5/wAoB5Z/ 7ZVj/wBQyYq+YP8AnKn/AMn75R/5gdO/7qNxirx/86//ACbnm/8A7at1/wAnTirCsVdirsVdirsV foV/zjd/5JLyt/xgm/6iZcVelYq7FXYq7FXYq7FXYq+IP+cyf/JuQ/8AbKtv+Ts2KvCsVdirsVdi rsVdirsVfoV/zjd/5JLyt/xgm/6iZcVeFeZv/W2of+Y7T/8AumQ4q8Ck0TWdU8zXWmabY3F5qL3M qLZwRPJMWDkEcFBbbvir13yp/wA4e/mfq8aT6vJaaBA25juHM9xTt+7h5J9DSA4qy27/AOcG9QW1 LWfnCGa6ptFNYtFHWn+/Fnlbr/kYq8Z/MH8kvzG8hs0mt6Y0mnA0XVbMme0PzcAGOvYSKpxVggBJ AAqTsAOtcVem/l7/AM47fmb50miki019K0lzV9U1BTDHx8Y4z+9l9uK0r1IxV986JpcWk6NYaVC7 SQ6fbQ2sbtTkywxiME07kLir5N/5yp/8n75R/wCYHTv+6jcYq8n/ADksL64/ObzVZwW0s13Pq1wI beNGaRy8hZOKAcm5AginXFWVeT/+cTvzY8wJHcX1tD5ftHAYNqDkTFT4QRh3U+0nHFWet/zg3efV Sy+cYzdU2iOnsI6+HqfWC3/CYq8o/ML/AJx2/M3yQj3V3YDU9JSpbUtO5Txqo7ypxWWP3LLx98Ve ZYqzryL+Sf5k+dpYzo2jypYuRXVLsG3tAD+0JHHx08Iwx9sVfev5beT/APBvkXR/LJuPrT6bB6ct xSgeR2MkhUfy83PGvbFWS4q7FXYq7FXYq7FXYq+IP+cyf/JuQ/8AbKtv+Ts2KvCsVdirsVdirsVd irsVfoV/zjd/5JLyt/xgm/6iZcVeFeZv/W2of+Y7T/8AumQ4q+sLDQNC0+8u76w021tL2/b1L66g hjilneteUrooZzU9WOKo/FXYq4gMCCKg7EHoRiqBt9A0K2uPrNtp1rDcbn1o4Y0ep6/EFBxVHYq7 FXyB/wA5U/8Ak/fKP/MDp3/dRuMVfWCaBoSavJrSabarrEqCOXUhDGLlkAoEabj6hUAdK4qj8Vdi rsVQB8vaAbn60dNtTck8jP6EfqV8eXGuKo/FXYq7FXYq7FXYq7FXYq7FXxB/zmT/AOTch/7ZVt/y dmxV4VirsVdirsVdirsVdir9Cv8AnG7/AMkl5W/4wTf9RMuKsG1r8lfO93/zk3B59hjtz5a9a2uX uTModfq9mkDRmL7fIvFtQUoRv1xV9B4q7FXYq7FXYq7FXYq+fPz1/JXzv5y/Nnyz5j0WO3fSrOC1 t72WWZY2iNvdyTsxQ/EylJduFTsfbFX0HirsVdirsVdirsVdirsVdirsVdirsVdirsVfOn5/f845 +d/zD88x6/ot9plvZrZQ2pjvZbhJecbyMTSKCZafGP2sVebf9CVfmn/1ddD/AOki8/7JMVd/0JV+ af8A1ddD/wCki8/7JMVd/wBCVfmn/wBXXQ/+ki8/7JMVd/0JV+af/V10P/pIvP8AskxV3/QlX5p/ 9XXQ/wDpIvP+yTFXf9CVfmn/ANXXQ/8ApIvP+yTFXf8AQlX5p/8AV10P/pIvP+yTFX1N+UnlDUvJ 35d6L5a1OWGa+06ORJ5LZnaIl5nkHAusbHZx1UYqy7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq 7FXYq//Z - - - - - - proof:pdf - uuid:65E6390686CF11DBA6E2D887CEACB407 - xmp.did:5FCFF6CD6B2068118083DDCF5AC233CF - uuid:ce683a68-df29-fd49-91a3-fb4d92bfa24e - - xmp.iid:5ECFF6CD6B2068118083DDCF5AC233CF - xmp.did:5ECFF6CD6B2068118083DDCF5AC233CF - uuid:65E6390686CF11DBA6E2D887CEACB407 - proof:pdf - - - - - saved - xmp.iid:FA7F117407206811822AEAA5B991C736 - 2012-09-06T13:08:53-04:00 - Adobe Illustrator CS6 (Macintosh) - / - - - saved - xmp.iid:5FCFF6CD6B2068118083DDCF5AC233CF - 2012-12-10T10:41:19-05:00 - Adobe Illustrator CS6 (Macintosh) - / - - - - - - Web - - - 1 - False - False - - 60.000000 - 56.000000 - Points - - - - Cyan - Magenta - Yellow - Black - - - - - - Default Swatch Group - 0 - - - - White - RGB - PROCESS - 255 - 255 - 255 - - - Black - RGB - PROCESS - 0 - 0 - 0 - - - RGB Red - RGB - PROCESS - 255 - 0 - 0 - - - RGB Yellow - RGB - PROCESS - 255 - 255 - 0 - - - RGB Green - RGB - PROCESS - 0 - 255 - 0 - - - RGB Cyan - RGB - PROCESS - 0 - 255 - 255 - - - RGB Blue - RGB - PROCESS - 0 - 0 - 255 - - - RGB Magenta - RGB - PROCESS - 255 - 0 - 255 - - - R=193 G=39 B=45 - RGB - PROCESS - 193 - 39 - 45 - - - R=237 G=28 B=36 - RGB - PROCESS - 237 - 28 - 36 - - - R=241 G=90 B=36 - RGB - PROCESS - 241 - 90 - 36 - - - R=247 G=147 B=30 - RGB - PROCESS - 247 - 147 - 30 - - - R=251 G=176 B=59 - RGB - PROCESS - 251 - 176 - 59 - - - R=252 G=238 B=33 - RGB - PROCESS - 252 - 238 - 33 - - - R=217 G=224 B=33 - RGB - PROCESS - 217 - 224 - 33 - - - R=140 G=198 B=63 - RGB - PROCESS - 140 - 198 - 63 - - - R=57 G=181 B=74 - RGB - PROCESS - 57 - 181 - 74 - - - R=0 G=146 B=69 - RGB - PROCESS - 0 - 146 - 69 - - - R=0 G=104 B=55 - RGB - PROCESS - 0 - 104 - 55 - - - R=34 G=181 B=115 - RGB - PROCESS - 34 - 181 - 115 - - - R=0 G=169 B=157 - RGB - PROCESS - 0 - 169 - 157 - - - R=41 G=171 B=226 - RGB - PROCESS - 41 - 171 - 226 - - - R=0 G=113 B=188 - RGB - PROCESS - 0 - 113 - 188 - - - R=46 G=49 B=146 - RGB - PROCESS - 46 - 49 - 146 - - - R=27 G=20 B=100 - RGB - PROCESS - 27 - 20 - 100 - - - R=102 G=45 B=145 - RGB - PROCESS - 102 - 45 - 145 - - - R=147 G=39 B=143 - RGB - PROCESS - 147 - 39 - 143 - - - R=158 G=0 B=93 - RGB - PROCESS - 158 - 0 - 93 - - - R=212 G=20 B=90 - RGB - PROCESS - 212 - 20 - 90 - - - R=237 G=30 B=121 - RGB - PROCESS - 237 - 30 - 121 - - - R=199 G=178 B=153 - RGB - PROCESS - 199 - 178 - 153 - - - R=153 G=134 B=117 - RGB - PROCESS - 153 - 134 - 117 - - - R=115 G=99 B=87 - RGB - PROCESS - 115 - 99 - 87 - - - R=83 G=71 B=65 - RGB - PROCESS - 83 - 71 - 65 - - - R=198 G=156 B=109 - RGB - PROCESS - 198 - 156 - 109 - - - R=166 G=124 B=82 - RGB - PROCESS - 166 - 124 - 82 - - - R=140 G=98 B=57 - RGB - PROCESS - 140 - 98 - 57 - - - R=117 G=76 B=36 - RGB - PROCESS - 117 - 76 - 36 - - - R=96 G=56 B=19 - RGB - PROCESS - 96 - 56 - 19 - - - R=66 G=33 B=11 - RGB - PROCESS - 66 - 33 - 11 - - - - - - Grays - 1 - - - - R=0 G=0 B=0 - RGB - PROCESS - 0 - 0 - 0 - - - R=26 G=26 B=26 - RGB - PROCESS - 26 - 26 - 26 - - - R=51 G=51 B=51 - RGB - PROCESS - 51 - 51 - 51 - - - R=77 G=77 B=77 - RGB - PROCESS - 77 - 77 - 77 - - - R=102 G=102 B=102 - RGB - PROCESS - 102 - 102 - 102 - - - R=128 G=128 B=128 - RGB - PROCESS - 128 - 128 - 128 - - - R=153 G=153 B=153 - RGB - PROCESS - 153 - 153 - 153 - - - R=179 G=179 B=179 - RGB - PROCESS - 179 - 179 - 179 - - - R=204 G=204 B=204 - RGB - PROCESS - 204 - 204 - 204 - - - R=230 G=230 B=230 - RGB - PROCESS - 230 - 230 - 230 - - - R=242 G=242 B=242 - RGB - PROCESS - 242 - 242 - 242 - - - - - - Web Color Group - 1 - - - - R=63 G=169 B=245 - RGB - PROCESS - 63 - 169 - 245 - - - R=122 G=201 B=67 - RGB - PROCESS - 122 - 201 - 67 - - - R=255 G=147 B=30 - RGB - PROCESS - 255 - 147 - 30 - - - R=255 G=29 B=37 - RGB - PROCESS - 255 - 29 - 37 - - - R=255 G=123 B=172 - RGB - PROCESS - 255 - 123 - 172 - - - R=189 G=204 B=212 - RGB - PROCESS - 189 - 204 - 212 - - - - - - - - - Adobe PDF library 10.01 - - - - - - - - - - - - - - - - - - - - - - - - - endstream endobj 3 0 obj <> endobj 7 0 obj <>/Resources<>/Properties<>>>/Thumb 168 0 R/TrimBox[0.0 0.0 60.0 56.0]/Type/Page>> endobj 165 0 obj <>stream -HTTnU1 +7IĪB > -)H-/1v=ROqlόӇoOky+WA(~_セ-o2DլuUuѝwf.ބV퍖U KpEoZ,јQ!uĜhqmg[ Dwitj!GBk2Tg:]a*y6? 9H+f`UcP1} Fތ7[W^_ψ@-B&PIE5# 87wC7h3$8Ilr).FFxC=pX yb#17c4RO֤! 920mwJ}&?0J& `>stream -8;Ue`\B]'l3Wi]-*=SST5_&k8\Fg9!~> endstream endobj 169 0 obj [/Indexed/DeviceRGB 255 170 0 R] endobj 170 0 obj <>stream -8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 -b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` -E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn -6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( -l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> endstream endobj 163 0 obj <> endobj 171 0 obj [/View/Design] endobj 172 0 obj <>>> endobj 167 0 obj <> endobj 166 0 obj <> endobj 173 0 obj <> endobj 174 0 obj <>stream -%!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 16.0 %%AI8_CreatorVersion: 16.0.3 %%For: (Dave Gandy) () %%Title: (icon-flag.pdf) %%CreationDate: 1/2/13 12:01 AM %%Canvassize: 16383 %%BoundingBox: -56 -119 188 0 %%HiResBoundingBox: -56 -119 188 0 %%DocumentProcessColors: Cyan Magenta Yellow Black %AI5_FileFormat 12.0 %AI12_BuildNumber: 690 %AI3_ColorUsage: Color %AI7_ImageSettings: 0 %%RGBProcessColor: 0 0 0 ([Registration]) %AI3_Cropmarks: 0 -56 60 0 %AI3_TemplateBox: 7.5 -7.5 7.5 -7.5 %AI3_TileBox: -366 -334 426 278 %AI3_DocumentPreview: None %AI5_ArtSize: 14400 14400 %AI5_RulerUnits: 2 %AI9_ColorModel: 1 %AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 %AI5_TargetResolution: 800 %AI5_NumLayers: 1 %AI9_OpenToView: -58.6665 18.333 6 1261 742 18 0 0 134 133 1 1 0 0 1 0 1 1 0 1 %AI5_OpenViewLayers: 7 %%PageOrigin:-393 -307 %AI7_GridSettings: 4 4 4 4 1 0 0.8 0.8 0.8 0.9 0.9 0.9 %AI9_Flatten: 1 %AI12_CMSettings: 00.MS %%EndComments endstream endobj 175 0 obj <>stream -%%BoundingBox: -56 -119 188 0 %%HiResBoundingBox: -56 -119 188 0 %AI7_Thumbnail: 128 64 8 %%BeginData: 5936 Hex Bytes %0000330000660000990000CC0033000033330033660033990033CC0033FF %0066000066330066660066990066CC0066FF009900009933009966009999 %0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 %00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 %3333663333993333CC3333FF3366003366333366663366993366CC3366FF %3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 %33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 %6600666600996600CC6600FF6633006633336633666633996633CC6633FF %6666006666336666666666996666CC6666FF669900669933669966669999 %6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 %66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF %9933009933339933669933999933CC9933FF996600996633996666996699 %9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 %99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF %CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 %CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 %CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF %CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC %FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 %FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 %FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 %000011111111220000002200000022222222440000004400000044444444 %550000005500000055555555770000007700000077777777880000008800 %000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB %DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF %00FF0000FFFFFF0000FF00FFFFFF00FFFFFF %524C45FDA0FFA8FD41FF7D527DFD3AFF27F827FD1EFFA8F8277DFD1DFF7D %F8F8F827FD38FF52F8F8F852FD07FFA8FD15FFFD04F8A8FD09FFA8FD12FF %FD05F87DFD37FF52F8F8F852FD04FFA87DFD0427527DA8FD08FF7D277DFD %05FFFD04F8A8FD05FFA85252272727527DFD09FFA85227FFFFFFFD05F87D %FD04FFA87D52522727277DA8FD09FF7D2752FD1EFF7DF8F8F87DFFFF7DFD %0AF8277DFD04FF7D27F8F8F8FD05FF52F8F827FFFFFFA85227FD09F8527D %FD04FFA852F8F8F852FFFF52FD04F8A8FFFF7D27FD0AF87DA8FFFFFFA87D %27F8F8F8FF27527DFD1BFF52F852FF7D27FD0DF8275252FD05F827FD06FF %F8F87DFFFF52FD0EF827522727FD05F87DFFFFFF52F827A8FF7D27FD0EF8 %27522727FD09F8A8FD05FFA8A8A8FD12FF52F87D7DFD18F8FD05FFA8F8F8 %A8FF52FD18F852FFFFFF52F827FFA8FD1DF8A8FFFFA87D2727F827F8527D %FD06FFA85252FD06FF52F8527DFD17F827FD06FFF8F8A8FF27FD18F87DFF %FFFF7DF852FFA8FD19F827F8F827A8A827FD0AF87DA8A87D52F8F8F8A8FD %05FF52F87D7DFD17F827FD05FFA8F8F8A8FF27FD18F852FFFFFF52F827FF %7DFD19F8FFF8F8A87DFD14F87DFD05FF52F8527DFD17F827FD06FFF8F8A8 %FF27FD18F87DFFFFFF7DF852FFA8FD19F8FFF8F8A827FD14F8A8FD05FF52 %F85252FD18F8FD05FFA8F8F8A8FF27FD18F852FFFFFF52F827FF7DFD19F8 %FFF8F87D27FD14F87DFD05FF52F8527DFD17F827FD06FFF8F8A8FF27FD18 %F87DFFFFFF7DF852FFA8FD19F8A8F8F8A827FD14F8A8FD05FF52F87D52FD %18F8FD05FFA8F8F8A8FF27FD18F852FFFFFF52F827FF7DFD19F8FFF8F87D %52FD14F8A8FD05FF52F8527DFD17F827FD06FFF8F87DFF27FD18F87DFFFF %FF7DF852FFA8FD19F8A8F8F8A827FD14F8A8FD05FF52F87D52FD18F8FD05 %FFA8F8F8A8FF27FD18F852FFFFFF52F827FF7DFD19F8FFF8F87D52FD14F8 %A8FD05FF52F8527DFD17F827FD06FFF8F8A8FF27FD18F87DFFFFFF7DF852 %FFA8FD19F8A8F8F8A827FD14F8A8FD05FF52F87D7DFD18F8FD05FFA8F8F8 %A8FF27FD18F852FFFFFF52F827FF7DFD19F8FFF8F87D27FD14F87DFD05FF %52F8527DFD06F82752527D2727FD0BF8A8FD06FFF8F8A8FF27FD05F82752 %527D5227FD0DF8FD04FF7DF852FFA8FD06F82752527D2727FD0CF852A8F8 %F8A827FD14F8A8FD05FF52F87D52F8F8F8277DA8FD05FFA87DFD08F852A8 %FD06FFA8F8F8A8FF27F8F8F8527DFD06FFA85227FD07F8277DFD05FF52F8 %27FF7DFD04F87DA8FD05FFA8A827FD08F8527DFFFFF8F87D27FD05F85252 %5227FD0AF827FD06FF52F852FFF852A8FD0BFF7D522752527DA8FD09FFF8 %F8A8FF52F852FD0CFF7D2752275252A8FD07FF7DF852FFFF27277DFD0BFF %A87D2752277D7DFD04FFA8F8F8A827F8F8277DFD05FF7D52FD07F87DFD07 %FF52F852FD1EFFA8F8F8A8FFFFA8FD1BFF52F827FD1CFFF8F8A8A8277DFD %09FFA85252527DA8FD09FF52F852FD1FFFF8F87DFD1EFF7DF852FD1BFFA8 %F8F8A8FD1BFF52F852FD1EFFA8F8F8A8FD1EFF52F827FD1CFFF8F87DFD1B %FF52F852FD1FFFF8F87DFD1EFF7DF852FD1BFFA8F8F8A8FD1BFF52F852FD %1EFFA8F8F8A8FD1EFF52F827FD1CFFF8F8A8FD1BFF52F852FD1FFFF8F8A8 %FD1EFF7DF852FD1CFFA87DFD1DFF7DA8FD1FFFA87DFD1FFFA87DA8FDFCFF %FDFCFFFDC0FF52FD1EF827FFFFFFA87D52FD1EFFA8527DFD39FF52FD1EF8 %27FFFFFF52F8F827FD1CFFA8F8F8F87DFD38FF52FD1FF8FFFFFFFD04F87D %FD05FFA8A87D7D7DA8FD0AFFA87DFD04FF52F8F8F827FD05FFA8A87D7D7D %A8A8FD09FFA87DA8FD20FF52FD1EF827FFFFFF27F8F8F8FFFFFFA87D27FD %06F82752FD07FF52F8F8A8FFFFFF7DF8F8F852FFFFFFA82727FD05F82727 %A8FD06FF7D27F827FD20FF52FD1EF827FFFFFF7DF8F87DFFA827FD0CF852 %7DA87D52FD04F87DFD04FF52F827FFFF5227FD0BF8277DA87D7D27FD04F8 %FD20FF52FD1EF827FD04FFF8F8A8A8FD17F87DFD04FF7DF827FF27FD16F8 %27FD20FF52FD1FF8FFFFFFA8F8F8A827FD17F87DFD04FF7DF8527DFD18F8 %FD20FF52FD1EF827FD04FFF8F87D52FD17F8A8FD04FF52F852A8FD17F827 %FD20FF52FD1FF8FFFFFFA8F8F8A827FD17F87DFD04FF7DF8527DFD18F8FD %20FF52FD1EF827FD04FFF8F87D27FD17F87DFD04FF52F8527DFD17F827FD %20FF52FD1FF8FFFFFFA8F8F8A827FD17F87DFD04FF7DF8527DFD18F8FD20 %FF52FD1EF827FD04FFF8F87D27FD17F87DFD04FF52F852A8FD17F827FD20 %FF52FD1EF827FFFFFFA8F8F8A827FD17F87DFD04FF7DF8527DFD17F827FD %20FF52FD1EF827FD04FFF8F87D52FD17F87DFD04FF52F852A8FD17F827FD %20FF52FD1FF8FFFFFFA8F8F8A827FD17F87DFD04FF7DF8527DFD18F8FD20 %FF52FD1EF827FD04FFF8F87D52FD17F87DFD04FF52F852A8FD17F827FD20 %FF52FD1FF8FFFFFFA8F8F8A827FD08F827FD0EF87DFD04FF7DF8527DFD08 %F827FD0EF827FD20FF52FD1EF827FD04FFF8F87D27FD04F8277DA8FFFFFF %7D52FD09F8277DFD05FF52F8527DFD05F8527DFFFFFFA87D27FD09F827FD %21FF52FD1FF8FFFFFFA8F8F8A827F8F87DA8FD08FFA852FD05F8277DA8FD %06FF7DF8527DF8F8277DFD09FF7D27FD05F852A8FD22FF52FD1EF827FD04 %FFF8F8A8FF52FD0EFFA87DA8FD0AFF52F827FF7DA8FD0EFF7DA8A8FD25FF %52FD1EF827FFFFFFA8F8F8A8FD1DFF7DF852FD39FF52FD1EF827FD04FFF8 %F87DFD1DFF52F827FD39FF52FD1FF8FFFFFFA8F8F8A8FD1DFF7DF827FD39 %FF52FD1EF827FD04FFF8F87DFD1DFF52F827FD39FF52FD1FF8FFFFFFA8F8 %F8A8FD1DFF7DF827FD39FF52FD1EF827FD04FF2727A8FD1DFF7D2752FD39 %FF52FD1FF8FD60FF52FD1EF827FD60FF52FD1FF8FD60FF7D7D527D527D52 %7D527D527D527D527D527D527D527D527D527D527D527D527DFD5FFFA8FD %62FFFF %%EndData endstream endobj 176 0 obj <>stream -HTA1 AC.#Vq|\"!UnhCAM+;.&y/2Aoyg [FPP32w&@ȝNnա׎sB%h; i*`, endstream endobj 177 0 obj <>stream -HWkoܸ{%Q(( ð)Ea(Vw, 4d_KJGH"K⫿]gssO|zMSZv7G^Wvfض}wJ]'uQm7u~>Be[7h˺9٬3BDQp/OZoto̥CݪnTǩw,b8R/{{lRwM;fu?lO{y?u};ÞUծlaZ Rzs)5+ V?Z.KÄz-o 4^vܴ|h_GVow-m+=;esYCDxo|cC%G^^H?6N}טgEoM~}j?}_`7.ف~}# {) -7Mw5 yDZ's/;q%Q3 'pf5vqZ6Β30qhoC⛡]F$D:t5c]=r%'/0k٭NsՆ`Mԃ7f~Ά2Wg{tK^\xuzC} xƜIqx_x?7eYGԂ6ϋ>[]=x>I~"<,{n{PXʡOhO p^0QEjvm^ 7m˻68xjz}.&鶙Zc3=؟ Q觛?^ׇۛܶ&8?d~İ}n'v5w/&+W-#n䘋o]yy4_nۿowͬnK4mE#/& - OD TUM^5w;[!}%Zߘo"Օ_{pBoD 7 d[Jb~5b0 -p€- b t.jB>A0 /%5AU-nȁc fna@)`3ʀ|F3 .wͪ\: YGDkKm?uDsYqLrpf\[I(X'̙!i,d f9\4Fқq *^B9IE i1m/0&ͫ QLG< ])W@+D<"%(TTDeTA"HD*2D.JQ1,(F@.4bqWjĉLD%yR$$Ld*3d!KY^B4J!'i4O˴ϢLdq&42YdI!6)%U.rU -06ϣ\X@Yˎp MHHaTRhse} _,${LdsNE6(hndtǧt]'4*J*[8t\k-:ͯHP1WЫ+cB(i׆/0STr9%D6f[%ӱDf1$a>> d(CҢXJQ&11g69bQpF"=oQM #G{ ddOK>)gl1m -v9U@==̇H9!z؋-Nt"m8Fd }r<1{ R`W{u?2 -/!{_!?viǼL55Xf2(fj?OOqqsqyPGuV?,zkb!5qI]e{&/+J)qtȂM>XfTqv}4·'v?Go]tzgO{j?~})?ݟ.P~L=3V!(7 ]mz#N?Sq$#tN@y/^+`olF6|^eB+8B`-dg:ud4f}9}| d$i0i格 Wr$)h`AQȲ8$ -I2f!IC!桩䡁y(3I"粦 Wb#FH‘g8, idB$))W ZD% K&% L$4IlJ>08Itrti %[;9,iwqaZ]Ҕ2țͩob,uՑkd#y:<񘃩c1O=厓|Bsxe.fk1n+q? 0FB.E45PЗ#0Yu>aO/Kr^e_OQ3Bڒ}@HA#tfsi[-OP4K!vL(|dNGk+A!G(ZX'StK` -GD`a<; @*\qր[H>厞/7\e; -ZWrR1܅l12cLo٩jG5ZnW{c޷;ޑjs;fT>vY![?>#^KWpdZI-{(z\Ж[bw/ 5o4H![ <}9ytYރ)Vζ]Pi<}Pe`x_XYo2-tBtճ}޾mf:)}RGS˓w~hQɼ /?˧7}凿>h y"h'e]R{^XVPzqR(eMS7ܬe|:' x_/X^q uoh΢ E[vvz؅( "a'_}w'쇅SA  6(锿e{;COS<|vؓM*!T- -iFP,0 tY[*S?1 |N1&aq`;43BfÜ%S=9p AA=+wioqYAH1H!(~#:tL3dac IV2j - - -̃ Cs7-TV,$챤cZn Pffz!Pl +q5>i=)X `\,@ 30`vؼ-nԙl#sfrL02+3Ȅ&ΥdOH+zZgϑ'Zf5U&t0$cHʐ!IY+=r t`d4whسJ]GՔ! $ƐENadYz#5S$=q_$IZFf'd 5%*FaDrrd-a*PȖCf&!e~F z]]najY\iAѲ5Ύgw8 - Td /K8W9kמ徿F%<$1f=#{\#FΝɩmOFj.:^j(sqǠɁ{ gcmE[ժ_>>c -իvާp'CȻA9̵-Wm5 аHW_=z6zm{J/M_ھ6~irtDRpok~[[&6hJ;a K7$9%{$I[Ash4-AтF"zGja7 ,"سe|u _6ʕՏڸ?ƷħA+q\\fDZKr?.:2Lw }^/?Cay_dYMU"ì*v([~WCW6MPXEX=#6VV{&gǙ30uME95y"{ZR\O) 9x?OlUwzȳcZDdWuռɗQRe. R  -'{dԽCͳon\쒆Rs)`[jTs7#WTjIEܡ{<7D4W XA L,m)φy wdR5lNLO* -9O8;XFQK+zf&qvb7aъe /^_*n?_Z18o⢶jeHIC ^e0רQZb&i-j˪uVgzƁ;:xԭo=s;KCrҤǷ,6d<5ĥ[D~ߘv{ث^sʫ5XaX1qhx ye8Jh bTzJ&5I=I)idWuhhiշUM\K%~4 ~ 5^ΗK[C"sRXÿ2.?h2NZ6܉ O\ďf;[{O_ //|~st?EםG,Yfkд1g9#!gK3ТIH%c%eXndY}"Ȕ@- #8[++mET"XHȈOXVQbYztT`,"af䥢o{/ ZHEnF^A uзnx-nn%L1~(xN'Q")AJ$K6\IJU?, UCTErQ*RuJBELLs-YTEuBaZ{]w. B"ظp8t}Kе߀&| pUw< h FK P'&XKdhY p9;,6,ȕը-ƈk( OyqG˚mu<$XlUcMKZh ZÄE` A*RҤ$P! U!*^V*j S'mڦ} 97c * f[@64nPdqg?iFx DΎ82Zf 0У3 l?HT' -P=Nwi]GC2=:A@ޠGH ]M8 7Z1^ÓdP&zjwxP:;Ht+3;A1 JbaMA|Qdеe7OxTQ#-HkVAX)7~ -$`Uwz@$͂I0T6UZa ķi ~î c.a0]H btmt?̀ -  -CA>CA_~~BAJ -^}/2Ʌlۓo&'5WRQN99mN)5Gy'4'OhX}/~?48pv߱>a蚓3޵;SICeُt߾~z^>y~9󧿟O%,/chڄbZ00| ұT1:L/s0S> n2hh2#Vs0,>hlZz` s|wjcu.ΗZЭnoهa? $`ov_ SYd)re̻ܰ2dU͢=&'9XCk;#{!At 2kq2Ss3?~۞wT}m -ȟgXԪP5hv2&e;g3,B{xHˮ]w}+uBxkb?n(CuJh -C(B,F; RiݔMVյEwGN6J}5>z78pm?}?>f*[6P9QvSZZGq8OY?e7r -OPd#UF , c^dNΩ"ؒZ"UsKHwdDaKBZb5H` -siKr"fT༩Hp$,hd:"ބM:/jܓW8 pdE~,1IcTȑ%W⥬8UA4I#T**iZ|+@(+3%Q-PHeUʼnE/I!Jg =Lmsg?1)̋/V/W~'vاؼ3+-H(EmT -=M?S\xp8n"Zq'l -Ngn鴰w(ڔSsfr/05%&):郤H}iYR(STc̡ܺ7lf6$]:=A;Szt[XC 9C>8dd_.UCQh?)%L^C\"5 EjOD!&'(vQr!* -q[a5r\1J6nM<э/ψw'O09=BnJpm 9  'ʼ_?Y+)g͌3ʚ2L衾ʫUvRuڳB-dbj7V,wB c}u+dB +d o(HIeJ& -m6DH$>h'ehPDZNVή Mj5_tڤ֍3Cw ;t78 -NAi+W*g͗iw־{ftn2j{D/)Zgh-X9^f9gVgv$E% -wHl hJW,2,3y\WfGLl.{v4I|$!mfu|牿W'6NۨYC|oQ壍{|Gs{Ļ} 7Rc|49E"j櫐ѣ_ hpam09ǖs9R[Tdh1ExD-Z"\T!FJX4frM'jiuOH4FB0nc$cDb? .5gTmcER%qeeJPIʇ ;<@O&܆0s9s$"s4ݔ,(1Q]E$eb}qFY=*Q:wQǽAeBqT A T//3< # -> !@XSz8rx1{:fWxkcmlCX? -_&t>nI%?x>~O?|obǟ>_}~c)'sWZԫXYZc׭+2WgPl0c".zL, !_Fa6`tl /6W  ;1\-5Wb4vMQdA3ǩCc{`xѴ",50VCJ0cn -9Y1rK$:Qa?0jn PQfU/fӞS|Wrx@9_GK$@0}ieX),k]{5BTw>i=qSUo9ڗ_Z.94!aX*L_-wIer^\-kdM-UBGZbБk>WZFxM.PĺDHy<ڐ"u:KKQf@Fb\ݫDfiϏ(ؠC,RaEEI*0*JX#Nb./%H"8rH$IJH'SI ! -D(e:wWcYwܐ%XY u#vaL,ԏah$s$r9o.GΡuTsHIAE!iaإ>ĸT  ŧsaKjlG؞ 1zH T14&pM^mLmBm줭ORҼ!mY;NMZ?˓yY"edyAYeea0u&PNBaHp/R3[:Rdzt2zKg.M^ŠZ9=L׻'fx{rwRYMFFҹY2BJfgc|#b)s}i{~b\{>XN6DoZcu&mUA8 1d s@F0 #& "A˾?4YcXEA# IC* -,`,RFU@|k #1 H<\Mg=A*x I-H)EliUxU~:=&+ӢNSX gÆCM; ObTK] yХ6M=CXaU<@#+ =JzDO' -5+ -E GHgR%\A+ -Y [ךaY} 9l7Gag#UX `pg L``0(L0LdJ&OhdBjbFbBP,XC3S5c cAdJeKLeOV8^=>>7٭9N5 Ȓ -ĂpX-cr*YkiQ6Ӑa.A,d15t /=ӑ0ɿN^Ѩ:/`O;{$kZ\=*vhi<*[GUdo$kX3c (ڞ#ڳmF6m[6Ru0{4ptp`P?~ D@8(9D{"j"CM""2Xpہ;wܼ!~$W" x'Yo_(.>+ûo_4߾ol/ڏ_>)u)Xs!8QCK!t?_揺n_7g{~MkLS/|Pzt+Sc}>_\޽n`HnosM\]].m]WO?n?Gq4;}/z:iJZ:Oi Wߴwn2B56wX~)Y*tN'jKqB -]6)o+:׳j LF&_g#EU)uCBx9bǝq1)%ɞ\.^\SuO)`M8u_w0W͹0mpͳ3,¼pm19ŵ=kP_%Q (L3TDIVlMqߣϸ 3 I/c[]P9:kd1N0e-#ݛB]646 J{WޚQO9屋y?ɋ `QZB%m`%'0wmQw$u`Zj n -V浦Ttym\n-1W/6pezdJ z8A&2\Yugitt8mGwVlִyg^Q^^]_=ԅ}sI߾|}qS.,_rSIROAI>Q=7#ՄT&7 -L&.v}F W]I -)dɱryLT MZ12,Ōh-ڗTfӠVTfC!V# -=Kφ I&s>8JKkƻvr$hVʋ C2&:DR,'蠚W --Uic+5Ό4*a:/]34mx6oVE)+ĉtt!9*vP;zNHY9UJRNq_veE~vK^:@B$YH}-g]sUC -683];>YX@B'U<- jm![Pcu>у80`ms 68&&bN7b&nt.6+ $E̢ovt}3he `דwk g ',s1k0ﶗzT^+0Q{՚L 4fDr9+ߨTjہQ(cj2W,( -ƴ:> 3?δGSu_ox+{oUOd] h( -rīנNfHZ1F=PdZ7Q/ ;`!/ѳ51.gR -%, ӜjU.x 5:*!hO$PiQq`"HptV0lo5dg1t5}鱢_=<lIt\# }؆jtY]= %6YsOwAWK땓Bx*\FIG6ҺفۻYn#)ܽNڻu=jzx5z';~CX`*WM9yDGx9ߧerRv G*߱`P`,=Q -uxg[;tT\%#vku U[<$c8ڊ9LZ -{XEv pqCٙ'N0Y! ǦM4rܣӡ ljxK@0x4.BjC5 m9H!@tWQԾXoq>th]s[&a-Oiook9p$ 15bӡ)Ciru\n906e}, 7%Jn4oϊJc+k-i.AjVCKX2)u G Dbe'9B2J]sabXȴڴ_~ꐙQRL|AaQz6ڳiH̀JB8z'|]kG枫f2Wdds#u˸}=;D/ 8(?;_~։j氘3G/PI/#FQ(ƔHڌӨAr'.{[QUZK8[-W`lNvorD_RkW%[]";4% -=aD*=@\]ʰPM% -%SB,_Bs~b%Y2'y}+-Gr&]ޏr1jr#~e+{'|ӏsD)\yv.Z=۷k=po>S,`eu$&.L UNeGF?BNxƉ}#s3JU۵D˞+2fq{{WIv%! Qyo[DgٯWI€epegp&M6<ź߄Ɂ>F?4sX4t+<ӦK.o0Mre c3FIb -T^r:dA5x8{'\e\ual'0}(x+}DM˱N@(pwphz;5c}L_0Vi pXD4VQs0Ĺ{8N'eȸ}amm.Yc+*w!?1pO'Jb쁑ݮ45Q ҝr&V12@{P&+WEbO_YQD\:[}W\/*Ppn*U}*˥-gji G35auŦ;Bm);6COw 2g\qQ2tZM)ՑsDC7aʦYwlyR\<,~-#InQ|Иd>vXw"xrQH#4|7M8AK|%j!iD;XGlo/ϜR'JlꉐH:އ#A!]dK@7?T!(F˙0񷂾6v@yØZmsU$]:$؛ 3"V+=<1ۨ3 -. -="W!_0X9U֏\=seDEͅ{ό<_>Y<# -EWQf,gc-B4$~A7*UErK_YQͅwۉ"ϕ e_WCS>m7N_ hRoMYKög8d2Ð2+{ʊJ 3"q8[}W\Y{H0."WxyA endstream endobj 178 0 obj <>stream -HW= <'|p_fрlۻ(u❙GG"|6^ӓZ/4 ?TSk[>kT3KdJ\ێm,O:/= ~;~'4J{QȰ>Cj o4S&'7ORdL|@eU|8qAp|hO=,|Z-@. |ԞAh:L?DΫH ɯQ^GK+v۵#PseA_?ELl#)nC_ ٽ3j+=uyUKE͓ZpdQ#އr2ֵmO:C,io2?];rV<ׯLz< 2!%ܕhKoBa -,7"/4ݐHƨSH4q˕GZKUˢ !)?T1_Ʌp-H ȞHf0J(//㭊>)!.9Pkh -d[ܤ(\.&T͍YH[F[EYiBJUJxFz*5щt/YLK9cbm&ox}&KI%Hgv P2GG6pDft  SFK\* )7k| ) -u3R('er6߶WpL!3AdGqCAE ~؄αN -)ԇo @z{Į YXLtpx%Vk; /lA-ajNFT:8'|Nh^g/`*s<}XȢI*t`u>|OٯmFpku DIϯhyrid=fuC'v!FފY`QYX܈܎p>t/AYxTlL -!""}3K. Qf%SGGW _l=θT sSWVɬ==cE$I59!TXG ۣ JtҕVdB÷ oqFƾIĶP::Dh!QHE4&@:AxD/  Qjǫ-,H9,q2O$ugJY<ֆX'Qp,𜽳M8z7`iu9yb#hk!FDV_\g,+bǐ2jXNR[8! ^{$F2,L3c -*be=A1#F8 exy m^F~TxHm:<83 ^ş˯pVඐ۴5^3 S%j +^M?ؓ2uLmM{_&Wv܀xJ-2t mc@ P/X"K0G/$G%Kiت6'xҹ{+ϯ(vA\T -&tx䐳uesBە)uSJ dvɅ[׷8oGM^+ϯz1pñr"s_˼۽1oTE/ شo^Pz ҨxEtPl -6cbոtK"@M?(*T~Z-y o[u}35WFlwZny]套P -(Ki0I鏕Q2r&Y&d`iWg1KͅZ=s~4zP -+ؼC6״VɍgtrhIue}ơ:I q۷#? B + =+C± yjߑCISn],:X,G8ˢ_[giy!&†R1~~E1EpdET4Ab4s҃D-5[ptl~, 6 -x.ؖ"r=!I - -|-\lʺXC.6oė5J e˘ ˤ n+5ΩanL&,35vNؐo'e͏mAJ -=amv,| -(?kYn4v G95&JR&H Xc6E@c EDt5V -'Rk5& Xd|D#.!E#ߊ6 @"yU,nOnǎ\ރ3.Ӗsui|NX"=|_pcqX9YKW{ʸL.g!Mo!X=X([>oAZfutcZ+zd\pTH0Iq( -yY,5;Y&Fqg-(]@ٰY/:+ -Rʙ~ -HUe;2Q}g}ORR~g^{趟\ >c˯x/:ӛoo;ݟno^|p=7?>8<^WV^~[c1ض0DUuvR0ȄA,q}d Bhj3j+⦞a&P }wNA9}HDH 6g4O] 3fNdՐ“P ȮklTk@t;YvwijVfzȜ쾮ǜE:c[**BHOLW3~LkJV];u+1gk{0ܒ5 i`f%K6ҭEB2o6-USR4[pi<- q>4ğ;\-8Ұ"j-'6[º|ͮm Fd{r}bm3NԦmY5=mƼbDt%etWTH|0кwX=n(B_|E(L2["ַPvb"0pYRS_4`rpRP -ibayAIֆad4io+]F)F)Sڰ04h'X'q0XiZw+eFt1&ȱmi8zֺ5 -!7KG/LfyF-h%Rh:պ2.Lz+ޮmȫu/NF Ͳ - /[36o?v|̮m`.l mn4ep.B,Mm"x 쓻j fFC,Cݿ!Z/R6`5V TQ)?ThaS;v-#f85j V[6СX}zZ];9 yYznm` %$4={g٬X2!&cwEh#M۪L$@9c:E'U.90_k4 b \%NԦs߶etSↆ=Txl%5kJlQ @{}u.lOsYzmN Y79N4Ffr߰&= 1e7dNP(S̠jӷw@;]h2Yz=e*"xZVxqw|~΅Kh_ߝ -o?__#ǟޫ< qu_;9yy,D,!>=^╫>^}ü6>yllޣ>]>܋x)b|rz">ۯOX}Z'c+>{=wչ E߳75_wwx>n>5fO-?wxrnj=?#Owo9սED`2YWY4Mւz="jSB -{E/+?Kʶ@r2 4FTC'H̐m'y:4u,RZ#:ACZ@P\;evi`oNe 0;4&W½8=X&eiSF5d1;NX7a8A-;Dm-´Mŏ1dH*rͤsl]]rI}Iȱ/ʼu`TmsaF2e#Ij2Z1"lU(JS_7b&UhI:/xB))&a,ߐ4Z7mOeD47E >ϛ0%0ԇ0Ps -]1ȼ'j+ܑ-rd鞹C1_ҒBhU,&^۞<Ă@ T+6Kǐ^3M4ŤgBB13N2nƺTFćtL,R и͍/VQ=EGh^K(ЉP%\[1J TU&[iՈ};xmF\ Q;mN2IÌ]pl -C"3X0O `F6$ j[ Q Mv0rg vi؅GG~xy'&fNYAyC6R8h -'VTW@>ULATKo/.EWM`.VTWYߴC ̛J>p$@itZ)DdOa@N.QAi|ʎSg¿8i, -R ]u{<4 =U (D|~(ʹ\:Jup#sܷӻ 2DNrX>'oTE5[+frlW6E|ul% ; SnP9%\dW΃H*n]{ 1}S`ehD7щ*{٤/#Oj0+{o7p i2 XtH* -KHɪฉr -11@ (#(Q_aΙߴSzGR.j/Q;1>M|URrUXivx&*{&x֢sf`6rh|&*۪0kLmlE(qH* ->3"HިM ӴCll}ߨ,&)vҧ6i9Q%Jg93N\G(U8ehI|y]V"4{6ڈ?;څfӂ|jzb8:ů]u½L ȔvV7O}|tb,vq'd6À#(ɋGM 4y~6|𘴎lMlv)")E2rwö1=n7Xn -ixZe\gL+W 鿒+:㎰gc(K jyzkYzvuވ3^Tu{ -"!9r?L̬=CN͍` ~',qlwR?DAx׀_>AOA| .kych,/ \SnNR̗W' BO)ύt1dH.yF_O8qL+4EY 6h" f[- PJh@,r/:j!Nu@&ȩdk(J*fdy<_n0VPqˀ󒀪h:"(3!BzV6%N1Ocu_wWxӼ^T~EUYe24}MSϿh[|lj>JL|DvYD'@[CByST36Hgbhݍ~kVro%x( -E>ը2<דtE!wFuzL 6[8v@vO($|#CŅ>ަI55?v&Po 4kf @G)D; ԖWNQ벁M+h-o= ԋ>ev{ͦo?m&9c -yWaAZCUJ+nxLkLLԥEYxXuxzz{B)n}Ui\/id.y2լZupR?o~HDP>nQ!g.5F%gɴs9j=<ddUH}惍.(^VZ 0PU.8jP?&+r-k4_ -5BNk}9-.f@N԰1 {Cu[+ 4aprEmgJ٣Fui| A(ʿ;jӞuJ#@\a(x`z^Qk# :vM,9ŻDyB) ܾKlÃJx#yqY.r'fjPc ok imvN5vhVow527(F0Z_X~5KV]\R: -E6*u|f5a 1- ?y>|Zir^Ud{)8{0ꒆ`wc>UWl(n;5}мt#T&}IphgQ-~#U>8ka4OPKCu-zzY~6 nx %X';c" - ?,ŞQT!gIf7i[p@/^|8}zj( -RS5%~Fmz1nUXҖ+Ìf. 1<vQ۾3MӆwxW>JІc# )ß[ݠ7n(f3[ i׉)TSh'R`)~LiOVs{#UMl> [EUw#Er}nktגC5v'wDGky:nO@jhr;MT8]2f>'y *L%\{!rV20˺ X{yy7^g؍'hU7UkCֶ&\_WdzfZ=ס,u~-B,<* vFYS LsML@ 3ty4} j+lŝv闆X۳vJ-p%ImUGŬt,R\兠!.7 [jQ62׵Er7>Z=mTuɨ.[,CBqf{1,,&"kNYh+i箩29gF5 '6">ӊhͣtUb\#@L =Ldax"\ @Vb -!-<KgqK@x覇^qMƦ)aU@dL[.b9tl^$CJkeG&=~7yAYtIG< "^Qǔ=BTĨbǍ&Zj)G/Z)%< -dI8 qݥڊ6#l{ޝ!4z腝u[áԮݮʲ.,sX5njC㠲MĤuTLzE|x"_m+֞fRC^ -4O-y@{ELb -GuޙKea| zmo=-'7TkWݵ1]]\֒ 孛R@S,OR1 -$߼՘6˕UŔ >JcnŐ%ڑU9>F" AAF(ᑋ wEϵ(';Fe=MS w':a[׽LmMxF0ǛCl`l9#Pp[Mi2USu&qt 䔕Y7p iJ T!jZY/^;* -3 z? BBxve#E - ]̉Z{`k⍪™T^j/|TA'Ōϲ]]ayBĽYٍ*x倜nȖܥjD 8P:~J}p=iNlW؏_#f"X]ܪ@ޖFUœ+8z9ՙg 9Nygx^@ض|8-* s5Kg6e\!5yN U: uo|BE#2G1:ul8i)xS𻮱k8~"\D̐pQukFbG3*s7"TmYeELs&'l q;vkk}!]G -Զ~uh]UDM#^QWLq;`&nq+DsI!ab (P51Qc( -OQ -aPcل͸.@hto ļ gvt9$s04S/b6V{=:U8 -:6 wS%KxOmӤ_E}5%+I:i -C, -IG-s,<5)ٴfL3TR^ Xָ8[ʦ'gGbuİLh;ڻld^l&ۓ>, 0{MI~`*ؐ%7pUԏӯlT=.K)z~/0$>|̠#ZS -` 0^M:'ecgh!O@)=\F܆~[]-J!Ll@*tPo۬ ާx ֚cT+X?$0{:ds-$cҲ&A?c&N_n1iF.b#$X~>{P.:_x7_x}/?|}w>o߿M^|ˇ??կo>~7oIQnZZ1G1-%]Y)k<޾ӬɁnuđ_Mu3&49Ǣ;ƻ'_q1b aAD2t)QU -Ƶ(]TQ,\h*L[`t1KexɸֱsԜZowi%-Y k0lmBj"V/Q6D!Uz ,mr-WO/,HnOشNk, -K%Dx#@>m 5Q ^ ).+V?2_; n58uVd5{7P!|pMn -LxZp1qKge0fZ55Ո?։R%0_i*,R* -cE-Q$tόyj9j_{\sb(J\zQϢ×*8KXGmTQd^{Ꭻ;źPPs9tUcRj9ŐRp]&I+Jm@f7:24с8ii߮cCQoeS}K\&7nW9$̑B7\Mϩrˉi\ڷPG9 TRQ=zb-նN&?r(e'L[6-roM̓: 0}5s6%7dhv[WY<# ڹOGp~uYߓjJgQ?:JbKIrӱhQ:{,SewG~cn5';mjt2O#'G;!UPkߙ(&|wL"w4 -{ |W4p]%749Kha[gF0O53|*z_>j|ARKyFMvz7lJ_VǪnԫ!G}"#{MO&tj lG5 Ȼ\#f?9F!do軗2>,ѻd<$}QN̎`Df}R{&x!I@s0(ލC+Q֛EAPǻcɒ߱{u,+]R)jlBO-–CYQ6*chw=]m=W =՟~hװ0nf$`@7cQ(i3 h|2$%x Yŏ;Kz Vy -Y!378o!h3Yc 9ʆfZijM|c ^}}ѧ?a!2 m+(?Q$ ]gG?/[1v*Hğ. L5)i W ~;@zJL{R~,F5}=cRМ5 C5@?CUяrh oc`]GQֻQ 3|mjDmu8L+-_5<<7d4Heg2wg 5Dgt>!}w˭jJ3nN!V3QKrרHlTE*Q>@\uL4iAYk -eCˊz;S@/m΢Ɵ ss%r@QUUi[t(>$;$^+G]y4%dX׻¡!,< -A|A] =A )oM565XnOrw< -mά9;dr{re{b,nD쉿 R -P}j(g S"lN#7ㄿ,W^?Jf3y1,}=WZ]xΕ0I7}/Rpŧq*p."Ա/@NPsKX~o=9d-Ҹk樠g~U&VcbɯT6$#. Ȓ{trxuY OuҠrn>EEG\ N 'ڠACk$Ԁ6'Z=C&uypt/<{u$">DbƘXy$f !q"#ҕ(Yn+'B61 ̖ŷl*Ql:=IG}fibY;%_GnƢՓ0<@(FԈbiYk$u{,uu~of˛LU s'mW -5p1g|qь֟8[^ #LG%2zڑNn^}f'C+ZyJQˊ",܉Y7GMFcP `O=>g-rm[flBcx[8E0WkoX96=s+!݄Yj1y7Eh&‘RG" ra/Hwf^+19#hzP -t &12qvHmN\Y%3]HWmyu gqR=}6>+R) "kF^X%Ҧq-y69yN/L3JKw3 Wŗ:#)ʓ^StZc`â -tQIBct&G))Dq}A*mZ"lbꠛGJSF)9 91Uے6a yۤmof+/Ue\2h'Kb*Ɣ9=.CLPr*Myit7~3t$ѶiTejsILaЃRy *6aYr3w7l7^)5V!ߑ9h - ]*0!9`KC`cx\: TqVBSJ t Sh+dJ1 oEo>O]SEʨkk)HLX? ̯?2KO~(zӋjmJUUi4E% @N[iJbz^$΅]ч^"!FCY -AtPVlxD ]2c<٠̪MYOd{V,8VGB$[JH a!5nxF`T*^%]*ۀAԞ&EJP(Wt Vd`vBp;x5ڃJ45z͐D0K]Zme"q@]{YDǎC면5#jUR^/SwE^,v}4`1iPvl[_vĘ4Ռ7lSH`y:kMqGr[aj=T'E{~v-)i kjtHLNTќܚ8rc1TXbt,${ dX=B2ڔ -SLq߫IVXy.*\{@aa<J<; o5՚6'ywsr^1>jl.Zښ~:L;$b\2ȭgDJw.KjE|B8I> qb9yoxg)TkBxJǎٍ."d5OfU>z]xQMi/Kx -?s$~ե#XD_NvvvWK0buJJDx|zjDMKs.Ę-ا9tT F|$+yW/3_ 磅 %$4iѱMvk:H{OVQҩ+meCN~2C&tӥ7E>lf-"o \"ЦZz[vȀm ?׽iïNcF̸PTlPMl[r2LUq]L^;t1Ն>@/_?|o~ -}7bSS߿~/뻟~ӧo_?96OV3]$h6yŴt0/*K "+z1mxBꆠRᰡtpp"c'g]>k:/ R*amHVYW=Dfg"M5<jΘ3X#S€(9)$c3K;_xlWU vֆ&* aw&2774N{nof4VGiAVܓTNn":>MǺ fjmZ6zT1Q:vM&SxS#>Zp[]doc -$wdnZ2@qLD0hP9BK3KY;QtOOh#V8~BFsT'+LF؈iMǒe1@J+-cw4/ed;[{rə}?S+R"$O#{dT]-PXS*w.E-kj]Ŗj} %1&g<>b>ilT'GV"Y@|p\-To0ui~4E#cQa!s]~Hb(ڒKMpEo5.br6P j`QV?WKTgS%7G/ -ԢӨ/qT~Mbz`~ޝ5#s^1na!AUoCύٝ >1y<$xwK4iɱY]۷fKCmWOm]6utEJtP\}T S;Gw@XR+n+Vyg_X^N1WYO>U-?_F'<:V3܂VQkG]3#,W)7nZe1S68mZ t8/-te0*| - ].PATV4ǘ,p䙩DYWx)hCAw|.kƺ0ix_WOkNAGE6LPe'mJh,RN+v5#~k+F]ssw;6hftG3}B%1b?_LGS¯?*$d(KHpy$yd29m` {.ipii.ϲ#s2|]emh(Yq9?2,=b=V"^JnyughfYXeB n2\.:`{ZXF$MnO4Fh%">NA7ֆDd僡qi -$:7b람xsg|k,sM;7t\}O?D4)8Q+74 P쩻+(n5/Ѭ8T`>wA 抜TQ=1GQ֨Zgal ?f5LxV>ۮ=݂ҼVisRrruHC cBz˼u3#_"$g\f %86g=klYAKIݶIO,0 XS$-7׸6JS}vϗX>=4cu_%Xr<#OJyd6)PcA<`Rlՙw pze{_p xe)]:%zharAu۔]Z/m{R@s%xPBѸ&X~™ ʝ<=i)AO-lןږ~qxp}Ӂ[/<ˍOr[ !.55[`v"<ێ7^gud (3#}&$;B[/o49!{T< E<qƌ_no;E忣E-;ͅK3"l)̉{٫g&b;$^ǵc@ ܰ*eG& [ԫ,R|o@Ӟ"nm.0"u}܊ f׋~|d픁fB|$;V>k^B-W,Öi.#.QDhqd}qJ -r$b ;GSKbb⍊ȝ15~/\!AiBKC@b.:]4"!LޡzLL.DόIU1'y[iWB\~,sCf# &T3ZuާU}rvTz-w Q$2S&fm|\ǨIoA UjvW}zmW2qCC7:"K@zGɘXOňm璐e8~_M{&2&!j߯.w,_˥׮ث{ "3J b+؃{^{_',dSg*YJ'.K18>/Y}?7__}xohBw߿߼Ǜ?~?Ӈ_קO\Urn -u&>A\b L%-:~dS)08haTlWqNQ&&;&hc[g * -erz*5i?ˍ}Naf>ФS$PEɜ)#UB!;F bݨc7x D6'zOslу bodrf*ts6urf^'G={H+jm$ła5|U5")uKfbTn~B{VaD V ͵N))iQ}g.*sulu"~-^ΊJBG8͐RP/RfӬAuh㬌@2uuzQD`(I$:}-ւ%iJLaY\wޘd*zcѫr_僔=Q]Nu}1Cƨf8:Խܡ8ْ _+zfo5\rWfS">!Y\Ib9L"R(V5^ώ )-a͝^׹PhZmyu7'Ŧ"D|˺gRMv.XΆUIJEiG;mj֬{KWem#n{B2s ̼t=uȺԘə<[1Isqq!5m>?"n2=Ooʙ1<_*{S2hD3*@?i4zwسq̮Y ӕ}ޱ.}kfWuvgK}$xvzK93Zi{;WQ>OV$m N%1v9ۧyq8tlj{d0X_^Ĝ=hK8ٕyq\g)Uנ&j? }⾤dɞ3*ЊxkÓHJжsU"Ec8+/U j+R -lS.LHl^d 7BJ. -\^GX -s2E#d]yj5u~ERRP\8=soPW}Q)ָ@uZ%t(*fb -Φ"*rf=U*b[ի5Yѐ?:"|*G1?)WKWgm+Hdԝjko-3y5n7(͑Գ%תInDKYpxא@tT"D v1QSDp Hh:7?N*"3(RE;eSo-=B#lˣf){V.3?`ޒaK%7SA|yCɭ*~2EP^yĪƍkdV3=ɕˇRH(yBСVF3\RZ~"h:z" L)ܮ8sk͝d\i iNdf .Dr̓z`gTH`"wn5.M$ʢ8 嶹AD2|P:T"Uy?fSN2zaP\D%!N - 5 j 5@do<al֫~6HJ%O'K~)l9%Du~_(g3Ao<;U0/~8#1,-V`^.ŝïH\gH=nMK[9mnkͼi+n,?*gEVߗUG-ʈwWrjw?I[&xA^Ey=cD3sdud*k_-#+tTt#͓gPSO - (e0]FY Q/ -'AoJ$_Mes^AƸKv$1j[ MFzD[LO#0xj"ad]8ll\K*{q>y+u]= W=5_uARsJ+ ߝK.1iA9ѰEN,n]g4EKLmΣA<6U+3^d?ޛp$H1Ю^xf[Hj6]R+Y`9v TGJ_KmEfzֹďٴ&gPs~uC"/@ӪkOEy geq]*Z4jjDgSXJnzn\8 1A¢g sĔ}Gk)lrZ+ǩoiEwO)[qRj<7=ʮ] vb!jbTg鋼{Ph, ':ok[|ȰN io%y0[k鸥Tw1<ƺs FFdb,@ƗFVErE=5ގ.xWJB75j =C\?[J%BDͫ `<~e/Rhu&Y@w2Bqn<7|&,Շn+Y@5ϔUR(&mL/Nw:S"u,t,Q1ϝKG_ ֻ;\^n '  $e!{%& Ukni6XE؜hrd>CO+!JJUxĪa_:W@d2>xzt"qK1jVY{7ʽk;e(oH-dW^ۼq3ٲXJ -f+K,ui%!+ ( endstream endobj 179 0 obj <>stream -HdWe5|y sIqfVء'zHfOU9|߀vNry>,3{1/Ogh{ba~{Ow/D7v˯l9pBʂw<*@͎]vB3a%mn-{cG$ZL'2 Cx1|+q8qɉCoD5y^vgRTouz\72Ek t^N|E*oْB|nCv%H: ojyn"J@gY( -j ٝ!l>f!DZ}E[BةBdw]cxGT}dY;U MoD7n/`q )>'VZYruuJOfqg@y^5;KI> -SwYe]CvMA!d^48ַGSU%񁶑A.DL&j";pDҁTr! o6:ȝy a (dMZ֣";z4MfD7u,`O^7ēu -fl.<+45uA'Pܯ(Z*XH8*vV#5Vgoi] >s/SD7&x%8Ͳ 5-_|9K? b0gg DXLsDQ`ޘKU`^@ h2\#*pDA0! >nO -bU`QGhj%`2`_Bzǟ Lh$D4D} -`hAb֏腿{Y>~WB1 uDk:(ϨztfPgQO@A?2Jl@f+`ĻK؍<T4K ) [FiQ3T@:BJŒPq$vT>^5gRtB$j5Q4[{ -ȋ)uI@="zw UbW29Q])J󮜃f$!"Dd舰. ]XvD{^3vޫmx-T%-mWX0UDI4ud@A!ՌR3{Y(HWಋ|]v7Ï-d#lDϸr~X%VO!I2iC$79r afvԿ֖%y"j,"=iE{Re sPPӨܵ* -fڂ}L%Ԙ8)=c:Dlą/1## >B7L(.n5 鳊h?bx0a{Pa6JcQ. i$ -f:(]jwĐܴѾZk -}@]BYzL09)ľ 19YZ %1ٶ>Scs&m$)Q'Rʋ3$~YP" KCYpi̝' -J(5ȘinS:Hv﵃d̠EsY#Zkc~Q~~(ތ+ɡ-_4SuOa-)7.M6C8%} }A|_B׫g7!]6huͥV|=pXfEj1"2$QBJXb3BN;gGD1r6^#O=0BgvWbCңI./E Nޜ=(Ty݈#6϶: ~Tzz(ۈ%%r@-&7!0R@#_C\;Uk7h׋3Ŀ E+;Yag' 'lV0A7Cn鼧rsWf|vK2ǭ-ݗh~ҫif9gj qKat-fNζn+,@$IJCuYαƭ>h$ºrߎdBcGǨ\& |3耺SEHw-AFJieA*h>DNcw*O,|)27}#p)=Lki嵕bJ,D ԹUlxۋt q:2OW4zԉGhTlkTnw.v@3-ר -dwVW>An!]?De#HFXG^퇶Vޭ%?k`6 -tzZת|m(gu&gP7x)}~εATc;P(VDK@GI}E`os链WeypDP%@- ,ʝP0dxz3y73A?ƥИ!HøBEgOVVz9gh%vʴzAqjh&U ~)@@$n7wRȻQ q<{~L\~nLկTuri}c>Q9cfLN{uP\9wVإiH:~3;,Z>Yz=] -1s~ՠ 1!o.ֵB2QN%.YֱrטOA@g ;$' p7êK dK!:bG xhϤT-1 -7[H3KtU\>luwݴT;膗4#}hҚV - pEFZ`^9/* qS4@%jZdF{#Yg -?`lO(X-VrN@C` &njb D7aJ/VG W^;h#.iu*2ᘙ&f0yOz):3Ϛ" tH%In./.13)7Wrt2A2=1fU4'/I'1gh-+:&Ȟid){G{l@Op!ʬ)f0(1Oc+eb>*jR"U.G# '%Be=VaRpc绤 nF[L4LXEoY4R~[ꌇ(^Yi(zKu}d}%"@WplJ*X"T`t@BzYDwI'tn,uӂ{ZyEtWn3HG5b'QPMv#+o)2|Zد~Na. F*Zͬ#d tZ<e7]EUSpJSk"`i -W&#nsu͵ P;wb19~#fʏ@>qo&!41 D1gNܵTjZOX sB}6Doo wh+*.A#(Y$!ju3ϔ⌿ ̚_D6eB>XO_[]83`0c a:?gg\Mlsl< -(c(6YuLajV[Mfu%8_.TvZ9_==|r+9Bnn2b" sJ!ZVF )Yے_N VѕovCd6u#k63htިE3I (&;F˾ՙVK@\''fys2XAȶ C>*fJ@ՇU1s> ˼h ^idUVy5j\AX뼇h&s "YrPHMCjr9e\Z: W 1L<@f!+`}# S_(ѩݻ{=jUymIVHX湎 ,(Q+Qn2Ed7 -`"'6^&,= A,!kncs'%Q<|OD"qDI9Obt#{Cl EB¢}x2;+К"b]u h9Ruqcz P$u͞6Y:vQ ŻT_TJּ؏WA!աF? A|^'F8Z Iv -n1w-%ƚ(!sƲhꗧ32tfYo~EJs?ݧO~>}Eǟ_^^?woԿ>>OsҔFՆX-VX_Ƕv+Ggo ĐF]UVWrBnH>\-jkh/n6ۉ -2T, -;gRm`%5mkm66كE1LsC9|]b64QB t5&?Dn\JyV=urb;] )kfib榻G X3 -Gh&4AFq|9:2M&o%WL~[(g򈓫ږW((&єdl뤰YPkwܢsGI"Puޏn)&E?`*[B0 -,Ǘ[@@UJa@s7bX`Xޞ~_XyViUdd0$A#:3nuA>Zqhd i]>;;|(bmg#7:d]HVh$ғd(0yTCVEf{&KGqC"eJ5 ?cJ!zlڱ]vp1mzKlTþ\#6"Ta|ѿu*T;@ /ht -@] VHSJN8t` -ꑞctI9e÷zRvIU6 [ݏ{|!#tđ?&}[1TVM?:w~ိp X_SNbn"bgf,^y|L]KUz|Jk _IV5}dM'R[Jjn1m{vnhbP ̢|Sl[f"j`LBl`߫PlR_ -lnP -S`OgS]F\SKx|usk_މ ~'qJCQmŤM} y[hDI0eˢ$`Gx82?FR#ң],+440*64 틚΂ -ߌ[kX< S0JH^*7[M ؍X&+S UdJ ?*v5Zb ZkX(ޅ{!j6MGR1òbN#173!bv|;T!=9c+Jg=TQXsQ92wfтK*M ¨UM {Jy1۽S ) -5<@vL.P ΒloFWT m(a(4+ Ig2%dlgkBĪ$2:Fy(qrmB\i 9K|^f -!s]-ARE>UxX5%SCF^9^JϹ/8&,I0[Mcg =-q1.mu ~ŌU8,K>9߱x:˜Z]+ٻnRjlA{2-4.; ա$`pTЫk4G``'SӸEECK ؗ5ԕ{w#5I;f,@bjw[nBPubȚO#ե=U&Z՛eAW⓼HC%58x:)pO? -QQ -:\_̇R1hg?=bXZy:p{ǵE1ǂX Z]HݕIJ3 B B6"d=t{*~bȑ#Rb"HX.g2MwTе#s(hOtE1zYʪ*+Z6'ڋkӗ8/ˋ)NT:>1@+|)R\1(X:g'p !l"V+e= rDh1K+Q}kn(akt`T"" X. DY\K^^yʻiԶ@Qܥ4<7[OXĀjV]8{F;k- txB޽&d zK$ٗi`m rܨ+y|[%HZqht1nCHr& ŧ]!m|>]W:,Z;p J%"&ү9 /ms'Ë[:CU|qHvqH/,)mIeAGc~eCDRLj{_ -;ϔɳ6eFן|)+sQ:- 1Zu扤2 z픅܉nt)Ț.M"Ȝf~vPVDjvTh(=U`9ypu:ƛrH϶jzW Kw&d!3E^VˣOu,F#!i|JkAIn[]9*qȞ;$dNt,yYHuՒW"&IɠT{&v288%0y2F s֫7S+aXvIFuqcgam3!M:SB'g u Xo5ϊS}T8趌 ְM=OHLyDI%B6-(pW9&#T[1i9lB@d4 -ntos!>2~{+S_Fa{sw+7@l6V^IB:SRT;Tf3r3:h$ZJTbe9k"- -Ptoͪ;hՈAAsss 2V(a~O9A`j^|"4 ;91wmpbk.gXFnlԾr֎(nscoPQJ[ -}9>uo#9' U xO 5zdрUІy";VXE-$DBwKRf _s0*yV VB`S&W{<^IF5 -SyPy5Px2+ΒUwFv3?"Q^u!|5ˈϨI¯1fqd˳t K#aYc ._FUKRugwCk>P -[(Y:0jH+jmDJ]/ Tm(f -O6DȘ{ bk{Ū4$7M Q,T6!y+y"+z2nc^# G Hb#%,bC8Y@. 3d-(k^K .g*i_W!_wTo4#Ť~ -?Th٥#Wߖrwu$W 8OfRXu j Hq1/(J,y4!kb6Tf!a{16*+d룪b1"6F} Qd1D>@jEJ}*]<_T5jEWQVK 1u:^EwS"< B}] NAx]7cK/>v*L֩:HrټlKMڜƷ0[VdJT6WEdisO3[GF:z}-ҟԮ_"v5IȈ6-:]^h#tD {OR:ѨU~ /2@ xiu;J#jn8Ё`'o~ CfjMI0ifZyh:VXqxb<wbcl\,tZP~}FzS|t3L˛lguэͥoIjDEE% iF\e$7l(wvG@?c\Q0h1៩R]| 1T4n([+x~Ro5Df$KѴŇjI|MjÂ-UvgH""@F9p'@$xs6 |?K^r6dmly -  b끓4UӁr&&Cd͛["/;m92-GMX ClD;KwB5!uxܺ-v%x+d<0 -'Y5QN1;g ,L2օ\J@HzM X*SW+Lo8bn$d1Yנ\/Ѱj/M?A~_>/yIwoqo?O_ǿ?? oMpEQN26LAӧGVuiG5#$P @drV N698X8H0p.ad=oU}*u%~BWm*a -P81Ɖsia-H^CPډuCACrp $7W -t̫Sm>/p͍/pb:,_'s)~]2 ͗Rn;X33F/NyPiʭWUU}FԜsoN?V}m+Y:ЙtT}CMu?`2HAL&K'”&WFOZewoYv׬]qRpΊ3ơ;nHu&'EyvfzV,wW\ RcuAdkd <{MtJ5HþA*cuKQ̚vzdH5YcǤ$g=A2mRZ@4uX0$YdJ\j$%yci,kѴ@Gd*Bvl]MwUMR#1?bqH0cyx",%zn!&}.7H}{v_%F,d bl="EeЦ&4*&}))IN߱ªXtfp#T 0 9!Ȧ Tdbm7 p(EPhp#]'S)6(ʓX`( É$L$`wGfZKyuۣe"WKqdA@)\Ne[s=Qt`e暊w5`EDYnic)CFi* ,:Sb?̑sL÷v \t ܬ9hWl.h`<3 ׵0e)a+0,e!∑\Bx,0P^-TIˬLldLNR^&3N*XԈ I<\b9}}ԯg(@ <%ʼn&N%T@Vi4݌-ȃZaSA_Z,X>%,6UP~r{@.V%5BxR![h{^|fY BF;2-rù4us'̃r,cGs&vL&BMA 9•DJRЁy}?|*"D=׋P| 4ͷcv̥%>y?''_{_onWQ  }=y^y>_ި[]!\ztut|y'._#ngg~ؽ_ROW9^o2qxǷQOxo9O=BJ*I/h9aK@NY.!u⋇L炇8 HġA]2ԜGrJ:>#Zb,NY :@_[ddjat݈ FclLV -*Zuɤ|X\fAAcIX=h@XLQbPSq-6L0A0ALh̎v82d -ihb0Z *xu>= -7ZpaM"Ĩ`` -C+~ՠg_Wj+}}325$xH`5dxEa3(J_w#s,(ݪb]5fX]BTƱ\9 ȬԅK&l`j:wG ARkchUj -5Rr6sՀM\7ؤ&Zu{IW7.}bJgq~n;m2v.#U;v.^B1Rl4PhR]>8+MÏw8wB8(΀V5Fl4Αm4,fҼN -mU9fJk͔l0SڀvJXSh`؞ݲJU@aJ5v shsjV3T5h`1glRl4PhR]>8gJ:m'{:I0⧖zpf_zNTZ 6ڪTcV:tO $X *~2Ce&R -6Q`TcV{:u[!J%X 0\F]eua&J%Ll6 6Ƭߟ,8/}pS,@D8 ]Uk)jj@F[j:=/kb -ZFYaV'2eh]k*քAkL&laj:}_dZFSUV2uhjJ@DK&l`j:Ai~s> :":c@4 HUb4\PUcSz;w(P%JTru/H'/ϟ]..P_n387Oxo9Oٔ(.?i8\壻v)@7/t䝁0^7C.kkR,Qܿ1gY#KTUUU{sSAdꪘʠi\7n-dB@:qPLkӁ20ҘRUT6U&TWOzS^CUFH)h&LkӁrimsmUli~TZڽ؁k60m[;?F -bɩ; eT 6ڪTcׁYu ϥ"s2:Z fj:>ܝHs hV|pʖȄoeMV{v#T1gj+ -d3շ#T1gKU~+n#&d߁ΕkZ/_j-dV -mUE'ղbq`7*뽔/ld$1AYQ+yFDGd%8'I΁5g8SB.o=Vݻb\mk)C>W-싧rzbDJwxwmhanC/ -꿵H6\ګ7fpg?V=8XuϺ ϯ#}Lj?ytہzq䤸.G߻L -Vݳn&a#G;G݂aP95ꔻK.Y$vþU*կ ]45T+TJ~}i}ε@ǦߤPO_zzչp9h?'V,~'OwO?$ oEw+ӦSU>pH;u-#Ze耗lng~/{Fww>?~i_~ǿ>]_~ӷ?<_ O_x_=~OO[xg79ň:OG$dz/W8t9Ǘ1iGNڊ\-4JW@jMDФ|..Us~^mͰP}-,5d3yۋj,[FpDjp.( wrS+K -.b~NN=mѲv?Gٓ6K[Q1EFLDx TdmeQâ4Z\*_B̟T?GKOn~e&A'Sm%n./Dr<{|c@?jc?,:VӰg,* 7SKslS*X$[K2CgO9hf:l1zR 0ZUkQrl&Z EHo~ qaEQQ{T<`U -B,o9dAKecZWm->ڂTjjgQui~Cs!-3a.6H -.HRyVĔ5` d!+~X@n1SAC4^okO0%SW cb 50an,ZyYoxӤ䜁Aʂ{04U>!]be~)Gt_[Nƭ[#>?%hm?X\om+YՂ`z$:g/B8b&Z߽]>0C#{`T kRl著ar̆aVTVb)i}iN샊^@s8,S ?B9Y,L7D![!> n&V= - e K5[6ZO8KrUx6Y)G|8@i:6!IV&N,D^oԯw~.ʋW8̦v0r_ - s5mޒaVSԊY߫&uS yOAOπQ"@̀e`ePշk -PWa-vzuT3ɢ'+]eKFߜ[R'0_SQQ,.OT,Ұ1CvVzdZYFzlqW9pIނ'xOnHV T9b -ȭ|NRdŗPCt |wubL͍Ȱ4t촺 UIgaBngǵփ2{8ͧ7QAd]k"f ;<[*ʐOWό5Nm`k%)E5q3D -a/3g&ahaIWOs4N}Y0u *G5a$$E.Jld U;7t{+&voؽJtPBeR$+hQ!(oI:>n.0 QD$?]-P٣rz2!3 2K0-kMDʳq XΩ{N,“td> -KFE̎[һwW$LKL^Y\'+#KEb@bя9ϲ:9ZKO#hFldҭS`^U)%k!|Ţgü2xi}~ p{[SH9r5f8Ƚ&M pA)Ug9c, 0oI2}N,9|`=Je2P=w$\8;9zO4XYm>pj&k -wXJe;䙖ѕrm|F:=ɹS"bIvo%w:omT8*!_Ci`K_ krYݎHvu+;10x8hk8gb[7n#4;LC*@hVs?6->A VZa[*j( ;&C3X}3BњB $<+-6i|dE11G־~O0kwUIy #BKC;<H&.n+ O>kCkћ(7mYQrSDlW:8Ae1Ce{Vr׽X3pTj`LVX`.%[cfQY) s#ߴ+҇ڴkٓP `5Vھ2[>WrJfeg>"& ^3z2.uy-hJL=I{ ~ʧ-AF'a)|\G}Bq&rAI.}4Sv }{+V{X V/H XKo -n!E9 HM=w.X̓ڝ΃\[Y.J'T-6Vn&8V3RV`8VFf^^ };|nvf".aWg٤ԃTܭES0&{:'Ϟ؇g{o}j^:_;i|OWp:=Fo۬mQ)y~APd=8$sEECN D+s Π *s=.iWuP5 ,3/TFe1=:8Wq\&^ `0l|K j"w |)s"=0ߛVfN٦ƟʵʸZZJL8T]_GQfN_-B8KP+fR)ؠiy-z<"7{Nwϡ~Fw^F*U¤YB$r ]U4I$lU4J}%k'@ |T &O0PTz}kJW_1륯r^eZX&Z5Xa/P=Qd_ smɵw-`y)ڣ6_Q#N69y48 Im$3w${q<+c%x`H {zsxks0CSaq^Z}m7+f9@ݡd!B|ἔ#\Bzک/j:,@C(_ 9k ;xytU#u}?Q $&Q EydIYW-E9y0xwͰ֙E%@ZGmQWÒ7gKd`k+l}m̭2%QmGU#u+3_I ; -bE)֨O=o~oZ{LTybDaXQΦE25\cq7푏 N`>stream -H|WK$ <pA~ڀI=ËH=?sNCwg `>kFb^ ^!0 Xj|@7zl^o{w$[/'u5fgYNJҤoǰY-Cк(^ݟ9yB\X`$t>>^8$| ]{}ai~e3Vd*6{n{SF,7AyE; CAB\[-&f> ܃4HZ4o'{tQxnWf%q uOWb^m -YTv iыcCCOF!n^6/I")\HJP=yEﮕ|}ƥnP㦰y&)(OYȋ*Q>Wp~ -p_MS2x/7ׁZNvE]'bC25^<`m_^a!H)4?xd26UlA&(t| ?*d.yn"ְSb .2кw> -ru}6%}%&4HlCnn7֫>غG;KH g_eXG> ؛Sx~+xeQ <j\ 2{ Bed i]xa ٩"+N?:¶=wǼQI@o-.x5ch{=$S%'I1۳6lqA7zBJ X&U:/p IMA72[xƬ r |ϴullX`yڢqxUuDtJN]+A2(bH c_ n8|,:߰ʗѯʋ SYp=}ȂǪA p#!%|ajlپ kNҡ$l?'2Ž*з`cCrd x<{-KJQO3q Z?pީ[I{k - H])K0}'yl>];>

͉fz)^J'"4m2`!ʛ2X +,ۤ:U(]j_f:*.M $fgH!fm7ԘsGQ<ԉ߆_ &&f(^9?W#jmZ%l6fZ%<[3COZRlxR:wPCxkcCg6iA6(2{68>=`;ioyzZk40U$h>ռ!r8;G*jcY\[^ ߎYe,(RT^\D:nX#+9@;j>jT}AAyqư#zcPD>?BY$7<˕B -.:$R$G :64qWcj=V8GP3zIxЌf`wXv7c9 K( ח@̡-o[^kHlqNXE{s4-֚$!CjH ē!`w?ڱz69/ -0IxF?mO[:2[_#_PHy[S#}+\C)AIl)s4 \fl`=|Ne?|-y';&3v'v^N fq^ydؑ( #%BE2!>,Ho:0P *RΈjRf}C E'l;@{}PPU@4dh/`B6R`251 g`4ܐfa͏RB5$@_/i[`Q~`$a= Lj$$}0XZ[X"7L,(p̲XT́']M[r^l [}2RkE΁j* -ЈPR>}{O٭&Բ?8FQS -G JmPk& \!OXLf8!Ϥ`gܤ %P*`,ld=*C0r fY9/~R5{*;0Q\3BVYMmz,`[AO ƱtL5l)o)+@<La)eD<'lTC,&` }4+\Q떊}0Lf״X=vg?r9ʄg4`Vp 1`ѲĢ{QU2k^qvX#< -&mn*6ID[=m& -iԸ[|H8tsh^M U(|+|GtŠ2pceL"tvJ1؅M߳¶Lu֖%,726fAۇіpPn@jwGNΖy 88AlZ] 򴥅ۆ5-VK^(N}.$]RC -}"g w CL'660ΪQ0DiQ -z@7@6P;`Ե'\ͣP`$i(0+ e]<- -5bfn2S`:@ba*s`Nk;_E\+00tzsYLUht~/̼`MAdNX0%1#{׀=7Oƥ73Oh,n/ >vv,USL}-J]tf5ss2|pIZ2/zd`LhWU FFqmng{`wպkZ``Q8ڂw~.i;0Gk!DegF]t?kt%[uwS,lox+]ail2,is▹_ƕ0+X@ <3!Շ,2GNH89j^q\`{ugog=@ei/$~q1;U[ 3CEV:~rq3,o:vėqߋ˫ioM7'ͣz=P><^~{h>3| yTX|),6_Z/7Iކ-LJŏnIW~ᛛC3\/o.p?zNЄV7?ݜ8|l艭nhd[櫴š9OL{?$"f^ݬO?O>/OܫfozWv _!=ri/ܶDOЙd%5v&"X|R"N˃$@$8X ?ٳH5X.2scWsݮ -خ_Z -خvJƊoWIҿvlw&l6$/G#dbH>?3iиɂ H;[p#4 6ф-9\aE^1!LI5'騒1D ]ϰAp[68TwF}~KXuy1 ~]e2e)ׁm-Xڐ<: e3Jξr'6洸B?'Tܽ6ӭ˦q"E[A_']|݋ n| -n}W{SF/q;r3vYX{Od4HE ԧ+۠*%6ezZ''Q$ fi -nޓ #zV#2}ekfF"oOemd,m58%织;pa,w1} H@.utaӨHP]2FÀ'1Q/p*B i淇bT%~ru2^zIO'P74 E,{?W0%L"zr8i5YBF\5;^Bj>XsO,UH!a@uk5-xM7M`V\h6"||xY.e^:&KDZf-2xtq36'S쯜Q75! -{jȒ,3 MP>= ZĊu"$ i2}<f7g:ݠ YL̘`f{?| -BJ[!mGOP>X*C‰(MlRsKͤny;yDS}x '0Q~|A_jK!-YX[7m [rHOq}pJ.෰; (礩L+.["4_ Rs6Ŷ>Ƌ"nss4"ɺ!JIwsJj$89Q`Y,]e-sSF*^AoXdb,x1Þ6wٔZs޲Gi ڇnʞGa\U':*tc7N[d".܅mhNrR\^D~tE|qO Y -Y*8'KpCOoO$&jpvu"$װ)<ͦ- g|A'$M1BBusHxДC' !O+}\5"DuY&\gP`%YfRs#nC.Eo8B RUX -neϢo~غiMؒͅpGz^S6.hJr9IG"wozhJ[ [ Om2Iisq{:9aqw淇 İ|܌4Cy 0"5ǝ;eSEӦh[(̘"FmZ -'ReIR>[}߷o0|oV+}U?h[+ojn٫[kZukխU۔ZsDoY`xm [r>AZD&&jT7ngEkgFܖӨH0t|{AD|3)@BiJy✭(A(EhD<5\iCy\. YIEBp9{IܟvΣ3qD'01}uzn7,vs -}Y\*;hƜ ok Ib6{we7"K(q" /tn.Fͅi΀n5gMI5'騒-DUHrS"Y)շ{zG1E19Ljn}^!\A>stream -HR -UKlMW(sr%K=%iVx~13g-l%Dnh.w?dpՠteUwĩJ= Ii*N&NД A.ӽk<~k\ui:HN7%\pƪND<ґQ(I30bT`남cj(J/g?>NW+_mi6[b"#0֚Uw*l:=.yUY5 U)Paڣ&8g~ r;xzpӖyA¥skČJuU4 ~UD|TS*n JAVQ͎ 7 o32Gh/O<CC1!aQ$27?Gp LzV2g^72j՟eu<fʥl _&| >znX‰S,Han9Y\, -7uXڶV3U9|$9HE:ڨ -}ە߯6! '45 -hʓ,TIk%^,~ 2_/!m[[Ge׶'W[ .{1#jWDț%P \UHGUY.JˬQ!|j:1n+ -1#Cb ^<(:CL`OGE IK4ֺ RHL5X/T n`@i"h1}u;{/HN RS8yJHGLGQE堉qк 8 zRxEx4:UY -_.FD8NA[Mff7 ϳ.,K]ݕg&Ewtxx4;q2kV.f-W`X°rYHm眔E:h?`_xyb1ܓ[i$),^%ۦ?g cU]|C:$O9e{. mGwIg;z~VIM&߀*%C?=j -6joœV.ӃPl"9ƢLHg,AR }Tmܵ&D̮!zIp2Ɔb.<5-J6"$9WfZ#Vi{ n2hȁQ6A6D ohq<_UG> =2+qMqV;A(1nCAp4"fdXm b20P"Vp" PfQ9hb^co*U ~\@Uw*lQ߯<ԫ7fJՆcsَأaK l] -[5'75xYW^wfƙIݹ?j4'q"iVc?DŽp7^9UoK(>`d]SCn%nCF|Eu (IIke)n{"Ym΀>BO?} -ܧ} -J_"ۇm C`B`Jb1p1p73-}ܺ ӴG*Ŧe9xr/~\/ɔL[~@0-S5*sUdE[RН-KR]~EKr"=/7!޵uDz_8f1q<2Oczӓ4'ki[KD驃[xi"8q4ʴGV`dDt,8s"KLs6=8>stream -HWmo8-N -%~miwlkYl9PRmYK7YZĤp^L?KGߓ؋YlRKvSlgĵY8{NzZl<?Fs:ma] x9]TzKX>ztѩC -W-#7;/ͪ=T=f $p.ZVOeC?p dZ i\q1|V Ժ.۲-1:k{n5[_ɲe|2Ļ)fgb0DX%5u%9Vly~~HN~|c5b$E+X4Ay3-~b8L؛EI$ $+/ Ϭ%Ѕ097E27zŮ?` }aw_l7|HRimeYaa$6k؜ #4KΌSRpG* T,upw\ z7 9wV![@MmUfh>06[;ϓ5q#+cX"p AD8F|/Lqc˜6&)Ě"wLLt(HhQRJqM]&#Ey74AVk`@pHZ枰ቆ0N@.niI -l!r)Gal"`hG.q\˧a{ [VP)4)J(U1kZcl;8i"r6¡m62a19LgV i!bB ̹)Wx/ A" -ģpNJ$aKd Q M:O>%W %IbًpW -NHWH=.ayIIYx[$J['n:>8u J^pu2ܑ<)m'1 vDǺx=4D 1 .r4{7+.gqy9͠y[O'?<_ӽ4Ewzz@5L\u{`\.3wq3jv{Aқg7 d sMY HB$}|Q&-"7_~)񢹓^ 7 #PS Is0lGq"ɱ⠼ppxkI|yf^ ܘ 1ʼnGآ D\52gP0opEJbrn<0+$}^钝Io@.h`ny^hFŶ)0JDꀦ.-+x,|HG[4!c_Z&kfaL.)5kA0iD7lӘCA!(nsLbI=b:_$ۧ =_֛mFQJ<.ظE4#B<0{=Zol-|a5VB[Mxn4TCkB1xXTzֿ7`C 99 FY p#6M@c %9d,W4x g6G$Tw ^ Gz\$~x f>z8jn=OMu=j+ +s+rѠq3~]k;-8yPKxAy/X^ ^0@5W"W 9ߧLR+eR!aARJo*-ԡ*}*7&T;>T |tWmk -KG1/bv)a+G/^TO⥣ؒB#7NtOo/I|n M<>"xOT=QCzC>x_8p}Б< Ǭ GELGf%?bR FΦzK.7{7$!caYjPZwR -Q4 'nż/ͣDʺn̛wyeD3ȦQ얮l]c *ۅ}({׷7kM1]TPY*yKønW=\E^l8X ( -g֋KgW_ e?;SnL ˜$.sA \;6bMImi_mc_ $iMsr|BIA J9;ARJ8"<Μݙ= 5UsWװtmza2I`'@4{|ۂ8E)Mtmz}"`Ml#'}ưsn{Xil7ZٽϖGeBHLQ!..<`@PoofO.WfX?qix<:z7(9 tj6Spl*Swr j)}F.q\E_KoAȞ< t[ 2 -' .B2O׵Os. En˪@)7N)7KU ꒫@δڲ;ɷgko @n+oqWB+_3@/ɭ$PDРR&Ϋfxl͐fUPͷRU2U?OG{%'36dI:$ 4ݚХ4/ \7A:ۄIe2aɽа¨JRAa+P`f׺))qPL@/JX!v:/meAVPjWayw뼲Ma֦}[؁(Ū3m8jSB]?Ԡa( VCY˝ޚХBHjȆ{rrۼ-[N̯0E?ÿk^OakMN sd28{9(7S^z"e/?7P|/z*ktg'rp:yyd|778[˯},9E/T¥?|ɰ*93ˢ`zc[猪> -=SYPQ=)y"_ ttP2|- &B'@c&*cg -:RRhЯW;;荝-^9va)%oe260aujv~v:I>/]-mѬa7[li'˶j ;Ssn`qC+f=bi÷/w-&>!`5uQVMfMU6ʶTlnp&]l*pQWM] m'@m Grl\!b&J*rŢ6![}bs^RMk`iq^(vA-1yVrZWHn+g: j,YARQaAu^V5AEhm - - BdOc7 q ՛wXڹIi -Ui\4! -5d $U*2}CIj(UNQEzR?(1pu Sv8-򪲥W)A -c:(ƉqAcO> 7ZKHR^ juea\ " -4@M fMCۥyn=8 -$hW' e*;GBd^yMY۲)5c F. jĘ@̘02KB'q IѬO -ni4(}x0?U1E]sbL11 ahlbUZBG8dW'S!6o5_$js^+}Gw2*4[!Fk;}W2 U09"QNFQlW0xN䉢 ԑ4")v P1$)(F9x\Qx</( $!$$ E0E - M -7M* _5T>Zp CP8$T8㒖HExLLl3 E0E - MfU<wCђMO@<~3]W&{Гw˳r5;bxۃW'ux>Q==|j5dǏё˓)/I?xӂ/3 =n~^"ѝak}|>g~?]nu?kַ}~s_S<Pm+P7VX}bk3(-/|֣`p3+u7_P['ًEv -PN]yӝᅵm 'W{F@@9رd`ƥIBCNV+ A -͹1Z6MpH!$3<[') yGkC{p->mIdH!;qZj;ŵԚvâu2 RMKPWM+&eeG:| KɾdO L:7]5inUKt׾ՔN"ꋢQ6? -,+0ƙ'vC2;a|@OLhe$JݗJ4pW,f2\e> +Y#³h"x8r[(8qL8gWmo71)n|_nR/@Je67 +q CbYr8 9|xi#d%XʧD~YgC(hV(F0,W(P& #eY̑Xb63q=6L `"m/0 :e2Zk!Xe npI-V<&vI,*,1ec8O)(J{b'd:Ěy;T>8_lKy-U;&rI+{*ix,eiUd5Le,s&N7{MxE,xW 0Jg{PUP9m&vδ,=<+U/_%Q$҃QPR$Ԗl2&X#4d|LRqٮh3S~>W%Qđ,%$' #If-dL)0%BԒGP˱0<mq0 -$$ %y\֗l7% ""&]dq;-mfrq&{ ?'7WSݯggnۜ>77'_`zv}yz6\zq}Ocn7̞ͳ3.yMmw9_ȳn73՜ߛ_g~^߫֡7PPp+bò+j m (~Azռ(m^6jqu]uą@ek c0 mC @-,"E htiR ީZ3thR!&UBa"d͡k@= R^#iٻQ0 ErKaaPd\GPp)4)!J6#kP5'왶?v~[]psΫ4'gwo|辳ʚOT7z`s`aH|} 7W닫-쥟oag+>WHKϫvq=w~YWacױxh,y? )UIdpTw|PV1.F%ςIS^Č,%Fmt4F<HaޖmLs#MO'?1<GLtb]}}wڬ5 W`kf85͛hJOR-"9Q%]_Xf3k3G}LS;T*)Tr>ż#)2ON1!f",hS,>ӱ ǭ`5hB ?*>iAl|5WV'i_, -DGQ8ӫv(- 6<x]:zG}>=o}lL(ow\o?0ԗIMJ jEG WZJly5ڊ]Su -aА**nEe|Oq0M&e1%56QȦ3n9~E(H@kdeߒ -UM A`jf23HJo9 )J8I|i{@]M#E4e12TF7عHILUCW(9r6z:PNclzSt5p"٣VO1!IH6Dž 5QM)6Ʉ̑pp9=s2! -x1Ӥ.'cTC:5>!:vYکU(_2`lN i%]d6& p–g5+ۄ +N_9ܤ@Kܹ؁z1}qk1P~R = 5;&q~(ȒwQ x ;ޗn #)9-q ˽YR>eڶj T'49:t#>ԑNxć\m/?)+^--֢,vOqΫ=\E <ޔ0TY91ڲq,.5#M)6|;/\*0&l؞3$i#mXoLJJh'Q?aˆ0 x;*6N5Mt{]b,H "pJ57욹f-)TB}+!!LeP'R=$Y![BSfڇeƽX*- ;7&J3!Kk -N40n/IS=S@8;c('9?@3LŨiZ#QbX$EO%N)m*Wk"8GPTFu%^41QTj#\M{LZ-U98POPrCl -f[:$L )J<)ŎFi9m#ѩ1@Q`d9 ZPH_gP - әqYzXbquECGuRIa|hT/c%x*Cб9b>3b&gT v s°##..˞j3ɯĶL8 -Yiڅ5 86AN\I9ܠRlKsLT GRf `4 R u -|D3"$d͊X@j1:)5WU+iQc4[NҜ8}0wP#=i4rSqzJ>ra4DaFv UM8J(gU|mJ%E* l7˝)bC֨XgV1Bx5 {;Aj T+[)$g6T_Vˈmdŷ$ -Cv -.=M$M߄u"ā" @_?"l*PAJB}FI)"J%o\cL`ݸX+jxX.uPd*Ս eQrD\.K:]2Śze:q7QMeRϰ~ FztvR,Pm}-i 㞯L6Te {]2h,wrI.%跖B+BE%23nmo2 "̳d*md ;XUXvuZ˔W+wYUPkpy|>,&h2-vk]Gwx;,R6\0|9l? 8'{N͉Ǟ:xĩX-=G q|#O֊*F F\ڷ@kc[|4b2i nN x8uSXEW,J@KQ}kMlb&e CkD-yH܆ڔܟag\7r$)5ǭMJ=U2қ䉞+nϰE|1^P ZJ\ -Q$V5m~;ONԈVo8JՋðU{W6i}$ern }^E7ڋy8qDǟ,t1ݮ'Km~輿0ߣug`8+zu:>h9![?Gb:;?DW^tOQdP6`x79z<-Nj,Fx:+`uQ )^DeϊU?yS7 C?ZZ%jc# a,G>17+D s:<=}X@u[lkߥ룎67N 87ѹVΥ'XUr8)-n7 -4TըwY?*~$NΪОܒr#H5,1@;7<6N{ķi=xd >_|r`md?꿇t_rKb进pQ2y7xLWS[ -lK8Yƿ?@`7ٗߋk0;ZFH b}\hk~ۂpI'4l@vq:ކבDz͆zϥ>wڂjK!蟪Ŀ{Ā7{κEWvA+ehθxV/h2wiv8'Ayl3%Z`\ܓDXrb>y* 'S}֋to(A>o]_~.TU$n썦}߃kȋa9ZvSr+ fhtu5}*c6/ܫsz.O~ϯؘj:;0~d]ELf}5nH5`äa0YTGf>vv2 E+GcG;|D8P9U/,e -^zڪ` --{%+I&zۢd0x2'% -`NdPka]5 4 ~ԝǴrL+>YUO,{!`H1 #&gyhT$tFh.A5MKC0xL$BbIf*⍣U#&"H՞0(! -I pIhiDbw0FJKX7ƕ"DK4bYq-'5H1 RKEPBV4C1vð.G !b8ZZGאwx?Yk82 -x_yy oBO:HԟK>'+,40}qJ`BrkUUBөJg]Z`A{䇻g[Ϭ 4s`'rq K$E3+]Lg&YgQ>ZF(oi*TUirK@=˓,/2fO_XR/ endstream endobj 183 0 obj <>stream -HWnH_D%,'cLf'6L& h9aH|VUwS -XêSUW{<:>c^'cISw{`ٜWeϚ͂Ţfhǽ˦">y[G^z,w`WquAT/57=*VE\~7rj[].eԔ9p/N+AƲ9-|8}^2zq+ԣ?%@hhK|GGmN/eF8M8E@Pn"vKRwi`6vq껔2 2L[GJnB!>>O\ϪKmcm7t?.^Ib.U5ӆٿj/hڿ։w5`o1,b덓t7*8lD{&l(X߼?W9hxӴEhqM;Gw|';MT0{qI%ܘ(ݧoIDi<D _eo4;dKƼ0%(z_qw#Nv|U͇LgN437YS꫆Lqx7UjUի%E.C΃c8O@:ٿ~\/ڎZw^?mVB8ɫ -lgk/{ݵ9j~&-/ʮvOv&eO \2?ebމV͕dz?Eea=pQ[u\*Zz;V^is Kl&bD03܁LVlu0TuT%P:f 3kK!Ѿl_D(J(—BƘWTμc+VAG4},,Y,2x6#TN9DvKSHKH Dg'@HHNHM҈LHĝLv< -Io EHʐ9&ހ N3'8Cͤ IUHB)aCG=gUkҁa RK"OS 8R鴧TzDEІ$kI9]n ݋;(*dE,cN-ljk o#X\S0:L6aӋe5E 9o)5cm'(~I ؁ZH0W)ZӌwXPJj=2M*kZF&TjhVʊ ī$ 4;3gea<i|9l6^8}{uV\q..孛Ⲹ/ zwxe8jeQgs8܊3\`'bokOVq!m9|Mqib6Z:^ -1C1cHh9;x莐#Q1fgWA`N?PT/8QtvaЧ -=ԒdL\jrK'/ [fvkFaK -M_x=`VǦ̺~)&k;U%7uA{paذ a? G~6V.u87dhCY&Ձb6 -1/ 㔦RlM<$[_aWlZ0%СI tlDa`;YvTM媯̠ZVQlEږ(nT -j{vk 02dɍ rn؞$yךdRY/3 ]rpNt_+n]{?` HyTV(wfk47f3T/єq&jHI:P~HS#2׋"gCS-(Tzͪ&%i9ƫZޢ$_)kbzslMD{.>1;lrb -hkR𾔸hGk*nwֶYJ{ vO+YL\`fʀVNI@,[}礽o{.X8uj`vx|j~uj9B0rm_n@ ~%QtdžMf][R50ĴS!kS#Ƶt JqC0Y&dJ B),/Q}dz -F`Zur>]f">'D #@,16u ;̷jk6 -E-ڠ92"™|hbn[N @ -d\$75c:^N[-OeSĠ,KXhj ~LNSZaī̷sB>5)T7fbehjCCsJCӊO8C7`z8zv# rp@ۥXӟMV30AwD[pz͡4h]7 -RrysSi(C\t$da۠tuUT`ȡTri*X'P/90}RsćA -RjJ A5|Ĥ7M3F>d:$ޞ3# -{w4smrE?)I-GLL^[IAB+ŕ)J/TK]B_8%=e;ٯ,ضctuіocCڽxpؔz/j!X|\%iR42F -Z\yYLfY!p/u4?XeB`ֻM2sLŇ=6a2`Q; -?hǺtg͕r*2Tzr +6c1bKљPp=X+]D>c8#mFYrHU>v,Rjަ4](M5Ysl{81D:9%qKd35wP+Mf9τB`$AGǘC"D -ђ0GPbb \O3X m#d-&کai0mKuϲP !0Q%E$˺i@fB8&#IS LBP#I @]F]BO.ʤs1J -, *})qTb9cfH5bRhĀ5ΧCdP:dݎ1fП Oc%pmA!c|a@mB7&D[@=ZPQ o2{/s,Q|Eu4!@F4h,hHe"Q?^-A&i4Cθ)$.۟I&ItXA b-mi>aIACAlHSvJ`) ûZ;evZRXW>EVMnAӨIKIRRU,!?f^n~=zz};Ko^E~2WgW{[qnx}&x ִD}gY nAvOP - "y!k>ɴ_Zr@afN$B"i5Q2ԕO;'0WbW)H* --hoJD(sHA̾3Qˬ&bCY.կ/KbW%>bEQ_c?1!h1`viWdK~MYrńƖkӽ%/^?nb/joZ܀Ʊ>jdul_F|i6n89n s*2(jwJ##>PڧB =7x=v#' -v -8,(bxi^)э\+rsѹu|*Y -iVaSH&'M]dMkV 3pYQ~!FyJ -Y?QIFH6Z9nFtv|!,UCS+1J kP%<:y6^l,>\E4=lOԍ\%,-p)'m \GVb ,#e]&1sz6AU4)@{Xj|j{W1Vij|Qc4 gvԛGd2m=q$QArHsrZ -ݽ N1cV8Mn-{~;|"Xݘ{).ƴLgT!K8^9cK[7^,2>z)R)|&@$L *zd=GSy!L$HnR{|ڼD$P*R4WDLl0T /YRGn*? -E&UyIsdFƂ#0yfBPGxR;k G<*߁`Y{8R*13%g <%.*7#zTװ%*+T@$+mEs#e +@}TFLIE^ٔcA("D;E I$M fAs:^Ec - 2L%fjtԙ87 ?4)/6Zŝ&xf 0{6*w] u L.Zh;sy9 -d}tVf'b} hBUA_~ռqwZ/'/.zW) i8RLaKK!x6C>8W_,: 4m{#-̯ -NJ gs>f"j -w[n <`ׂpY^`Rzo?XM/?XMSAhϿ.3V)6P)wAX_磏X 'fm}*ETz~Fh}}Aaf!%b,f/rlkSjf;N"-4JfC a?U욘[L[=9LFٖ~YRx0YHp{~'z63: - WtNyHÛ!`n侴.`Q3Ap1HHaN% Tg#i2ڠwj2Bp8+܋RAU-:!-MMo㽛bחq*Bwevz|k/p:-DAT&9۝LHh~;|\4ch)]L BNQP` Lw;697vBF ͏[8UJ_q\P)#c?#ơ1w,{#FbPdM`{ɀ7=*G#e[e;lV#T$-?9@e_D0kN,;1U|*-U1<JsN܌{G:sjQPXb6rϮ8aiiCc %7}u8 z@C8Jٱf܁˸=g *vk.͎}Ɣ,Ae<IçNHSz(8ߜivٓbXW f%}VZӓ}T %V:"ՙ?S>p(K]ypc>$4\QDo3A_@hgSr x`%MkwGe+ Ba$ZtQS:93b {EaJSU{Y+N8+ PVE(2?ߵ'MVVVbIQ65iEW(Qmf$^Bz;_ARoaef_/QK"EzeodCnj]tm[xh&^$wn}aѹP) J 5X\+سE=v^x]o\>Xè5߻uO+w_)bڝzۢSà .|}hOnە̟xx`|mƶR*&siH56N-Y=tuu`Ø̟|}׽SZj ajJZ}gjj>Y謏b2lVS'c4?gE&ris;%`E. c|CS`(ыCPEOk S;nReuI7!"jDXLٱ"g9I7gyQi>BcFDb7B#Q w.PЊ`_uua/՜)GMhbV%d(͏ wqTvWl"R~?SgB*YY% O –BlY7 U;bBIEm1^ p+GP8.W^(^L* 'Χv'=6{sWw_` <[׭5vB7@ ~t Q~!i"i'J ڰ[|C0!}-3P"c#}rk\JGA{2bfJ<.D0XncϱA-E!w~Hx͖[$Hpw4D+ja*z mOaDz0 YwbZaHE8E -(8ï\c B `"6OlV>ayR'5z i8v"h2U2+q#)"TqY,keJ`R>L3%?Ogj:qґnjR揔񬇂%-cA&lOJwtAxoKOwb,M^ Og7Q6]l.N5 -B2vq:3 ORUn ^$pZX e/o |;tCCQ; ҚdK8_$6l~Y}Sq -1EDY`J#;ɫ#u<0ď"7ְ鵏LOW} ?Gya>̢̈́FX(CB!96:Yq̭~ tl0sU_F%0or'%a*%㝽/¦LM@yaalsVJmeΧ 6m\wil g^tŒWǶp @=1 ]xi<>Dw0 -n 47_G z̃ {6-6.Vx/."s#[<Td^|\w - VLpG!Dʭb<,lXo$"B—gCECA:w>񐗆NVO ;%og_7+"AH"iLYS L.Diy?N) W슼 "}q ,dKl?qBI"U(ίlȦm! -LʘFiTQc~- -Ij#$k1 ]39ޡH̉m$GKY& S-Yh䏍*t͐b:NqP6ʐݻBq| IWxTĀ1}K}'~pp4U4P0Ou)0?h‚*F3l.J)` tY"P$q NF24I67@ѳ40,MIaX_aNz`хc}`UH5SC/y6F'#-9zGa,fr`;m3h2 X* ~P!4Θ 1K*mm˨K?> aX(BV.kic!ǫM/M9.EB[R"Ք"#ï,KU'`8wd|[\C6 83`}2{U%6^4 RU͉{uPa4K^ne…+PxJ~tlj6i7fH -qCKw,>j&M{dEXgaK \դs_'GBd8{Pʒ+z -P'hHNC/Ͽȝ{ P!>(CLk*T87d>$=lu s}sM8US z:8cnY: C^B/.[HP1$c]BthܤsгJ/zO\H&&;,m%q=fDn?7;or1ӭ+W!kGJvHH5% ANb HKu螫"3s0_0N?S5!wIC_;KJIuXr;{]k̵ J/Aȑ݆l35.Moƻ+pLD[OlzpxI1I_6Xb#-O# lN)=Hc m&Iy&o=픳ck|,CW,[Yiq}C%[/bmy`/|3IW~{'7rqpӟO&}Qli^JM!ln -W#2٦}%@zFIr "%6rɣ'>]6YEsxT>}8aځfƥ,{"%s-zb.HX}c&N-XbCz\qi;iZ["}(^n֊]ڒ@Z\/M Ҫ~>Hi}xLf.r"*qOnl5֮pa+$Tǁ"%X2K٤5)h2?Uږ8EAD -[q@YdQTTdu`$ ]BҦ2_{{=wX _nOV]:f@N|9u?^1'(Mw((>쌸==O8?ԣxȽ2oSc0;L)Ͽבe1žܼ0o N}7Iy]j{`%F{R ֝4{*ņy$O"܏3?v3oRǼ=@sqUxc} B8a6SB{9f}J5̼^'3m3Ul.Ŕ?cܞ|xs.{M|zn:ϗvZ%{i'!NRuŢ6HlE9/t3)"$ǬM,S̽_-n-N3"o8MBodZksp>t?)3\lNZSAO1:t4-We_!B'>goVݸ;%%f˃?!:wF -m0(DryS0ksU __ 2QsE![{WIM}*Cm$ m ڛHW*qY3ci\fMw,"G!wo -]c:dp,LYF,'D jmAYCtj*PL4 AJ,9`r8̊_@d'f`%q2P}'XƒiJ)=X?*ˬ+D+<w nq%|m:.SOzުvI3Gp+kccS*0`Fɴxgq 2s0qhF󟁚y2ǒ {yĤ]=zZ4!mM欼H:[N^0wnKQXxxiJ#/9]e>Pƥ3axIҪFlc\hT1:,ۂMul -xe%h:U}.ixFV Fgw-e| Ԁm=HaQ5\5JFӻ -yHA~U~GXiSAli LأdIX_:fn#t@F^aI{ ^w|VIOf7;3s$.c6t,EOCk}o)ұth6 }>yYhnuM^|5g}7ŠcŊ1 ?ŐY1Wi< üY8y; q`xV?Vm$xNp<f'ްף\*h}EπuiQuuCW#U/?EAɠvC}uQ'@& eb+PA}aPA>\=R"f*SG qӄ$&Y p-) j;w՘0hsT '>|Sz{xo<1Y5?}EXQjL,k[LR7Њ{ۦzZn%ikl{]T&Om(\]w A=%)yԛXWHsе>?Gb\Wp-˦R$N_Z:>?u_W}|RX=G0q -PrKc)0Tk}CE)r3`GhIW`->ۀ'^4pd 4`d+Ht!:X%)CPPJt)SD5xAۖUKظEluUnU9G z,NZ'A蒬Kmi`Cxl R4ʆ4g ryld"voƒyGN~mnezVlix\M&圜R4j6S$c5ixpdH<ې|JG5ۤD!K)}Bp*ɦ:sqX_zZn%68Ӭə6<5ctj:|.%7H+m0N4!5WJ8(-+ }0o([ytU[)=gokMZARr3Q^{B% ЎF,,.\$ý]dZ,g-/@N,gwUb%m48 e4`_*I^O8*)!`, endstream endobj 184 0 obj <>stream -HWZL\` !( Lj~_w$#P˩:U.Z ʥŦM+"|$lqR!~T慜gN#>d|F.TRnBAѣ%iK7%k!UKbWTDzQ4i3!=tׁޢ O:(;[hշŀB?6SWIOD+Lo(P;08,g,.4`.OQ`Qo -b:TL]e;DXf5?W&9X豢\y^%D['Z2]3j9܅ҡF9L5&jdJƀh h,0o}t4#|׎-W9uaQ_67u;foFƙX1wҡ)C&&1g"] *ϓށ -NN֝ACc艔NL]<|ܠ|FPu"h|t3T{eZ6[$Jc|W. '[|!nƌŭ|9LJu1R7.2[3~e@tyTb'V}N;q?zL8JVIA$g rE a^X)e#iqECNAB4- 4Kdc8 9%/ jhs9<1/x;GbvR^7O+ak$?NTG v 4aRoJ88 -w$eb^B0ImI:8t/v}gR=청|v6?~@;`gzhqɇ)ܷC٦JV{F,Uj&8 8 iHs 6qk pI$9]3 bX|@@cz\E~JXw2^q2azWbldspD{M08{! ݄a9?-`.4iH+% L~sP7rԟv6 -CcYt`L;u)'~!f=X3;;I}kCŬ5FxCZyz X7\Bu!du#C5Nu~}FJpSӫN^%!0A:TY\JW.u{Xב|gUfB{7W-]~7lbwc/N/[4;ӝ$i)NnςƈTlN'7yycl{cdgS";>ZN׻W%po=mӳ`pu{&;NisMUթt;MhNƄٷ]Ow=iTxO2CS` -B}9{/ofo,f#M{huޞJ*Tw΅:.!e;I+XȥmMiTSEޫ6u&K ?QߔV!AÐpBy^uBz8oȡI!_v#$X:NЉ!¥7pB(5/vM`[`0R! ia5lpF$c0R -!]XV! .Czť@J7m+Z{?M4c V_Iܠi;\`O<,m˘crⲢ i+%ioc"-O'$Ϝ -q|fX;/cl9(x4'#zǥX+b7ZaޙM\TQVT0b &2ԟ+Oɥw^M\ u0Z61W˜oy=y<_&RѰˮ43Wj/ 5:ȴ6'aqǛx|aє HU$TĠq{Ww+yB+B/ 1 <RՅ7EtM^ >rNJdTٺ - z +$cqw 5 -yM,1~m 0]' ˮT42/rq\Dr?;]9m&$Lµ&+.G,sNZ1juIDIJ fSVAW#J,iy;iI+s`x9KLā 03toiGjCj&:a;$uݲ oz3 -A%UbyrHn/VOԝdH͒܆w:+o3qAŕhj+hMMqu-~t7<C0;32_ r:T+IɯW 4Um -Vh*iBJ8֛X0o;J>XWn7u+ kNKKd1\C2Ls 3K͂|ܶtL@e")_cE 3B!AIdHTJ!W;}7tGL={q/} -'-Yn1)NpQehPoi;4a@L.xŀo~LFa{ߥaа`H!EB0á pR/QlF#+eȒ4}aXNeǂ:C{h! By]!uܐN:NfWla.RKăI4/߅!Uy'?v>Gn_Nj$$-$ -j9jtAY(n\JQ$WN uJ\Uk-FlV^|°oVR:'0frԔ~F]J-լL~}vBbnqJ諡m8eIQeSPZfUJ# 2iI]4j -ӈ'uaY284h4~lM3+.sŸCE:~;{bgA N -7C^0cY -xtTct|uYb$襦yʼnOV,{Q!Ae*w'mRq"<G 61 }g傊M3 {m -qOFm*b/*F)ڞ8`JiYЪX2=,@~ڻRꄙ;@} -A,dWS4< i݂ƨw1X[ӿ?lG@-D.- B4VMTW k}6'%b݀W)x++f !ܵ!C}R!x3ݬHTl>](K#rPӺ))-u~g_1 Ƚ'ɀՉ+ -urC:&3(u'#N0CbT!9zܕ_SN!$lIHPǬܠ6y&vܷ6rIVsyWnA+Hqy"ӝ S6щǮX6XHqYphhB løTjueA!N0j[ٵN7yVa3+TctKP{K.Af'ޕlOV9-ȡ -p8W,g!uYdW)ҰwhN?`y=[c<͏n= Ik -ɑ[2@Bi*+gO(SB&n^P<2.|IPoLVRKՙn7j$wUKxn'ISatN9uY3vvn YBa0cBtG -8 dh82ےi6B:i5u04q=RQ\ zA 9Xe -b/,TJaXgmVBu__,b2_NQJ<\;V0R,YI mZ@`sK.X6ݏEV kT`D(*N|h@.6dŤuyI2Vg!eB07>^1Z%<x(MC;I#4tHxHh9p`結 R$tn1ljxD<) P텓TbR{[aXz|"q'Vb%M_]6`W,W[63c/6Tlо-!{bJz:p6=uqPЌyIGޣ;Os~ { +5v알_u2_WEC%_aHqu̵#v7^Zpm6YJ.b4'BI0חal;Š?`X XDt嬄=W,[}] zpqf5WBq"Bﳗj`VeCzZÑ>å]( > |d&2?y`*f0X_y`y0%a ȕt@x`~N7^`Rr0~D| 3`RPjη0+oICg֠iRzV{DM=cgVl N+AYT/7d_Xvs%/nQ^9Nx!^4vfNh’fz}XxаWerL|7pkXʞ;';YNz%¬|p?0rm0L2¸}p 4 QUx:ǐ_)ƷcR678&cb摓79%)1oݛ%ks2ydBYh{ )ܚ -:p;} }~aݻHEDCQVǤDKԃS' Rt#R~}eEpxP9M+5<4``ĪWZ&gE*r07m.<31 -o{p" m$-C/D"'x"@8)AZ$ -=fnG ?:uY?8Uch~*yiaB "uYM;01$QNwX\$#浰ie06fM| #1b' -=4 )յ/:ox3YRu22i}n@>%.$@b%6Z,T])Kii3Wl7>okdko3[SBng̫͡t] qtZq?"Yznu{U7nͻQmwՇ,PA#J6ϳu*FaǡE}Q7fB7i=skqս'==u %,A a6L a hn*P-6*) -uQuwA>hSf@02Z[K@9]ܸm+tY\U -χ2 -DYpV1uk >ؠW r}ASUn & ^\ -gbZZjk/PR?N%]Y\"p8;C$@$O."~ -sc_,hg@iȰTk㾲qF%aN ߢ]ezCj+Q[O.:C(^ũz!-G⒂QhZ8ąy>"}iwb^[{15%VR42`c$"0C!j$M-0! Q=3A4⒥?zkt6eXck(`c90nkkCt|^eZc3_ 8(hjRp'PrI"!tH;I_0 hqR'ަg$6 `#DmvsSC>j ]bulo 6|Y46T{sߞ#|a4S:Ǟwα7!~c/s,~ j'H*޹%αM~p\u|~^~fAFowbhv47g#ς~}Y< m^=;!T_FVƆ'lpT˯PקVKuwM=/_}T/s8w^*@s˝?f7AɢK0C`ݚ.០vQqfHs:uif2Ng&g0e {zlw ^{p'4$G"WYo~[H+z˿. c(H*, dJCl{CB^"˔P&vivNT5aQόo֔H_3~5&$7G [6 yb[H@k ntʝpY6`A*Akө89n޽|ȇެJŊ'ǬCYl;#ďn +g"RѧXXH\i$p^u3UxL,,g9fLE z jFmqBQPVJ !LXLJ"JIN%0Bn` ~s匿|٦JʰfcBrZ=/mwmR6*E^[3K xH 2Ɍ2EDEZ}[՝IwΟ$TWڵk>GsG5R By!17\rch%{&1VԲeF4K6x&jJa.}뉾ziZgLsdS|Ȭž'C5b!!8xT5͵b[<5IF,*ࣁhZT簆8(,>&xxJS)r}n% 4eKF<> )ڜDR̭N0uU"U靖v3q%z{Ts#ȃ`-aO - l,C$Ḷ-dwCTjV 3"IiO\En绋qKxӪvWwn>(g%vj4xXuKL.P\̂n]Cd/^2Hv1-q&ynmwx#drJ+{ֹ.OQxGN vpCiJ# -g7P| DG7a86sCz?T\g.:+܇ ^Ns{r\ȲmJE/x܊R h DC ӧ , lN-tY:C ɲref^ "֑|}fA&4q6{ZHq@x|,$;p?\>1@" -?F^"mt7N㳪OrZ ƁwP*~dq~V]lʻ&W,G~E/˹-g~YzR/Qfa@ac5]r|cgXY)+/| ndsl~rH9ru>cKC1x/+`&@U9|XgG G5jik_İK˪#WtC&].nz筎iİQ?N716Y &(#fbJrt(n͖9D$j`J\B r-?:yȊWd=K0CV嗱`lM=WNb_)n>y t\ [ĠcB֝ -X2*XnM vu sn4/Y?RQmE s(j{f9ظ!r.Tg?0m6l ۠ U\oyCpmȔB3yZJVq<ض$qœ6̃J-fEe[t;ku[~D1sǐ4Nԩtq r\ܳ6gyghzGgKd P*$5Z<s<wMw:lFVy0Xu6^T ZG^RWr^i"N]O^qhzeߡbߩצъgq:-,r{˧.WS9(k 6\0nH$gH@PGp\xwBw ԾO4 >ΕJz/n2U淉#P)H& w=/?OY ı1?يST6ޢ#53$yWR\~'^,8L}-;8T(LaEERgs.e{zgzuMw&qm?oH_^;6ݫοqxKa?|_9pJ>O[dd '_<0[6'w_}i?-΃WY.>ɤ~ek1@XWK@ -So ym-rJ +?ϛg ӯV\{}xX'Oy{{j8m??JK66,s73mi]߮뫛}ǬW^}`94~j! Os1] -.XkACы}9kL5{,^-U݉iy7M4QiJ,qJO?1nB"SvJo3בPVv}{lgKE'S%o;Xvyq[x_r ۥeu/lP@$|˞,-.aZ $g2$0 r>u.:\Qfn=O=zt򦃔q%0' [3-3Ļjk;J+YI85٘Gl.Xy]ً ])! K.*9pw^8١Uz)r@*qw9,3<.쳪QʉXMhsi吥.'q 'vbw'A_F+̆d -JrI - t3%K08R3&2 z !㣔DduJ {N$I;3ti4b |%7LrQ -ct'@ҟW+As ->k&ZȐj!]Q)#%\*E"Z)$eRz-M@8g|;/ǼqFlɆ#L]9F -O%v7j -Le-qyʁ -Ȣy4qIćg/<\=0mDr|]U{8 tWp4sb m2TbT%Rdi*&i|Mg<^lQa(iHNAvY} c\~FII@@88Y\%k _$R#\K~؉E1~ ON>|)Q :)yt2t!OPNԐ ؔu124Yh)O;.FYぃCĥL_p`.dѱvʰ?PA@ >ս1.hYv^8 -T=ƑQ<pach)A;"" -ǛZGӓ)F!/bICʰ%4~4aº -4-{,^-pU݉i>~0|<{YdP-(e`hN̡MX0c kd:@$L(0"t`F$I=Q8 V%Q򽳩YxA,Id 'Y9%.ւs& .ûP^D.⹇:oIl,b"gH ˺|&#<6εtiע5"\;9E@]4Bx tly`j7ҧN2Gl4! Yc? .߮뫛} ) q[겝/wong,nC>jA>>;^7@l5[ZYX`HFA$4D3~Qռ5U0>c_-YqT@RZyaYH;FYXى^ƃ`e`#]0z9DdUuF2⪲3+"N|z3(U`pV*!ϻf2Et 8(vC*JM[bZAycbٓ-QQ(=DU -+F*aiY3u#Xd)i\8ːlzgJv$h8%Q3" e"z*F::V- -Ԇpؚrlo@ݦαYZIsiJZ/qYedJPqZZʍpXnݕ7179pv 䑫#e9HՒMILa*쀛t/ΊnKWUe_"FK5 m{B|4PF[9p %{N^z6tu>})uye'N+ vX"೮5$̲#pJ"0ӶC v8sw)M~\d/id+kmug_o;k /G˼vC[Isȋ,w]l -w)3t>7-v!ww;]5J16a^.|vW{V]Xn` -v}n`7va7 )``|4da7_ujŪEye@՛Su|\ޡynww'uJ{ 1\Pa[v<&3B]Ԟpe NA5d|;a?y?M.oO βWA86W_Z'28nΒ[Β]L[߬MӦg9AwްŽ!-j"vsWnc6VlQl}o; O/%<̩<{?;v?LNh[/ڵ4DATe.\-fk\Bf}} z 8go?wˏ? ?|}wBZR0; Pn&h -gՀ|8:7 ke!ӗX$zޣCR{Rb0Fb8 B 7 -dY+qmrUFzxAOx]W~BkcbZP Fx(v$bnM3sP3I"NaXTp0j%?(4.|`[8Y툴 r -5pEߋ5չb<=XRXYG&ȅzj(V !yu"JQ ?\&:seV2w0;C0(>qK@ -{ `(7m*R7hͺl(X74AtzZ([F+zihaR u`մH`@2m\͆Y-5--&kJ3{㨬o+]wbVja4m_rXB⯸>:E R[% -8,m}Tkd [ŕ=U몍 n0h^U'`YyZ]U7J~ZIR{ Pf4e+N`yWnJ(Ա2|tix(303 Cl}Ey+G?tM2vgI̞G:3@ޜ[:3 W~J5KkY5j#C'rݣUVzX_:Dϟ&GvWұCFRR w꾉-7at [1p #V[/Qqs_MO]Z-MdԂ²cgݰ1ijNcQNJFejXP K[bڶHis2Ut M)gjp16Fw Fx6Sis<_dxJjv #dN9\-ikښ_,,>[4~OayC*[ 1Y5ZVCS?aޯ_/,loCr,c~({a -WCݴI*&zn:0!?論ocXq߽;,e]ߏucw3*׳gQ3{ 3bKpx! nj,C@#FM<&!7'J'!MΦ!g! ,DqRBYMrIeZZAm+7qs|T1@glzpiޑ3o: ?lus;+>  endstream endobj 5 0 obj <> endobj 29 0 obj <> endobj 51 0 obj <> endobj 73 0 obj <> endobj 95 0 obj <> endobj 117 0 obj <> endobj 140 0 obj <> endobj 148 0 obj [/View/Design] endobj 149 0 obj <>>> endobj 125 0 obj [/View/Design] endobj 126 0 obj <>>> endobj 103 0 obj [/View/Design] endobj 104 0 obj <>>> endobj 81 0 obj [/View/Design] endobj 82 0 obj <>>> endobj 59 0 obj [/View/Design] endobj 60 0 obj <>>> endobj 37 0 obj [/View/Design] endobj 38 0 obj <>>> endobj 14 0 obj [/View/Design] endobj 15 0 obj <>>> endobj 164 0 obj [163 0 R] endobj 185 0 obj <> endobj xref 0 186 0000000004 65535 f -0000000016 00000 n -0000000250 00000 n -0000043273 00000 n -0000000006 00000 f -0000179331 00000 n -0000000008 00000 f -0000043324 00000 n -0000000009 00000 f -0000000010 00000 f -0000000011 00000 f -0000000012 00000 f -0000000013 00000 f -0000000016 00000 f -0000180537 00000 n -0000180568 00000 n -0000000017 00000 f -0000000018 00000 f -0000000019 00000 f -0000000020 00000 f -0000000021 00000 f -0000000022 00000 f -0000000023 00000 f -0000000024 00000 f -0000000025 00000 f -0000000026 00000 f -0000000027 00000 f -0000000028 00000 f -0000000030 00000 f -0000179401 00000 n -0000000031 00000 f -0000000032 00000 f -0000000033 00000 f -0000000034 00000 f -0000000035 00000 f -0000000036 00000 f -0000000039 00000 f -0000180421 00000 n -0000180452 00000 n -0000000040 00000 f -0000000041 00000 f -0000000042 00000 f -0000000043 00000 f -0000000044 00000 f -0000000045 00000 f -0000000046 00000 f -0000000047 00000 f -0000000048 00000 f -0000000049 00000 f -0000000050 00000 f -0000000052 00000 f -0000179472 00000 n -0000000053 00000 f -0000000054 00000 f -0000000055 00000 f -0000000056 00000 f -0000000057 00000 f -0000000058 00000 f -0000000061 00000 f -0000180305 00000 n -0000180336 00000 n -0000000062 00000 f -0000000063 00000 f -0000000064 00000 f -0000000065 00000 f -0000000066 00000 f -0000000067 00000 f -0000000068 00000 f -0000000069 00000 f -0000000070 00000 f -0000000071 00000 f -0000000072 00000 f -0000000074 00000 f -0000179543 00000 n -0000000075 00000 f -0000000076 00000 f -0000000077 00000 f -0000000078 00000 f -0000000079 00000 f -0000000080 00000 f -0000000083 00000 f -0000180189 00000 n -0000180220 00000 n -0000000084 00000 f -0000000085 00000 f -0000000086 00000 f -0000000087 00000 f -0000000088 00000 f -0000000089 00000 f -0000000090 00000 f -0000000091 00000 f -0000000092 00000 f -0000000093 00000 f -0000000094 00000 f -0000000096 00000 f -0000179614 00000 n -0000000097 00000 f -0000000098 00000 f -0000000099 00000 f -0000000100 00000 f -0000000101 00000 f -0000000102 00000 f -0000000105 00000 f -0000180071 00000 n -0000180103 00000 n -0000000106 00000 f -0000000107 00000 f -0000000108 00000 f -0000000109 00000 f -0000000110 00000 f -0000000111 00000 f -0000000112 00000 f -0000000113 00000 f -0000000114 00000 f -0000000115 00000 f -0000000116 00000 f -0000000118 00000 f -0000179687 00000 n -0000000119 00000 f -0000000120 00000 f -0000000121 00000 f -0000000122 00000 f -0000000123 00000 f -0000000124 00000 f -0000000127 00000 f -0000179953 00000 n -0000179985 00000 n -0000000128 00000 f -0000000129 00000 f -0000000130 00000 f -0000000131 00000 f -0000000132 00000 f -0000000133 00000 f -0000000134 00000 f -0000000135 00000 f -0000000136 00000 f -0000000137 00000 f -0000000138 00000 f -0000000139 00000 f -0000000000 00000 f -0000179761 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000179835 00000 n -0000179867 00000 n -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000000000 00000 f -0000044989 00000 n -0000180653 00000 n -0000043646 00000 n -0000045295 00000 n -0000045181 00000 n -0000044253 00000 n -0000044425 00000 n -0000044475 00000 n -0000045063 00000 n -0000045095 00000 n -0000045371 00000 n -0000045743 00000 n -0000046721 00000 n -0000052837 00000 n -0000053300 00000 n -0000071520 00000 n -0000098254 00000 n -0000121507 00000 n -0000129082 00000 n -0000132781 00000 n -0000145416 00000 n -0000162249 00000 n -0000180680 00000 n -trailer <]>> startxref 180863 %%EOF \ No newline at end of file diff --git a/library/font_awesome/src/3.2.1/assets/js/ZeroClipboard-1.1.7.min.js b/library/font_awesome/src/3.2.1/assets/js/ZeroClipboard-1.1.7.min.js deleted file mode 100644 index 32535fddf..000000000 --- a/library/font_awesome/src/3.2.1/assets/js/ZeroClipboard-1.1.7.min.js +++ /dev/null @@ -1,8 +0,0 @@ -/*! - * zeroclipboard - * The Zero Clipboard library provides an easy way to copy text to the clipboard using an invisible Adobe Flash movie, and a JavaScript interface. - * Copyright 2012 Jon Rohan, James M. Greene, . - * Released under the MIT license - * http://jonrohan.github.com/ZeroClipboard/ - * v1.1.7 - */(function(){"use strict";var a=function(a,b){var c=a.style[b];a.currentStyle?c=a.currentStyle[b]:window.getComputedStyle&&(c=document.defaultView.getComputedStyle(a,null).getPropertyValue(b));if(c=="auto"&&b=="cursor"){var d=["a"];for(var e=0;e=0?"&":"?")+"nocache="+(new Date).getTime()},i=function(a){var b=[];return a.trustedDomains&&(typeof a.trustedDomains=="string"?b.push("trustedDomain="+a.trustedDomains):b.push("trustedDomain="+a.trustedDomains.join(","))),b.join("&")},j=function(a,b){if(b.indexOf)return b.indexOf(a);for(var c=0,d=b.length;c ';b=document.createElement("div"),b.id="global-zeroclipboard-html-bridge",b.setAttribute("class","global-zeroclipboard-container"),b.setAttribute("data-clipboard-ready",!1),b.style.position="absolute",b.style.left="-9999px",b.style.top="-9999px",b.style.width="15px",b.style.height="15px",b.style.zIndex="9999",b.innerHTML=c,document.body.appendChild(b)}a.htmlBridge=b,a.flashBridge=document["global-zeroclipboard-flash-bridge"]||b.children[0].lastElementChild};l.prototype.resetBridge=function(){this.htmlBridge.style.left="-9999px",this.htmlBridge.style.top="-9999px",this.htmlBridge.removeAttribute("title"),this.htmlBridge.removeAttribute("data-clipboard-text"),f(m,this.options.activeClass),m=null,this.options.text=null},l.prototype.ready=function(){var a=this.htmlBridge.getAttribute("data-clipboard-ready");return a==="true"||a===!0},l.prototype.reposition=function(){if(!m)return!1;var a=g(m);this.htmlBridge.style.top=a.top+"px",this.htmlBridge.style.left=a.left+"px",this.htmlBridge.style.width=a.width+"px",this.htmlBridge.style.height=a.height+"px",this.htmlBridge.style.zIndex=a.zIndex+1,this.setSize(a.width,a.height)},l.dispatch=function(a,b){l.prototype._singleton.receiveEvent(a,b)},l.prototype.on=function(a,b){var c=a.toString().split(/\s/g);for(var d=0;d=b))this.iframe=h(' - -

  • - -
  • - -
  • - -
  • - -
    -
    - - -
    - -
    -
    -
    -
    - Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! -
    -
    -
    -
    -
    -
    -
    - -

    - Print this page to PDF for the complete set of vectors. Or to use on the desktop, install FontAwesome.otf and copy - and paste the icons (not the unicode) directly into your designs. -

    - -
    -
    -
    - -
    -
    -
    - - - - -
    - -
    - - icon-glass - (&#xf000;) -
    - -
    - - icon-music - (&#xf001;) -
    - -
    - - icon-search - (&#xf002;) -
    - -
    - - icon-envelope-alt - (&#xf003;) -
    - -
    - - icon-heart - (&#xf004;) -
    - -
    - - icon-star - (&#xf005;) -
    - -
    - - icon-star-empty - (&#xf006;) -
    - -
    - - icon-user - (&#xf007;) -
    - -
    - - icon-film - (&#xf008;) -
    - -
    - - icon-th-large - (&#xf009;) -
    - -
    - - icon-th - (&#xf00a;) -
    - -
    - - icon-th-list - (&#xf00b;) -
    - -
    - - icon-ok - (&#xf00c;) -
    - -
    - - icon-remove - (&#xf00d;) -
    - -
    - - icon-zoom-in - (&#xf00e;) -
    - -
    - - icon-zoom-out - (&#xf010;) -
    - -
    - - icon-off - (&#xf011;) -
    - -
    - - icon-signal - (&#xf012;) -
    - -
    - - icon-cog - (&#xf013;) -
    - -
    - - icon-trash - (&#xf014;) -
    - -
    - - icon-home - (&#xf015;) -
    - -
    - - icon-file-alt - (&#xf016;) -
    - -
    - - icon-time - (&#xf017;) -
    - -
    - - icon-road - (&#xf018;) -
    - -
    - - icon-download-alt - (&#xf019;) -
    - -
    - - icon-download - (&#xf01a;) -
    - -
    - - icon-upload - (&#xf01b;) -
    - -
    - - icon-inbox - (&#xf01c;) -
    - -
    - - icon-play-circle - (&#xf01d;) -
    - -
    - - icon-repeat - (&#xf01e;) -
    - -
    - - icon-refresh - (&#xf021;) -
    - -
    - - icon-list-alt - (&#xf022;) -
    - -
    - - icon-lock - (&#xf023;) -
    - -
    - - icon-flag - (&#xf024;) -
    - -
    - - icon-headphones - (&#xf025;) -
    - -
    - - icon-volume-off - (&#xf026;) -
    - -
    - - icon-volume-down - (&#xf027;) -
    - -
    - - icon-volume-up - (&#xf028;) -
    - -
    - - icon-qrcode - (&#xf029;) -
    - -
    - - icon-barcode - (&#xf02a;) -
    - -
    - - icon-tag - (&#xf02b;) -
    - -
    - - icon-tags - (&#xf02c;) -
    - -
    - - icon-book - (&#xf02d;) -
    - -
    - - icon-bookmark - (&#xf02e;) -
    - -
    - - icon-print - (&#xf02f;) -
    - -
    - - icon-camera - (&#xf030;) -
    - -
    - - icon-font - (&#xf031;) -
    - -
    - - icon-bold - (&#xf032;) -
    - -
    - - icon-italic - (&#xf033;) -
    - -
    - - icon-text-height - (&#xf034;) -
    - -
    - - icon-text-width - (&#xf035;) -
    - -
    - - icon-align-left - (&#xf036;) -
    - -
    - - icon-align-center - (&#xf037;) -
    - -
    - - icon-align-right - (&#xf038;) -
    - -
    - - icon-align-justify - (&#xf039;) -
    - -
    - - icon-list - (&#xf03a;) -
    - -
    - - icon-indent-left - (&#xf03b;) -
    - -
    - - icon-indent-right - (&#xf03c;) -
    - -
    - - icon-facetime-video - (&#xf03d;) -
    - -
    - - icon-picture - (&#xf03e;) -
    - -
    - - icon-pencil - (&#xf040;) -
    - -
    - - icon-map-marker - (&#xf041;) -
    - -
    - - icon-adjust - (&#xf042;) -
    - -
    - - icon-tint - (&#xf043;) -
    - -
    - - icon-edit - (&#xf044;) -
    - -
    - - icon-share - (&#xf045;) -
    - -
    - - icon-check - (&#xf046;) -
    - -
    - - icon-move - (&#xf047;) -
    - -
    - - icon-step-backward - (&#xf048;) -
    - -
    - - icon-fast-backward - (&#xf049;) -
    - -
    - - icon-backward - (&#xf04a;) -
    - -
    - - icon-play - (&#xf04b;) -
    - -
    - - icon-pause - (&#xf04c;) -
    - -
    - - icon-stop - (&#xf04d;) -
    - -
    - - icon-forward - (&#xf04e;) -
    - -
    - - icon-fast-forward - (&#xf050;) -
    - -
    - - icon-step-forward - (&#xf051;) -
    - -
    - - icon-eject - (&#xf052;) -
    - -
    - - icon-chevron-left - (&#xf053;) -
    - -
    - - icon-chevron-right - (&#xf054;) -
    - -
    - - icon-plus-sign - (&#xf055;) -
    - -
    - - icon-minus-sign - (&#xf056;) -
    - -
    - - icon-remove-sign - (&#xf057;) -
    - -
    - - icon-ok-sign - (&#xf058;) -
    - -
    - - icon-question-sign - (&#xf059;) -
    - -
    - - icon-info-sign - (&#xf05a;) -
    - -
    - - icon-screenshot - (&#xf05b;) -
    - -
    - - icon-remove-circle - (&#xf05c;) -
    - -
    - - icon-ok-circle - (&#xf05d;) -
    - -
    - - icon-ban-circle - (&#xf05e;) -
    - -
    - - icon-arrow-left - (&#xf060;) -
    - -
    - - icon-arrow-right - (&#xf061;) -
    - -
    - - icon-arrow-up - (&#xf062;) -
    - -
    - - icon-arrow-down - (&#xf063;) -
    - -
    - - icon-share-alt - (&#xf064;) -
    - -
    - - icon-resize-full - (&#xf065;) -
    - -
    - - icon-resize-small - (&#xf066;) -
    - -
    - - icon-plus - (&#xf067;) -
    - -
    - - icon-minus - (&#xf068;) -
    - -
    - - icon-asterisk - (&#xf069;) -
    - -
    - - icon-exclamation-sign - (&#xf06a;) -
    - -
    - - icon-gift - (&#xf06b;) -
    - -
    - - icon-leaf - (&#xf06c;) -
    - -
    - - icon-fire - (&#xf06d;) -
    - -
    - - icon-eye-open - (&#xf06e;) -
    - -
    - - icon-eye-close - (&#xf070;) -
    - -
    - - icon-warning-sign - (&#xf071;) -
    - -
    - - icon-plane - (&#xf072;) -
    - -
    - - icon-calendar - (&#xf073;) -
    - -
    - - icon-random - (&#xf074;) -
    - -
    - - icon-comment - (&#xf075;) -
    - -
    - - icon-magnet - (&#xf076;) -
    - -
    - - icon-chevron-up - (&#xf077;) -
    - -
    - - icon-chevron-down - (&#xf078;) -
    - -
    - - icon-retweet - (&#xf079;) -
    - -
    - - icon-shopping-cart - (&#xf07a;) -
    - -
    - - icon-folder-close - (&#xf07b;) -
    - -
    - - icon-folder-open - (&#xf07c;) -
    - -
    - - icon-resize-vertical - (&#xf07d;) -
    - -
    - - icon-resize-horizontal - (&#xf07e;) -
    - -
    - - icon-bar-chart - (&#xf080;) -
    - -
    - - icon-twitter-sign - (&#xf081;) -
    - -
    - - icon-facebook-sign - (&#xf082;) -
    - -
    - - icon-camera-retro - (&#xf083;) -
    - -
    - - icon-key - (&#xf084;) -
    - -
    - - icon-cogs - (&#xf085;) -
    - -
    - - icon-comments - (&#xf086;) -
    - -
    - - icon-thumbs-up-alt - (&#xf087;) -
    - -
    - - icon-thumbs-down-alt - (&#xf088;) -
    - -
    - - icon-star-half - (&#xf089;) -
    - -
    - - icon-heart-empty - (&#xf08a;) -
    - -
    - - icon-signout - (&#xf08b;) -
    - -
    - - icon-linkedin-sign - (&#xf08c;) -
    - -
    - - icon-pushpin - (&#xf08d;) -
    - -
    - - icon-external-link - (&#xf08e;) -
    - -
    - - icon-signin - (&#xf090;) -
    - -
    - - icon-trophy - (&#xf091;) -
    - -
    - - icon-github-sign - (&#xf092;) -
    - -
    - - icon-upload-alt - (&#xf093;) -
    - -
    - - icon-lemon - (&#xf094;) -
    - -
    - - icon-phone - (&#xf095;) -
    - -
    - - icon-check-empty - (&#xf096;) -
    - -
    - - icon-bookmark-empty - (&#xf097;) -
    - -
    - - icon-phone-sign - (&#xf098;) -
    - -
    - - icon-twitter - (&#xf099;) -
    - -
    - - icon-facebook - (&#xf09a;) -
    - -
    - - icon-github - (&#xf09b;) -
    - -
    - - icon-unlock - (&#xf09c;) -
    - -
    - - icon-credit-card - (&#xf09d;) -
    - -
    - - icon-rss - (&#xf09e;) -
    - -
    - - icon-hdd - (&#xf0a0;) -
    - -
    - - icon-bullhorn - (&#xf0a1;) -
    - -
    - - icon-bell - (&#xf0a2;) -
    - -
    - - icon-certificate - (&#xf0a3;) -
    - -
    - - icon-hand-right - (&#xf0a4;) -
    - -
    - - icon-hand-left - (&#xf0a5;) -
    - -
    - - icon-hand-up - (&#xf0a6;) -
    - -
    - - icon-hand-down - (&#xf0a7;) -
    - -
    - - icon-circle-arrow-left - (&#xf0a8;) -
    - -
    - - icon-circle-arrow-right - (&#xf0a9;) -
    - -
    - - icon-circle-arrow-up - (&#xf0aa;) -
    - -
    - - icon-circle-arrow-down - (&#xf0ab;) -
    - -
    - - icon-globe - (&#xf0ac;) -
    - -
    - - icon-wrench - (&#xf0ad;) -
    - -
    - - icon-tasks - (&#xf0ae;) -
    - -
    - - icon-filter - (&#xf0b0;) -
    - -
    - - icon-briefcase - (&#xf0b1;) -
    - -
    - - icon-fullscreen - (&#xf0b2;) -
    - -
    - - icon-group - (&#xf0c0;) -
    - -
    - - icon-link - (&#xf0c1;) -
    - -
    - - icon-cloud - (&#xf0c2;) -
    - -
    - - icon-beaker - (&#xf0c3;) -
    - -
    - - icon-cut - (&#xf0c4;) -
    - -
    - - icon-copy - (&#xf0c5;) -
    - -
    - - icon-paper-clip - (&#xf0c6;) -
    - -
    - - icon-save - (&#xf0c7;) -
    - -
    - - icon-sign-blank - (&#xf0c8;) -
    - -
    - - icon-reorder - (&#xf0c9;) -
    - -
    - - icon-list-ul - (&#xf0ca;) -
    - -
    - - icon-list-ol - (&#xf0cb;) -
    - -
    - - icon-strikethrough - (&#xf0cc;) -
    - -
    - - icon-underline - (&#xf0cd;) -
    - -
    - - icon-table - (&#xf0ce;) -
    - -
    - - icon-magic - (&#xf0d0;) -
    - -
    - - icon-truck - (&#xf0d1;) -
    - -
    - - icon-pinterest - (&#xf0d2;) -
    - -
    - - icon-pinterest-sign - (&#xf0d3;) -
    - -
    - - icon-google-plus-sign - (&#xf0d4;) -
    - -
    - - icon-google-plus - (&#xf0d5;) -
    - -
    - - icon-money - (&#xf0d6;) -
    - -
    - - icon-caret-down - (&#xf0d7;) -
    - -
    - - icon-caret-up - (&#xf0d8;) -
    - -
    - - icon-caret-left - (&#xf0d9;) -
    - -
    - - icon-caret-right - (&#xf0da;) -
    - -
    - - icon-columns - (&#xf0db;) -
    - -
    - - icon-sort - (&#xf0dc;) -
    - -
    - - icon-sort-down - (&#xf0dd;) -
    - -
    - - icon-sort-up - (&#xf0de;) -
    - -
    - - icon-envelope - (&#xf0e0;) -
    - -
    - - icon-linkedin - (&#xf0e1;) -
    - -
    - - icon-undo - (&#xf0e2;) -
    - -
    - - icon-legal - (&#xf0e3;) -
    - -
    - - icon-dashboard - (&#xf0e4;) -
    - -
    - - icon-comment-alt - (&#xf0e5;) -
    - -
    - - icon-comments-alt - (&#xf0e6;) -
    - -
    - - icon-bolt - (&#xf0e7;) -
    - -
    - - icon-sitemap - (&#xf0e8;) -
    - -
    - - icon-umbrella - (&#xf0e9;) -
    - -
    - - icon-paste - (&#xf0ea;) -
    - -
    - - icon-lightbulb - (&#xf0eb;) -
    - -
    - - icon-exchange - (&#xf0ec;) -
    - -
    - - icon-cloud-download - (&#xf0ed;) -
    - -
    - - icon-cloud-upload - (&#xf0ee;) -
    - -
    - - icon-user-md - (&#xf0f0;) -
    - -
    - - icon-stethoscope - (&#xf0f1;) -
    - -
    - - icon-suitcase - (&#xf0f2;) -
    - -
    - - icon-bell-alt - (&#xf0f3;) -
    - -
    - - icon-coffee - (&#xf0f4;) -
    - -
    - - icon-food - (&#xf0f5;) -
    - -
    - - icon-file-text-alt - (&#xf0f6;) -
    - -
    - - icon-building - (&#xf0f7;) -
    - -
    - - icon-hospital - (&#xf0f8;) -
    - -
    - - icon-ambulance - (&#xf0f9;) -
    - -
    - - icon-medkit - (&#xf0fa;) -
    - -
    - - icon-fighter-jet - (&#xf0fb;) -
    - -
    - - icon-beer - (&#xf0fc;) -
    - -
    - - icon-h-sign - (&#xf0fd;) -
    - -
    - - icon-plus-sign-alt - (&#xf0fe;) -
    - -
    - - icon-double-angle-left - (&#xf100;) -
    - -
    - - icon-double-angle-right - (&#xf101;) -
    - -
    - - icon-double-angle-up - (&#xf102;) -
    - -
    - - icon-double-angle-down - (&#xf103;) -
    - -
    - - icon-angle-left - (&#xf104;) -
    - -
    - - icon-angle-right - (&#xf105;) -
    - -
    - - icon-angle-up - (&#xf106;) -
    - -
    - - icon-angle-down - (&#xf107;) -
    - -
    - - icon-desktop - (&#xf108;) -
    - -
    - - icon-laptop - (&#xf109;) -
    - -
    - - icon-tablet - (&#xf10a;) -
    - -
    - - icon-mobile-phone - (&#xf10b;) -
    - -
    - - icon-circle-blank - (&#xf10c;) -
    - -
    - - icon-quote-left - (&#xf10d;) -
    - -
    - - icon-quote-right - (&#xf10e;) -
    - -
    - - icon-spinner - (&#xf110;) -
    - -
    - - icon-circle - (&#xf111;) -
    - -
    - - icon-reply - (&#xf112;) -
    - -
    - - icon-github-alt - (&#xf113;) -
    - -
    - - icon-folder-close-alt - (&#xf114;) -
    - -
    - - icon-folder-open-alt - (&#xf115;) -
    - -
    - - icon-expand-alt - (&#xf116;) -
    - -
    - - icon-collapse-alt - (&#xf117;) -
    - -
    - - icon-smile - (&#xf118;) -
    - -
    - - icon-frown - (&#xf119;) -
    - -
    - - icon-meh - (&#xf11a;) -
    - -
    - - icon-gamepad - (&#xf11b;) -
    - -
    - - icon-keyboard - (&#xf11c;) -
    - -
    - - icon-flag-alt - (&#xf11d;) -
    - -
    - - icon-flag-checkered - (&#xf11e;) -
    - -
    - - icon-terminal - (&#xf120;) -
    - -
    - - icon-code - (&#xf121;) -
    - -
    - - icon-reply-all - (&#xf122;) -
    - -
    - - icon-mail-reply-all - (&#xf122;) -
    - -
    - - icon-star-half-empty - (&#xf123;) -
    - -
    - - icon-location-arrow - (&#xf124;) -
    - -
    - - icon-crop - (&#xf125;) -
    - -
    - - icon-code-fork - (&#xf126;) -
    - -
    - - icon-unlink - (&#xf127;) -
    - -
    - - icon-question - (&#xf128;) -
    - -
    - - icon-info - (&#xf129;) -
    - -
    - - icon-exclamation - (&#xf12a;) -
    - -
    - - icon-superscript - (&#xf12b;) -
    - -
    - - icon-subscript - (&#xf12c;) -
    - -
    - - icon-eraser - (&#xf12d;) -
    - -
    - - icon-puzzle-piece - (&#xf12e;) -
    - -
    - - icon-microphone - (&#xf130;) -
    - -
    - - icon-microphone-off - (&#xf131;) -
    - -
    - - icon-shield - (&#xf132;) -
    - -
    - - icon-calendar-empty - (&#xf133;) -
    - -
    - - icon-fire-extinguisher - (&#xf134;) -
    - -
    - - icon-rocket - (&#xf135;) -
    - -
    - - icon-maxcdn - (&#xf136;) -
    - -
    - - icon-chevron-sign-left - (&#xf137;) -
    - -
    - - icon-chevron-sign-right - (&#xf138;) -
    - -
    - - icon-chevron-sign-up - (&#xf139;) -
    - -
    - - icon-chevron-sign-down - (&#xf13a;) -
    - -
    - - icon-html5 - (&#xf13b;) -
    - -
    - - icon-css3 - (&#xf13c;) -
    - -
    - - icon-anchor - (&#xf13d;) -
    - -
    - - icon-unlock-alt - (&#xf13e;) -
    - -
    - - icon-bullseye - (&#xf140;) -
    - -
    - - icon-ellipsis-horizontal - (&#xf141;) -
    - -
    - - icon-ellipsis-vertical - (&#xf142;) -
    - -
    - - icon-rss-sign - (&#xf143;) -
    - -
    - - icon-play-sign - (&#xf144;) -
    - -
    - - icon-ticket - (&#xf145;) -
    - -
    - - icon-minus-sign-alt - (&#xf146;) -
    - -
    - - icon-check-minus - (&#xf147;) -
    - -
    - - icon-level-up - (&#xf148;) -
    - -
    - - icon-level-down - (&#xf149;) -
    - -
    - - icon-check-sign - (&#xf14a;) -
    - -
    - - icon-edit-sign - (&#xf14b;) -
    - -
    - - icon-external-link-sign - (&#xf14c;) -
    - -
    - - icon-share-sign - (&#xf14d;) -
    - -
    - - icon-compass - (&#xf14e;) -
    - -
    - - icon-collapse - (&#xf150;) -
    - -
    - - icon-collapse-top - (&#xf151;) -
    - -
    - - icon-expand - (&#xf152;) -
    - -
    - - icon-eur - (&#xf153;) -
    - -
    - - icon-gbp - (&#xf154;) -
    - -
    - - icon-usd - (&#xf155;) -
    - -
    - - icon-inr - (&#xf156;) -
    - -
    - - icon-jpy - (&#xf157;) -
    - -
    - - icon-cny - (&#xf158;) -
    - -
    - - icon-krw - (&#xf159;) -
    - -
    - - icon-btc - (&#xf15a;) -
    - -
    - - icon-file - (&#xf15b;) -
    - -
    - - icon-file-text - (&#xf15c;) -
    - -
    - - icon-sort-by-alphabet - (&#xf15d;) -
    - -
    - - icon-sort-by-alphabet-alt - (&#xf15e;) -
    - -
    - - icon-sort-by-attributes - (&#xf160;) -
    - -
    - - icon-sort-by-attributes-alt - (&#xf161;) -
    - -
    - - icon-sort-by-order - (&#xf162;) -
    - -
    - - icon-sort-by-order-alt - (&#xf163;) -
    - -
    - - icon-thumbs-up - (&#xf164;) -
    - -
    - - icon-thumbs-down - (&#xf165;) -
    - -
    - - icon-youtube-sign - (&#xf166;) -
    - -
    - - icon-youtube - (&#xf167;) -
    - -
    - - icon-xing - (&#xf168;) -
    - -
    - - icon-xing-sign - (&#xf169;) -
    - -
    - - icon-youtube-play - (&#xf16a;) -
    - -
    - - icon-dropbox - (&#xf16b;) -
    - -
    - - icon-stackexchange - (&#xf16c;) -
    - -
    - - icon-instagram - (&#xf16d;) -
    - -
    - - icon-flickr - (&#xf16e;) -
    - -
    - - icon-adn - (&#xf170;) -
    - -
    - - icon-bitbucket - (&#xf171;) -
    - -
    - - icon-bitbucket-sign - (&#xf172;) -
    - -
    - - icon-tumblr - (&#xf173;) -
    - -
    - - icon-tumblr-sign - (&#xf174;) -
    - -
    - - icon-long-arrow-down - (&#xf175;) -
    - -
    - - icon-long-arrow-up - (&#xf176;) -
    - -
    - - icon-long-arrow-left - (&#xf177;) -
    - -
    - - icon-long-arrow-right - (&#xf178;) -
    - -
    - - icon-apple - (&#xf179;) -
    - -
    - - icon-windows - (&#xf17a;) -
    - -
    - - icon-android - (&#xf17b;) -
    - -
    - - icon-linux - (&#xf17c;) -
    - -
    - - icon-dribbble - (&#xf17d;) -
    - -
    - - icon-skype - (&#xf17e;) -
    - -
    - - icon-foursquare - (&#xf180;) -
    - -
    - - icon-trello - (&#xf181;) -
    - -
    - - icon-female - (&#xf182;) -
    - -
    - - icon-male - (&#xf183;) -
    - -
    - - icon-gittip - (&#xf184;) -
    - -
    - - icon-sun - (&#xf185;) -
    - -
    - - icon-moon - (&#xf186;) -
    - -
    - - icon-archive - (&#xf187;) -
    - -
    - - icon-bug - (&#xf188;) -
    - -
    - - icon-vk - (&#xf189;) -
    - -
    - - icon-weibo - (&#xf18a;) -
    - -
    - - icon-renren - (&#xf18b;) -
    - -
    - -
    - -
    - - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/community/index.html b/library/font_awesome/src/3.2.1/community/index.html deleted file mode 100644 index 616b039c4..000000000 --- a/library/font_awesome/src/3.2.1/community/index.html +++ /dev/null @@ -1,363 +0,0 @@ - - - - - - - - - - The Font Awesome Community - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - -
    -
    -

      Community

    -

    Lots of ways to get involved with Font Awesome

    -
    -
    - -
    -
    - -
    -
    - - -
    - -
    -
    -
    -
    - Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! -
    -
    -
    -
    -
    -
    -
    - -

    - Font Awesome has a vibrant community of folks helping each other out. You can - get support, - report bugs, - request new icons, - submit pull requests, and - check upcoming milestones. -

    - -
    -
    -
    - -
    -
    -
    - - -
    - -

    - Having trouble getting Font Awesome up and running? Something not working the way you think it should? I hate that - I don't have time to answer Font Awesome support emails anymore. So here are some things you might wanna do: -

    -
      -
    1. - Make sure you've read the latest version of how to get started. - It's been updated recently to make Font Awesome even easier to use. -
    2. -
    3. - Check out the existing questions tagged as - Font Awesome over on Stack Overflow. Other folks might have had the same question you've had. -
    4. -
    5. - Can't find the answer to your question on Stack Overflow? - Ask a new question, then - send me an email and I might be able to take a look. -
    6. -
    -
    - -
    - -

    - Found a problem with Font Awesome? Feel free to submit an issue on the GitHub project. But please keep the following in mind: -

    -
      -
    1. Please be nice. Font Awesome is a happy place.
    2. -
    3. Please search to see if your icon request already exists.
    4. -
    5. - Before opening any issue, please read the generic issue - guidelines, by Nicolas Gallagher. -
    6. -
    7. - After doing everything above, feel free to - submit an issue. -
    8. -
    -
    - -
    - -

    - New icons mostly start as requests by the - Font Awesome community on GitHub. Want to request a new - icon? Here are some things to keep in mind: -

    -
      -
    1. Please be nice. Font Awesome is a happy place.
    2. -
    3. Please search to see if your icon request already exists.
    4. -
    5. - Please and thank you if you include the following: -
        -
      • - Title your new issue - Icon request: icon-name. -
      • -
      • Include a few use cases for your requested icon. How do you plan on using it?
      • -
      • Attach a single color image or two that represent the idea you're going for.
      • -
      -
    6. -
    7. - Concrete objects make good icons, since abstract concepts are, well, abstract. It's harder to make an icon - to represent happiness. It's easier to make a smiley face. -
    8. -
    -
    - -
    - - Found a way to solve a bug in Font Awesome? Want to contribute new features? Here are a few things to remember: -
      -
    1. Please submit all pull requests against *-wip branches.
    2. -
    3. All pull requests submitted against master will be summarily closed and this guide referenced.
    4. -
    5. - After doing everything above, feel free to - submit a pull request. -
    6. -
    -
    - -
    - -

    - Want to keep up with what's planned for Font Awesome? Check out our - milestones on the GitHub project. -

    -
    - - -
    - -
    -
    -

    - Thanks to @robmadole and - @supercodepoet for icon design - review, advice, some Jekyll help, and being all around badass coders. -

    -
    -
    -

    - Thanks to @grantgordon and - @johnsmclay for developing and hosting - icnfnt, the best way to subset Font Awesome. -

    -
    -
    -

    - Thanks to MaxCDN for providing the excellent - BootstrapCDN, the fastest and easiest way to - get started with Font Awesome. -

    -
    -
    -
    - -
    - -

    - Hopefully you think Font Awesome is awesome. I've put hundreds of hours into the project to give back to the - open source community. If you'd like, here are a couple of ways you can tell me thanks for all my hard work. -

    -
    -
    -

    Tip me on Gittip

    -

    - Gittip is a great way to let developers know you appreciate their work. -

    -
    -
    -

    My Amazon Wish List

    -

    - Or pick something straight - from my wish list. Gift cards are great. -

    -
    -
    -
    - - -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/design.html b/library/font_awesome/src/3.2.1/design.html deleted file mode 100644 index 9c5830d74..000000000 --- a/library/font_awesome/src/3.2.1/design.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/library/font_awesome/src/3.2.1/examples/index.html b/library/font_awesome/src/3.2.1/examples/index.html deleted file mode 100644 index c0604c8c4..000000000 --- a/library/font_awesome/src/3.2.1/examples/index.html +++ /dev/null @@ -1,680 +0,0 @@ - - - - - - - - - - Font Awesome Examples - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - -
    -
    -

      Examples

    -

    Lots of easy ways to use Font Awesome

    -
    -
    - -
    -
    - -
    -
    - - -
    - -
    -
    -
    -
    - Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! -
    -
    -
    -
    -
    -
    -
    - -

    - After you get up and running, you can place Font Awesome icons just about - anywhere with the <i> tag. - Many examples appreciatively re-used from the Bootstrap documentation. -

    - -
    -
    -
    - -
    -
    -
    - - -
    - -
    -
    -

    Rotated and Flipped Icons

    -
    -   normal
    -   icon-rotate-90
    -   icon-rotate-180
    -   icon-rotate-270
    -   icon-flip-horizontal
    -   icon-flip-vertical -
    -
    -
    -

    Stacked Icons

    -
    - - - - - icon-twitter on icon-check-empty
    - - - - - icon-flag on icon-circle
    - - - - - icon-terminal on icon-sign-blank -
    -
    -
    -

    Better Bulleted Lists

    -
    -
      -
    • New bulleted lists
    • -
    • Fix some old bugs
    • -
    • And deal with arbitrary
    • -
    • Font sizes better
    • -
    -
    -
    -
    -
    - - -
    - -
    -
    -

    Place Font Awesome icons just about anywhere with the <i> tag.

    -
    -
    -
    -
    - icon-camera-retro -
    -
    -
    <i class="icon-camera-retro"></i> icon-camera-retro
    -
    -
    Icon classes are echoed via CSS :before.
    -
    -
    -
    - -
    - -
    -
    -

    - To increase the size of icons relative to its container, use icon-large, icon-2x, - icon-3x, or icon-4x. -

    -
    -
    -

    - Increase the icon size by using the icon-large (33% increase), icon-2x, - icon-3x, or icon-4x classes. -

    -
    -
    -

    icon-camera-retro

    -

    icon-camera-retro

    -

    icon-camera-retro

    -

    icon-camera-retro

    -
    -
    -
    <p><i class="icon-camera-retro icon-large"></i> icon-camera-retro</p>
    -<p><i class="icon-camera-retro icon-2x"></i> icon-camera-retro</p>
    -<p><i class="icon-camera-retro icon-3x"></i> icon-camera-retro</p>
    -<p><i class="icon-camera-retro icon-4x"></i> icon-camera-retro</p>
    -
    -
    - If your icons are getting chopped off on top and bottom, make sure you have - sufficient line-height. -
    -
    -
    -
    - -
    - -
    -
    -

    - Use icon-border and pull-right or pull-left for easy pull quotes or - article graphics. -

    -
    -
    -
    - - Use a few of the new styles together, and you've got easy pull quotes or a great introductory article image. - Or spinning icons for loading and refreshing content. Or fun big icons in multi-line buttons. You can combine all - of them in any combination to get lots of new possibilities. -
    -
    <i class="icon-quote-left icon-4x pull-left icon-muted"></i>
    -Use a few of the new styles together ... lots of new possibilities.
    -
    -
    - - Use a few of the new styles together, and you've got easy pull quotes or a great introductory article image. - Or spinning icons for loading and refreshing content. Or fun big icons in multi-line buttons. You can combine all - of them in any combination to get lots of new possibilities. -
    -
    <i class="icon-flag icon-4x pull-left icon-border"></i>
    -Use a few of the new styles together ... lots of new possibilities.
    -
    -
    -
    -
    - -
    - -
    - -
    -

    - Font Awesome icons work great in buttons. You can even combine them with larger icon styles, - pull-right and pull-left, and icon-spin. -

    -
    <a class="btn" href="#">
    -  <i class="icon-repeat"></i> Reload</a>
    -<a class="btn btn-success" href="#">
    -  <i class="icon-shopping-cart icon-large"></i> Checkout</a>
    -<a class="btn btn-large btn-primary" href="#">
    -  <i class="icon-comment"></i> Comment</a>
    -<a class="btn btn-small btn-info" href="#">
    -  <i class="icon-info-sign"></i> Info</a>
    -<a class="btn btn-danger" href="#">
    -  <i class="icon-trash icon-large"></i> Delete</a>
    -<a class="btn btn-small" href="#">
    -  <i class="icon-cog"></i> Settings</a>
    -<a class="btn btn-large btn-danger" href="#">
    -  <i class="icon-flag icon-2x pull-left"></i> Font Awesome<br>Version 3.2.1</a>
    -<a class="btn btn-primary" href="#">
    -  <i class="icon-refresh icon-spin"></i> Synchronizing Content...</a>
    -
    -
    -
    -
    - -
    - -
    -
    -

    -

    - - - - -
    -

    -
    -
    -
    <div class="btn-group">
    -  <a class="btn" href="#"><i class="icon-align-left"></i></a>
    -  <a class="btn" href="#"><i class="icon-align-center"></i></a>
    -  <a class="btn" href="#"><i class="icon-align-right"></i></a>
    -  <a class="btn" href="#"><i class="icon-align-justify"></i></a>
    -</div>
    -
    -
    -
    -
    - -
    - -
    -
    - -
    -
    -
    <div class="btn-group open">
    -  <a class="btn btn-primary" href="#"><i class="icon-user"></i> User</a>
    -  <a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#">
    -    <span class="icon-caret-down"></span></a>
    -  <ul class="dropdown-menu">
    -    <li><a href="#"><i class="icon-fixed-width icon-pencil"></i> Edit</a></li>
    -    <li><a href="#"><i class="icon-fixed-width icon-trash"></i> Delete</a></li>
    -    <li><a href="#"><i class="icon-fixed-width icon-ban-circle"></i> Ban</a></li>
    -    <li class="divider"></li>
    -    <li><a href="#"><i class="i"></i> Make admin</a></li>
    -  </ul>
    -</div>
    -
    -
    Don't forget to add the appropriate JavaScript to enable button dropdowns.
    -
    -
    -
    - -
    - -
    -
    -
    -
    -
      -
    • Bulleted lists (like this one)
    • -
    • Buttons
    • -
    • Button groups
    • -
    • Navigation
    • -
    • Prepended form inputs
    • -
    • …and many more with custom CSS
    • -
    -
    -
    -

    Easily replace individual bullets.

    -
    <ul class="icons-ul">
    -  <li><i class="icon-li icon-ok"></i>Bulleted lists (like this one)</li>
    -  <li><i class="icon-li icon-ok"></i>Buttons</li>
    -  <li><i class="icon-li icon-ok"></i>Button groups</li>
    -  <li><i class="icon-li icon-ok"></i>Navigation</li>
    -  <li><i class="icon-li icon-ok"></i>Prepended form inputs</li>
    -  <li><i class="icon-li icon-ok"></i>&hellip;and many more with custom CSS</li>
    -</ul>
    -
    -
    Make sure to NOT include any whitespace after the icon declaration.
    -
    -
    -
    - - - -
    - -
    -
    -
    -
    - - -
    -
    - - -
    -
    -
    -
    -
    <form>
    -  <div class="input-prepend">
    -    <span class="add-on"><i class="icon-envelope"></i></span>
    -    <input class="span2" type="text" placeholder="Email address">
    -  </div>
    -  <div class="input-prepend">
    -    <span class="add-on"><i class="icon-key"></i></span>
    -    <input class="span2" type="password" placeholder="Password">
    -  </div>
    -</form>
    -
    -
    -
    -
    - -
    - -
    -
    - Use the icon-spin class to get any icon to rotate. Works well with icon-spinner and - icon-refresh. -
    -
    -
    - Spinner icon when loading content... -
    -
    <i class="icon-spinner icon-spin icon-large"></i> Spinner icon when loading content...
    -
    -

    - CSS3 animations aren't supported in IE7 - IE9. -

    -
    -
    -
    - -
    - -
    -
    - A set of classes that can be used to arbitrarily rotate and flip icons. -
    -
    -
    -   normal
    -   icon-rotate-90
    -   icon-rotate-180
    -   icon-rotate-270
    -   icon-flip-horizontal
    -   icon-flip-vertical -
    -
    <i class="icon-shield"></i>&nbsp; normal<br>
    -<i class="icon-shield icon-rotate-90"></i>&nbsp; icon-rotate-90<br>
    -<i class="icon-shield icon-rotate-180"></i>&nbsp; icon-rotate-180<br>
    -<i class="icon-shield icon-rotate-270"></i>&nbsp; icon-rotate-270<br>
    -<i class="icon-shield icon-flip-horizontal"></i>&nbsp; icon-flip-horizontal<br>
    -<i class="icon-shield icon-flip-vertical"></i>&nbsp; icon-flip-vertical
    -
    -

    - Rotating and flipping icons aren't yet supported in IE7. -

    -
    -
    -
    - -
    - -
    -
    - A method for easily stacking multiple icons. Use the icon-stack class on the parent and - icon-stack-base for the bottom icon. -
    -
    -
    - - - - - icon-twitter on icon-check-empty
    - - - - - icon-flag on icon-circle
    - - - - - icon-terminal on icon-sign-blank
    - - - - - icon-camera on icon-ban-circle -
    -
    <span class="icon-stack">
    -  <i class="icon-check-empty icon-stack-base"></i>
    -  <i class="icon-twitter"></i>
    -</span>
    -icon-twitter on icon-check-empty<br>
    -<span class="icon-stack">
    -  <i class="icon-circle icon-stack-base"></i>
    -  <i class="icon-flag icon-light"></i>
    -</span>
    -icon-flag on icon-circle<br>
    -<span class="icon-stack">
    -  <i class="icon-sign-blank icon-stack-base"></i>
    -  <i class="icon-terminal icon-light"></i>
    -</span>
    -icon-terminal on icon-sign-blank<br>
    -<span class="icon-stack">
    -  <i class="icon-camera"></i>
    -  <i class="icon-ban-circle icon-stack-base text-error"></i>
    -</span>
    -icon-camera on icon-ban-circle
    -
    -
    -
    -
    - -
    - -
    -
    -

    Anything you can do with CSS font styles, you can do with Font Awesome.

    -
    -
    -

    Star Ratings (inspired by CSS Tricks)

    -
    - - - -
    -
    -
    -
    - - -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/get-started/index.html b/library/font_awesome/src/3.2.1/get-started/index.html deleted file mode 100644 index ea9830ac0..000000000 --- a/library/font_awesome/src/3.2.1/get-started/index.html +++ /dev/null @@ -1,308 +0,0 @@ - - - - - - - - - - Get Started with Font Awesome - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - -
    -
    -

      Get Started

    -

    Easy ways to get Font Awesome 3.2.1 onto your website

    -
    -
    - -
    -
    - -
    -
    - - -
    - -
    -
    -
    -
    - Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! -
    -
    -
    -
    -
    -
    -
    - -

    - Setting up Font Awesome can be as simple as adding two lines of code to your website, or you can be a pro and - customize the LESS yourself! Font Awesome even plays nicely with - Bootstrap! -

    - -
    -
    -
    - -
    -
    -
    - - -
    - -

    Add Font Awesome + Bootstrap into your website with two lines of code. You don't even have to download or install anything!

    -
      -
    1. - Paste the following code into the <head> section of your site's HTML. -
      <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css" rel="stylesheet">
      -<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
      -
      -
      - Want to use Font Awesome by itself without Bootstrap? Just don't include the first line. -
      -
    2. -
    3. - Pat yourself on the back for your scalable-vector-icons-on-the-website - judo solution in two lines of code. -
    4. -
    5. - Check out the examples to start using Font Awesome! -
    6. -
    -
    - -
    - -

    Use this method to get the default Font Awesome CSS with the default Bootstrap CSS.

    -
      -
    1. Copy the font-awesome directory into your project.
    2. -
    3. - In the <head> of your html, reference the location to your font-awesome.min.css. -
      <link rel="stylesheet" href="path/to/bootstrap/css/bootstrap.min.css">
      -<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
      -
      -
    4. -
    5. Check out the examples to start using Font Awesome!
    6. -
    -
    - -
    - -

    Use this method to customize Font Awesome and Bootstrap 2.3.2 using LESS.

    -
      -
    1. Copy the font-awesome directory into your project.
    2. -
    3. Open your project's bootstrap/bootstrap.less and replace -
      @import "sprites.less";
      -
      - with -
      @import "path/to/font-awesome/less/font-awesome.less";
      -
      -
    4. -
    5. - Open your project's font-awesome/variables.less and edit the @FontAwesomePath variable to point to your font directory. -
      @FontAwesomePath:   "../font";
      -
      -

      The font path is relative from your compiled CSS directory.

      -
    6. -
    7. Re-compile your LESS if using a static compiler. Otherwise, you should be good to go.
    8. -
    9. Check out the examples to start using Font Awesome!
    10. -
    -
    - -
    - -

    Font Awesome works just as well without Bootstrap.

    -
      -
    1. Copy the font-awesome directory into your project.
    2. -
    3. Follow the above directions and skip the Bootstrap parts.
    4. -
    5. Open your project's font-awesome.less or font-awesome.min.css and edit the font location to point it to your font directory (see above examples).
    6. -
    7. Check out the examples to start using Font Awesome!
    8. -
    -
    - -
    - -

    Font Awesome supports IE7. If you need it, you have my condolences.

    -
      -
    1. Get Font Awesome working properly in a modern browser.
    2. -
    3. Copy font-awesome-ie7.min.css into your project.
    4. -
    5. - In the <head> of your html, reference the location to your font-awesome-ie7.min.css. -
      <link rel="stylesheet" href="path/to/bootstrap/css/bootstrap.min.css">
      -<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
      -<!--[if IE 7]>
      -  <link rel="stylesheet" href="path/to/font-awesome/css/font-awesome-ie7.min.css">
      -<![endif]-->
      -
      -
    6. -
    7. Go complain to whoever decided your project needs IE7 support.
    8. -
    -
    - -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/adjust/index.html b/library/font_awesome/src/3.2.1/icon/adjust/index.html deleted file mode 100644 index 21482f25c..000000000 --- a/library/font_awesome/src/3.2.1/icon/adjust/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-adjust: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-adjust - - · - Unicode: f042 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-adjust -
    -
    -
    <i class="icon-adjust"></i> icon-adjust
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/adn/index.html b/library/font_awesome/src/3.2.1/icon/adn/index.html deleted file mode 100644 index 9ecc4ab34..000000000 --- a/library/font_awesome/src/3.2.1/icon/adn/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-adn: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-adn - - · - Unicode: f170 · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-adn -
    -
    -
    <i class="icon-adn"></i> icon-adn
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/align-center/index.html b/library/font_awesome/src/3.2.1/icon/align-center/index.html deleted file mode 100644 index 1c1741075..000000000 --- a/library/font_awesome/src/3.2.1/icon/align-center/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-align-center: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-align-center - - · - Unicode: f037 · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-align-center -
    -
    -
    <i class="icon-align-center"></i> icon-align-center
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/align-justify/index.html b/library/font_awesome/src/3.2.1/icon/align-justify/index.html deleted file mode 100644 index 2cae1cd47..000000000 --- a/library/font_awesome/src/3.2.1/icon/align-justify/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-align-justify: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-align-justify - - · - Unicode: f039 · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-align-justify -
    -
    -
    <i class="icon-align-justify"></i> icon-align-justify
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/align-left/index.html b/library/font_awesome/src/3.2.1/icon/align-left/index.html deleted file mode 100644 index d5130fe11..000000000 --- a/library/font_awesome/src/3.2.1/icon/align-left/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-align-left: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-align-left - - · - Unicode: f036 · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-align-left -
    -
    -
    <i class="icon-align-left"></i> icon-align-left
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/align-right/index.html b/library/font_awesome/src/3.2.1/icon/align-right/index.html deleted file mode 100644 index 77cc1f648..000000000 --- a/library/font_awesome/src/3.2.1/icon/align-right/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-align-right: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-align-right - - · - Unicode: f038 · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-align-right -
    -
    -
    <i class="icon-align-right"></i> icon-align-right
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/ambulance/index.html b/library/font_awesome/src/3.2.1/icon/ambulance/index.html deleted file mode 100644 index 2923d5d41..000000000 --- a/library/font_awesome/src/3.2.1/icon/ambulance/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-ambulance: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-ambulance - - · - Unicode: f0f9 · - Created: v3.0 · - Categories: - - Medical Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-ambulance -
    -
    -
    <i class="icon-ambulance"></i> icon-ambulance
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/anchor/index.html b/library/font_awesome/src/3.2.1/icon/anchor/index.html deleted file mode 100644 index c1fe261f3..000000000 --- a/library/font_awesome/src/3.2.1/icon/anchor/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-anchor: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-anchor - - · - Unicode: f13d · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-anchor -
    -
    -
    <i class="icon-anchor"></i> icon-anchor
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/android/index.html b/library/font_awesome/src/3.2.1/icon/android/index.html deleted file mode 100644 index d74cbf626..000000000 --- a/library/font_awesome/src/3.2.1/icon/android/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-android: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-android - - · - Unicode: f17b · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-android -
    -
    -
    <i class="icon-android"></i> icon-android
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/angle-down/index.html b/library/font_awesome/src/3.2.1/icon/angle-down/index.html deleted file mode 100644 index 2c9ddafb7..000000000 --- a/library/font_awesome/src/3.2.1/icon/angle-down/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-angle-down: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-angle-down - - · - Unicode: f107 · - Created: v3.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-angle-down -
    -
    -
    <i class="icon-angle-down"></i> icon-angle-down
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/angle-left/index.html b/library/font_awesome/src/3.2.1/icon/angle-left/index.html deleted file mode 100644 index d08bee4b6..000000000 --- a/library/font_awesome/src/3.2.1/icon/angle-left/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-angle-left: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-angle-left - - · - Unicode: f104 · - Created: v3.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-angle-left -
    -
    -
    <i class="icon-angle-left"></i> icon-angle-left
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/angle-right/index.html b/library/font_awesome/src/3.2.1/icon/angle-right/index.html deleted file mode 100644 index 51ab55edd..000000000 --- a/library/font_awesome/src/3.2.1/icon/angle-right/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-angle-right: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-angle-right - - · - Unicode: f105 · - Created: v3.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-angle-right -
    -
    -
    <i class="icon-angle-right"></i> icon-angle-right
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/angle-up/index.html b/library/font_awesome/src/3.2.1/icon/angle-up/index.html deleted file mode 100644 index 573758e54..000000000 --- a/library/font_awesome/src/3.2.1/icon/angle-up/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-angle-up: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-angle-up - - · - Unicode: f106 · - Created: v3.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-angle-up -
    -
    -
    <i class="icon-angle-up"></i> icon-angle-up
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/apple/index.html b/library/font_awesome/src/3.2.1/icon/apple/index.html deleted file mode 100644 index 5c97c9c91..000000000 --- a/library/font_awesome/src/3.2.1/icon/apple/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-apple: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-apple - - · - Unicode: f179 · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-apple -
    -
    -
    <i class="icon-apple"></i> icon-apple
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/archive/index.html b/library/font_awesome/src/3.2.1/icon/archive/index.html deleted file mode 100644 index cf88844e5..000000000 --- a/library/font_awesome/src/3.2.1/icon/archive/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-archive: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-archive - - · - Unicode: f187 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-archive -
    -
    -
    <i class="icon-archive"></i> icon-archive
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/arrow-down/index.html b/library/font_awesome/src/3.2.1/icon/arrow-down/index.html deleted file mode 100644 index 8c939cd56..000000000 --- a/library/font_awesome/src/3.2.1/icon/arrow-down/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-arrow-down: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-arrow-down - - · - Unicode: f063 · - Created: v1.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-arrow-down -
    -
    -
    <i class="icon-arrow-down"></i> icon-arrow-down
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/arrow-left/index.html b/library/font_awesome/src/3.2.1/icon/arrow-left/index.html deleted file mode 100644 index dc93f3dbc..000000000 --- a/library/font_awesome/src/3.2.1/icon/arrow-left/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-arrow-left: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-arrow-left - - · - Unicode: f060 · - Created: v1.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-arrow-left -
    -
    -
    <i class="icon-arrow-left"></i> icon-arrow-left
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/arrow-right/index.html b/library/font_awesome/src/3.2.1/icon/arrow-right/index.html deleted file mode 100644 index a44e49957..000000000 --- a/library/font_awesome/src/3.2.1/icon/arrow-right/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-arrow-right: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-arrow-right - - · - Unicode: f061 · - Created: v1.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-arrow-right -
    -
    -
    <i class="icon-arrow-right"></i> icon-arrow-right
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/arrow-up/index.html b/library/font_awesome/src/3.2.1/icon/arrow-up/index.html deleted file mode 100644 index 014f44b37..000000000 --- a/library/font_awesome/src/3.2.1/icon/arrow-up/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-arrow-up: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-arrow-up - - · - Unicode: f062 · - Created: v1.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-arrow-up -
    -
    -
    <i class="icon-arrow-up"></i> icon-arrow-up
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/asterisk/index.html b/library/font_awesome/src/3.2.1/icon/asterisk/index.html deleted file mode 100644 index 459b88593..000000000 --- a/library/font_awesome/src/3.2.1/icon/asterisk/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-asterisk: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-asterisk - - · - Unicode: f069 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-asterisk -
    -
    -
    <i class="icon-asterisk"></i> icon-asterisk
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/backward/index.html b/library/font_awesome/src/3.2.1/icon/backward/index.html deleted file mode 100644 index 6338facbc..000000000 --- a/library/font_awesome/src/3.2.1/icon/backward/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-backward: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-backward - - · - Unicode: f04a · - Created: v1.0 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-backward -
    -
    -
    <i class="icon-backward"></i> icon-backward
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/ban-circle/index.html b/library/font_awesome/src/3.2.1/icon/ban-circle/index.html deleted file mode 100644 index 6c90e2fd6..000000000 --- a/library/font_awesome/src/3.2.1/icon/ban-circle/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-ban-circle: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-ban-circle - - · - Unicode: f05e · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-ban-circle -
    -
    -
    <i class="icon-ban-circle"></i> icon-ban-circle
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/bar-chart/index.html b/library/font_awesome/src/3.2.1/icon/bar-chart/index.html deleted file mode 100644 index 89a5dc3cb..000000000 --- a/library/font_awesome/src/3.2.1/icon/bar-chart/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-bar-chart: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-bar-chart - - · - Unicode: f080 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-bar-chart -
    -
    -
    <i class="icon-bar-chart"></i> icon-bar-chart
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/barcode/index.html b/library/font_awesome/src/3.2.1/icon/barcode/index.html deleted file mode 100644 index 760534e60..000000000 --- a/library/font_awesome/src/3.2.1/icon/barcode/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-barcode: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-barcode - - · - Unicode: f02a · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-barcode -
    -
    -
    <i class="icon-barcode"></i> icon-barcode
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/beaker/index.html b/library/font_awesome/src/3.2.1/icon/beaker/index.html deleted file mode 100644 index 368923d5f..000000000 --- a/library/font_awesome/src/3.2.1/icon/beaker/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-beaker: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-beaker - - · - Unicode: f0c3 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-beaker -
    -
    -
    <i class="icon-beaker"></i> icon-beaker
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/beer/index.html b/library/font_awesome/src/3.2.1/icon/beer/index.html deleted file mode 100644 index 838a1ca50..000000000 --- a/library/font_awesome/src/3.2.1/icon/beer/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-beer: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-beer - - · - Unicode: f0fc · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-beer -
    -
    -
    <i class="icon-beer"></i> icon-beer
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/bell-alt/index.html b/library/font_awesome/src/3.2.1/icon/bell-alt/index.html deleted file mode 100644 index 26ebf4bad..000000000 --- a/library/font_awesome/src/3.2.1/icon/bell-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-bell-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-bell-alt - - · - Unicode: f0f3 · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-bell-alt -
    -
    -
    <i class="icon-bell-alt"></i> icon-bell-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/bell/index.html b/library/font_awesome/src/3.2.1/icon/bell/index.html deleted file mode 100644 index f30075f51..000000000 --- a/library/font_awesome/src/3.2.1/icon/bell/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-bell: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-bell - - · - Unicode: f0a2 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-bell -
    -
    -
    <i class="icon-bell"></i> icon-bell
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/bitbucket-sign/index.html b/library/font_awesome/src/3.2.1/icon/bitbucket-sign/index.html deleted file mode 100644 index b49591c56..000000000 --- a/library/font_awesome/src/3.2.1/icon/bitbucket-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-bitbucket-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-bitbucket-sign - - · - Unicode: f172 · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-bitbucket-sign -
    -
    -
    <i class="icon-bitbucket-sign"></i> icon-bitbucket-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/bitbucket/index.html b/library/font_awesome/src/3.2.1/icon/bitbucket/index.html deleted file mode 100644 index d3645b5c9..000000000 --- a/library/font_awesome/src/3.2.1/icon/bitbucket/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-bitbucket: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-bitbucket - - · - Unicode: f171 · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-bitbucket -
    -
    -
    <i class="icon-bitbucket"></i> icon-bitbucket
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/bold/index.html b/library/font_awesome/src/3.2.1/icon/bold/index.html deleted file mode 100644 index 7a8240b14..000000000 --- a/library/font_awesome/src/3.2.1/icon/bold/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-bold: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-bold - - · - Unicode: f032 · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-bold -
    -
    -
    <i class="icon-bold"></i> icon-bold
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/bolt/index.html b/library/font_awesome/src/3.2.1/icon/bolt/index.html deleted file mode 100644 index 6fed3da76..000000000 --- a/library/font_awesome/src/3.2.1/icon/bolt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-bolt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-bolt - - · - Unicode: f0e7 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-bolt -
    -
    -
    <i class="icon-bolt"></i> icon-bolt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/book/index.html b/library/font_awesome/src/3.2.1/icon/book/index.html deleted file mode 100644 index aedd49ecd..000000000 --- a/library/font_awesome/src/3.2.1/icon/book/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-book: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-book - - · - Unicode: f02d · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-book -
    -
    -
    <i class="icon-book"></i> icon-book
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/bookmark-empty/index.html b/library/font_awesome/src/3.2.1/icon/bookmark-empty/index.html deleted file mode 100644 index 273f32a3e..000000000 --- a/library/font_awesome/src/3.2.1/icon/bookmark-empty/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-bookmark-empty: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-bookmark-empty - - · - Unicode: f097 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-bookmark-empty -
    -
    -
    <i class="icon-bookmark-empty"></i> icon-bookmark-empty
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/bookmark/index.html b/library/font_awesome/src/3.2.1/icon/bookmark/index.html deleted file mode 100644 index c1c3ef7de..000000000 --- a/library/font_awesome/src/3.2.1/icon/bookmark/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-bookmark: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-bookmark - - · - Unicode: f02e · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-bookmark -
    -
    -
    <i class="icon-bookmark"></i> icon-bookmark
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/briefcase/index.html b/library/font_awesome/src/3.2.1/icon/briefcase/index.html deleted file mode 100644 index 15af5eefb..000000000 --- a/library/font_awesome/src/3.2.1/icon/briefcase/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-briefcase: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-briefcase - - · - Unicode: f0b1 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-briefcase -
    -
    -
    <i class="icon-briefcase"></i> icon-briefcase
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/btc/index.html b/library/font_awesome/src/3.2.1/icon/btc/index.html deleted file mode 100644 index 59da41a87..000000000 --- a/library/font_awesome/src/3.2.1/icon/btc/index.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - - - - - icon-btc: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-btc - - · - Unicode: f15a · - Created: v3.2 · - Categories: - - Currency Icons, - - Brand Icons - - - - · Aliases: - - icon-bitcoin - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-btc -
    -
    -
    <i class="icon-btc"></i> icon-btc
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/bug/index.html b/library/font_awesome/src/3.2.1/icon/bug/index.html deleted file mode 100644 index 5b6a148fb..000000000 --- a/library/font_awesome/src/3.2.1/icon/bug/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-bug: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-bug - - · - Unicode: f188 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-bug -
    -
    -
    <i class="icon-bug"></i> icon-bug
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/building/index.html b/library/font_awesome/src/3.2.1/icon/building/index.html deleted file mode 100644 index cae086791..000000000 --- a/library/font_awesome/src/3.2.1/icon/building/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-building: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-building - - · - Unicode: f0f7 · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-building -
    -
    -
    <i class="icon-building"></i> icon-building
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/bullhorn/index.html b/library/font_awesome/src/3.2.1/icon/bullhorn/index.html deleted file mode 100644 index 189e88a95..000000000 --- a/library/font_awesome/src/3.2.1/icon/bullhorn/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-bullhorn: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-bullhorn - - · - Unicode: f0a1 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-bullhorn -
    -
    -
    <i class="icon-bullhorn"></i> icon-bullhorn
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/bullseye/index.html b/library/font_awesome/src/3.2.1/icon/bullseye/index.html deleted file mode 100644 index 1c4dcbf38..000000000 --- a/library/font_awesome/src/3.2.1/icon/bullseye/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-bullseye: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-bullseye - - · - Unicode: f140 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-bullseye -
    -
    -
    <i class="icon-bullseye"></i> icon-bullseye
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/calendar-empty/index.html b/library/font_awesome/src/3.2.1/icon/calendar-empty/index.html deleted file mode 100644 index 4deda7e1a..000000000 --- a/library/font_awesome/src/3.2.1/icon/calendar-empty/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-calendar-empty: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-calendar-empty - - · - Unicode: f133 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-calendar-empty -
    -
    -
    <i class="icon-calendar-empty"></i> icon-calendar-empty
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/calendar/index.html b/library/font_awesome/src/3.2.1/icon/calendar/index.html deleted file mode 100644 index ff01fde88..000000000 --- a/library/font_awesome/src/3.2.1/icon/calendar/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-calendar: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-calendar - - · - Unicode: f073 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-calendar -
    -
    -
    <i class="icon-calendar"></i> icon-calendar
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/camera-retro/index.html b/library/font_awesome/src/3.2.1/icon/camera-retro/index.html deleted file mode 100644 index e1f8bdbd4..000000000 --- a/library/font_awesome/src/3.2.1/icon/camera-retro/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-camera-retro: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-camera-retro - - · - Unicode: f083 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-camera-retro -
    -
    -
    <i class="icon-camera-retro"></i> icon-camera-retro
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/camera/index.html b/library/font_awesome/src/3.2.1/icon/camera/index.html deleted file mode 100644 index fb3c6ae64..000000000 --- a/library/font_awesome/src/3.2.1/icon/camera/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-camera: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-camera - - · - Unicode: f030 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-camera -
    -
    -
    <i class="icon-camera"></i> icon-camera
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/caret-down/index.html b/library/font_awesome/src/3.2.1/icon/caret-down/index.html deleted file mode 100644 index ad35768ce..000000000 --- a/library/font_awesome/src/3.2.1/icon/caret-down/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-caret-down: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-caret-down - - · - Unicode: f0d7 · - Created: v2.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-caret-down -
    -
    -
    <i class="icon-caret-down"></i> icon-caret-down
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/caret-left/index.html b/library/font_awesome/src/3.2.1/icon/caret-left/index.html deleted file mode 100644 index 00b7a6635..000000000 --- a/library/font_awesome/src/3.2.1/icon/caret-left/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-caret-left: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-caret-left - - · - Unicode: f0d9 · - Created: v2.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-caret-left -
    -
    -
    <i class="icon-caret-left"></i> icon-caret-left
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/caret-right/index.html b/library/font_awesome/src/3.2.1/icon/caret-right/index.html deleted file mode 100644 index 6cbb07e3e..000000000 --- a/library/font_awesome/src/3.2.1/icon/caret-right/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-caret-right: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-caret-right - - · - Unicode: f0da · - Created: v2.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-caret-right -
    -
    -
    <i class="icon-caret-right"></i> icon-caret-right
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/caret-up/index.html b/library/font_awesome/src/3.2.1/icon/caret-up/index.html deleted file mode 100644 index 7f99181df..000000000 --- a/library/font_awesome/src/3.2.1/icon/caret-up/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-caret-up: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-caret-up - - · - Unicode: f0d8 · - Created: v2.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-caret-up -
    -
    -
    <i class="icon-caret-up"></i> icon-caret-up
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/certificate/index.html b/library/font_awesome/src/3.2.1/icon/certificate/index.html deleted file mode 100644 index 2d8136f14..000000000 --- a/library/font_awesome/src/3.2.1/icon/certificate/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-certificate: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-certificate - - · - Unicode: f0a3 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-certificate -
    -
    -
    <i class="icon-certificate"></i> icon-certificate
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/check-empty/index.html b/library/font_awesome/src/3.2.1/icon/check-empty/index.html deleted file mode 100644 index 5e151fcfa..000000000 --- a/library/font_awesome/src/3.2.1/icon/check-empty/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-check-empty: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-check-empty - - · - Unicode: f096 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - · Aliases: - - icon-unchecked - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-check-empty -
    -
    -
    <i class="icon-check-empty"></i> icon-check-empty
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/check-minus/index.html b/library/font_awesome/src/3.2.1/icon/check-minus/index.html deleted file mode 100644 index 9c07a46fc..000000000 --- a/library/font_awesome/src/3.2.1/icon/check-minus/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-check-minus: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-check-minus - - · - Unicode: f147 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-check-minus -
    -
    -
    <i class="icon-check-minus"></i> icon-check-minus
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/check-sign/index.html b/library/font_awesome/src/3.2.1/icon/check-sign/index.html deleted file mode 100644 index e45f99aa5..000000000 --- a/library/font_awesome/src/3.2.1/icon/check-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-check-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-check-sign - - · - Unicode: f14a · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-check-sign -
    -
    -
    <i class="icon-check-sign"></i> icon-check-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/check/index.html b/library/font_awesome/src/3.2.1/icon/check/index.html deleted file mode 100644 index c9b5e8155..000000000 --- a/library/font_awesome/src/3.2.1/icon/check/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-check: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-check - - · - Unicode: f046 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-check -
    -
    -
    <i class="icon-check"></i> icon-check
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/chevron-down/index.html b/library/font_awesome/src/3.2.1/icon/chevron-down/index.html deleted file mode 100644 index f95e5173c..000000000 --- a/library/font_awesome/src/3.2.1/icon/chevron-down/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-chevron-down: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-chevron-down - - · - Unicode: f078 · - Created: v1.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-chevron-down -
    -
    -
    <i class="icon-chevron-down"></i> icon-chevron-down
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/chevron-left/index.html b/library/font_awesome/src/3.2.1/icon/chevron-left/index.html deleted file mode 100644 index 84a22cf0d..000000000 --- a/library/font_awesome/src/3.2.1/icon/chevron-left/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-chevron-left: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-chevron-left - - · - Unicode: f053 · - Created: v1.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-chevron-left -
    -
    -
    <i class="icon-chevron-left"></i> icon-chevron-left
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/chevron-right/index.html b/library/font_awesome/src/3.2.1/icon/chevron-right/index.html deleted file mode 100644 index 558787287..000000000 --- a/library/font_awesome/src/3.2.1/icon/chevron-right/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-chevron-right: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-chevron-right - - · - Unicode: f054 · - Created: v1.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-chevron-right -
    -
    -
    <i class="icon-chevron-right"></i> icon-chevron-right
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/chevron-sign-down/index.html b/library/font_awesome/src/3.2.1/icon/chevron-sign-down/index.html deleted file mode 100644 index dad0a7318..000000000 --- a/library/font_awesome/src/3.2.1/icon/chevron-sign-down/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-chevron-sign-down: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-chevron-sign-down - - · - Unicode: f13a · - Created: v3.1 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-chevron-sign-down -
    -
    -
    <i class="icon-chevron-sign-down"></i> icon-chevron-sign-down
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/chevron-sign-left/index.html b/library/font_awesome/src/3.2.1/icon/chevron-sign-left/index.html deleted file mode 100644 index d570f1a60..000000000 --- a/library/font_awesome/src/3.2.1/icon/chevron-sign-left/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-chevron-sign-left: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-chevron-sign-left - - · - Unicode: f137 · - Created: v3.1 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-chevron-sign-left -
    -
    -
    <i class="icon-chevron-sign-left"></i> icon-chevron-sign-left
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/chevron-sign-right/index.html b/library/font_awesome/src/3.2.1/icon/chevron-sign-right/index.html deleted file mode 100644 index c31d24e63..000000000 --- a/library/font_awesome/src/3.2.1/icon/chevron-sign-right/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-chevron-sign-right: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-chevron-sign-right - - · - Unicode: f138 · - Created: v3.1 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-chevron-sign-right -
    -
    -
    <i class="icon-chevron-sign-right"></i> icon-chevron-sign-right
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/chevron-sign-up/index.html b/library/font_awesome/src/3.2.1/icon/chevron-sign-up/index.html deleted file mode 100644 index 3f9d6d61c..000000000 --- a/library/font_awesome/src/3.2.1/icon/chevron-sign-up/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-chevron-sign-up: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-chevron-sign-up - - · - Unicode: f139 · - Created: v3.1 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-chevron-sign-up -
    -
    -
    <i class="icon-chevron-sign-up"></i> icon-chevron-sign-up
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/chevron-up/index.html b/library/font_awesome/src/3.2.1/icon/chevron-up/index.html deleted file mode 100644 index c99d2e56c..000000000 --- a/library/font_awesome/src/3.2.1/icon/chevron-up/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-chevron-up: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-chevron-up - - · - Unicode: f077 · - Created: v1.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-chevron-up -
    -
    -
    <i class="icon-chevron-up"></i> icon-chevron-up
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/circle-arrow-down/index.html b/library/font_awesome/src/3.2.1/icon/circle-arrow-down/index.html deleted file mode 100644 index f4c8b7333..000000000 --- a/library/font_awesome/src/3.2.1/icon/circle-arrow-down/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-circle-arrow-down: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-circle-arrow-down - - · - Unicode: f0ab · - Created: v2.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-circle-arrow-down -
    -
    -
    <i class="icon-circle-arrow-down"></i> icon-circle-arrow-down
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/circle-arrow-left/index.html b/library/font_awesome/src/3.2.1/icon/circle-arrow-left/index.html deleted file mode 100644 index 7b3e4f2e0..000000000 --- a/library/font_awesome/src/3.2.1/icon/circle-arrow-left/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-circle-arrow-left: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-circle-arrow-left - - · - Unicode: f0a8 · - Created: v2.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-circle-arrow-left -
    -
    -
    <i class="icon-circle-arrow-left"></i> icon-circle-arrow-left
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/circle-arrow-right/index.html b/library/font_awesome/src/3.2.1/icon/circle-arrow-right/index.html deleted file mode 100644 index e5af31e3b..000000000 --- a/library/font_awesome/src/3.2.1/icon/circle-arrow-right/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-circle-arrow-right: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-circle-arrow-right - - · - Unicode: f0a9 · - Created: v2.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-circle-arrow-right -
    -
    -
    <i class="icon-circle-arrow-right"></i> icon-circle-arrow-right
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/circle-arrow-up/index.html b/library/font_awesome/src/3.2.1/icon/circle-arrow-up/index.html deleted file mode 100644 index 037027392..000000000 --- a/library/font_awesome/src/3.2.1/icon/circle-arrow-up/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-circle-arrow-up: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-circle-arrow-up - - · - Unicode: f0aa · - Created: v2.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-circle-arrow-up -
    -
    -
    <i class="icon-circle-arrow-up"></i> icon-circle-arrow-up
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/circle-blank/index.html b/library/font_awesome/src/3.2.1/icon/circle-blank/index.html deleted file mode 100644 index bb32df00d..000000000 --- a/library/font_awesome/src/3.2.1/icon/circle-blank/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-circle-blank: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-circle-blank - - · - Unicode: f10c · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-circle-blank -
    -
    -
    <i class="icon-circle-blank"></i> icon-circle-blank
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/circle/index.html b/library/font_awesome/src/3.2.1/icon/circle/index.html deleted file mode 100644 index f8b8f320e..000000000 --- a/library/font_awesome/src/3.2.1/icon/circle/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-circle: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-circle - - · - Unicode: f111 · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-circle -
    -
    -
    <i class="icon-circle"></i> icon-circle
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/cloud-download/index.html b/library/font_awesome/src/3.2.1/icon/cloud-download/index.html deleted file mode 100644 index 911d48df4..000000000 --- a/library/font_awesome/src/3.2.1/icon/cloud-download/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-cloud-download: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-cloud-download - - · - Unicode: f0ed · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-cloud-download -
    -
    -
    <i class="icon-cloud-download"></i> icon-cloud-download
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/cloud-upload/index.html b/library/font_awesome/src/3.2.1/icon/cloud-upload/index.html deleted file mode 100644 index f230dd256..000000000 --- a/library/font_awesome/src/3.2.1/icon/cloud-upload/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-cloud-upload: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-cloud-upload - - · - Unicode: f0ee · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-cloud-upload -
    -
    -
    <i class="icon-cloud-upload"></i> icon-cloud-upload
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/cloud/index.html b/library/font_awesome/src/3.2.1/icon/cloud/index.html deleted file mode 100644 index c5a752365..000000000 --- a/library/font_awesome/src/3.2.1/icon/cloud/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-cloud: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-cloud - - · - Unicode: f0c2 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-cloud -
    -
    -
    <i class="icon-cloud"></i> icon-cloud
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/cny/index.html b/library/font_awesome/src/3.2.1/icon/cny/index.html deleted file mode 100644 index 4fb1e0ab0..000000000 --- a/library/font_awesome/src/3.2.1/icon/cny/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-cny: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-cny - - · - Unicode: f158 · - Created: v3.2 · - Categories: - - Currency Icons - - - - · Aliases: - - icon-renminbi - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-cny -
    -
    -
    <i class="icon-cny"></i> icon-cny
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/code-fork/index.html b/library/font_awesome/src/3.2.1/icon/code-fork/index.html deleted file mode 100644 index 33ec52194..000000000 --- a/library/font_awesome/src/3.2.1/icon/code-fork/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-code-fork: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-code-fork - - · - Unicode: f126 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-code-fork -
    -
    -
    <i class="icon-code-fork"></i> icon-code-fork
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/code/index.html b/library/font_awesome/src/3.2.1/icon/code/index.html deleted file mode 100644 index 74d45ef20..000000000 --- a/library/font_awesome/src/3.2.1/icon/code/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-code: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-code - - · - Unicode: f121 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-code -
    -
    -
    <i class="icon-code"></i> icon-code
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/coffee/index.html b/library/font_awesome/src/3.2.1/icon/coffee/index.html deleted file mode 100644 index f77950d4a..000000000 --- a/library/font_awesome/src/3.2.1/icon/coffee/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-coffee: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-coffee - - · - Unicode: f0f4 · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-coffee -
    -
    -
    <i class="icon-coffee"></i> icon-coffee
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/cog/index.html b/library/font_awesome/src/3.2.1/icon/cog/index.html deleted file mode 100644 index c0a67b27b..000000000 --- a/library/font_awesome/src/3.2.1/icon/cog/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-cog: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-cog - - · - Unicode: f013 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - · Aliases: - - icon-gear - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-cog -
    -
    -
    <i class="icon-cog"></i> icon-cog
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/cogs/index.html b/library/font_awesome/src/3.2.1/icon/cogs/index.html deleted file mode 100644 index 83f009045..000000000 --- a/library/font_awesome/src/3.2.1/icon/cogs/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-cogs: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-cogs - - · - Unicode: f085 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - · Aliases: - - icon-gears - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-cogs -
    -
    -
    <i class="icon-cogs"></i> icon-cogs
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/collapse-alt/index.html b/library/font_awesome/src/3.2.1/icon/collapse-alt/index.html deleted file mode 100644 index 9d1caefbc..000000000 --- a/library/font_awesome/src/3.2.1/icon/collapse-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-collapse-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-collapse-alt - - · - Unicode: f117 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-collapse-alt -
    -
    -
    <i class="icon-collapse-alt"></i> icon-collapse-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/collapse-top/index.html b/library/font_awesome/src/3.2.1/icon/collapse-top/index.html deleted file mode 100644 index 02b59f726..000000000 --- a/library/font_awesome/src/3.2.1/icon/collapse-top/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-collapse-top: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-collapse-top - - · - Unicode: f151 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-collapse-top -
    -
    -
    <i class="icon-collapse-top"></i> icon-collapse-top
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/collapse/index.html b/library/font_awesome/src/3.2.1/icon/collapse/index.html deleted file mode 100644 index 433cd5080..000000000 --- a/library/font_awesome/src/3.2.1/icon/collapse/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-collapse: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-collapse - - · - Unicode: f150 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-collapse -
    -
    -
    <i class="icon-collapse"></i> icon-collapse
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/columns/index.html b/library/font_awesome/src/3.2.1/icon/columns/index.html deleted file mode 100644 index df91235d6..000000000 --- a/library/font_awesome/src/3.2.1/icon/columns/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-columns: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-columns - - · - Unicode: f0db · - Created: v2.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-columns -
    -
    -
    <i class="icon-columns"></i> icon-columns
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/comment-alt/index.html b/library/font_awesome/src/3.2.1/icon/comment-alt/index.html deleted file mode 100644 index dbfa3acde..000000000 --- a/library/font_awesome/src/3.2.1/icon/comment-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-comment-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-comment-alt - - · - Unicode: f0e5 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-comment-alt -
    -
    -
    <i class="icon-comment-alt"></i> icon-comment-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/comment/index.html b/library/font_awesome/src/3.2.1/icon/comment/index.html deleted file mode 100644 index ed6a4b694..000000000 --- a/library/font_awesome/src/3.2.1/icon/comment/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-comment: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-comment - - · - Unicode: f075 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-comment -
    -
    -
    <i class="icon-comment"></i> icon-comment
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/comments-alt/index.html b/library/font_awesome/src/3.2.1/icon/comments-alt/index.html deleted file mode 100644 index cab838708..000000000 --- a/library/font_awesome/src/3.2.1/icon/comments-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-comments-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-comments-alt - - · - Unicode: f0e6 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-comments-alt -
    -
    -
    <i class="icon-comments-alt"></i> icon-comments-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/comments/index.html b/library/font_awesome/src/3.2.1/icon/comments/index.html deleted file mode 100644 index 0eab83a22..000000000 --- a/library/font_awesome/src/3.2.1/icon/comments/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-comments: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-comments - - · - Unicode: f086 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-comments -
    -
    -
    <i class="icon-comments"></i> icon-comments
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/compass/index.html b/library/font_awesome/src/3.2.1/icon/compass/index.html deleted file mode 100644 index d8bbab107..000000000 --- a/library/font_awesome/src/3.2.1/icon/compass/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-compass: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-compass - - · - Unicode: f14e · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-compass -
    -
    -
    <i class="icon-compass"></i> icon-compass
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/copy/index.html b/library/font_awesome/src/3.2.1/icon/copy/index.html deleted file mode 100644 index 5ee8486da..000000000 --- a/library/font_awesome/src/3.2.1/icon/copy/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-copy: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-copy - - · - Unicode: f0c5 · - Created: v2.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-copy -
    -
    -
    <i class="icon-copy"></i> icon-copy
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/credit-card/index.html b/library/font_awesome/src/3.2.1/icon/credit-card/index.html deleted file mode 100644 index 7cf6e2e7b..000000000 --- a/library/font_awesome/src/3.2.1/icon/credit-card/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-credit-card: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-credit-card - - · - Unicode: f09d · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-credit-card -
    -
    -
    <i class="icon-credit-card"></i> icon-credit-card
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/crop/index.html b/library/font_awesome/src/3.2.1/icon/crop/index.html deleted file mode 100644 index 5eadec8ca..000000000 --- a/library/font_awesome/src/3.2.1/icon/crop/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-crop: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-crop - - · - Unicode: f125 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-crop -
    -
    -
    <i class="icon-crop"></i> icon-crop
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/css3/index.html b/library/font_awesome/src/3.2.1/icon/css3/index.html deleted file mode 100644 index 035a28aef..000000000 --- a/library/font_awesome/src/3.2.1/icon/css3/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-css3: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-css3 - - · - Unicode: f13c · - Created: v3.1 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-css3 -
    -
    -
    <i class="icon-css3"></i> icon-css3
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/cut/index.html b/library/font_awesome/src/3.2.1/icon/cut/index.html deleted file mode 100644 index fb927f0ca..000000000 --- a/library/font_awesome/src/3.2.1/icon/cut/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-cut: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-cut - - · - Unicode: f0c4 · - Created: v2.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-cut -
    -
    -
    <i class="icon-cut"></i> icon-cut
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/dashboard/index.html b/library/font_awesome/src/3.2.1/icon/dashboard/index.html deleted file mode 100644 index 1755eb169..000000000 --- a/library/font_awesome/src/3.2.1/icon/dashboard/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-dashboard: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-dashboard - - · - Unicode: f0e4 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-dashboard -
    -
    -
    <i class="icon-dashboard"></i> icon-dashboard
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/desktop/index.html b/library/font_awesome/src/3.2.1/icon/desktop/index.html deleted file mode 100644 index 151055e52..000000000 --- a/library/font_awesome/src/3.2.1/icon/desktop/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-desktop: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-desktop - - · - Unicode: f108 · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-desktop -
    -
    -
    <i class="icon-desktop"></i> icon-desktop
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/double-angle-down/index.html b/library/font_awesome/src/3.2.1/icon/double-angle-down/index.html deleted file mode 100644 index 350dc343f..000000000 --- a/library/font_awesome/src/3.2.1/icon/double-angle-down/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-double-angle-down: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-double-angle-down - - · - Unicode: f103 · - Created: v3.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-double-angle-down -
    -
    -
    <i class="icon-double-angle-down"></i> icon-double-angle-down
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/double-angle-left/index.html b/library/font_awesome/src/3.2.1/icon/double-angle-left/index.html deleted file mode 100644 index 10d5bc0b7..000000000 --- a/library/font_awesome/src/3.2.1/icon/double-angle-left/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-double-angle-left: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-double-angle-left - - · - Unicode: f100 · - Created: v3.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-double-angle-left -
    -
    -
    <i class="icon-double-angle-left"></i> icon-double-angle-left
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/double-angle-right/index.html b/library/font_awesome/src/3.2.1/icon/double-angle-right/index.html deleted file mode 100644 index 55dd56ff2..000000000 --- a/library/font_awesome/src/3.2.1/icon/double-angle-right/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-double-angle-right: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-double-angle-right - - · - Unicode: f101 · - Created: v3.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-double-angle-right -
    -
    -
    <i class="icon-double-angle-right"></i> icon-double-angle-right
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/double-angle-up/index.html b/library/font_awesome/src/3.2.1/icon/double-angle-up/index.html deleted file mode 100644 index 4e4b9c3f2..000000000 --- a/library/font_awesome/src/3.2.1/icon/double-angle-up/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-double-angle-up: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-double-angle-up - - · - Unicode: f102 · - Created: v3.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-double-angle-up -
    -
    -
    <i class="icon-double-angle-up"></i> icon-double-angle-up
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/download-alt/index.html b/library/font_awesome/src/3.2.1/icon/download-alt/index.html deleted file mode 100644 index fee31dc01..000000000 --- a/library/font_awesome/src/3.2.1/icon/download-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-download-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-download-alt - - · - Unicode: f019 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-download-alt -
    -
    -
    <i class="icon-download-alt"></i> icon-download-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/download/index.html b/library/font_awesome/src/3.2.1/icon/download/index.html deleted file mode 100644 index cbcd62c24..000000000 --- a/library/font_awesome/src/3.2.1/icon/download/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-download: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-download - - · - Unicode: f01a · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-download -
    -
    -
    <i class="icon-download"></i> icon-download
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/dribbble/index.html b/library/font_awesome/src/3.2.1/icon/dribbble/index.html deleted file mode 100644 index 45e123712..000000000 --- a/library/font_awesome/src/3.2.1/icon/dribbble/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-dribbble: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-dribbble - - · - Unicode: f17d · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-dribbble -
    -
    -
    <i class="icon-dribbble"></i> icon-dribbble
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/dropbox/index.html b/library/font_awesome/src/3.2.1/icon/dropbox/index.html deleted file mode 100644 index a4e21d350..000000000 --- a/library/font_awesome/src/3.2.1/icon/dropbox/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-dropbox: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-dropbox - - · - Unicode: f16b · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-dropbox -
    -
    -
    <i class="icon-dropbox"></i> icon-dropbox
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/edit-sign/index.html b/library/font_awesome/src/3.2.1/icon/edit-sign/index.html deleted file mode 100644 index 174916ce3..000000000 --- a/library/font_awesome/src/3.2.1/icon/edit-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-edit-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-edit-sign - - · - Unicode: f14b · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-edit-sign -
    -
    -
    <i class="icon-edit-sign"></i> icon-edit-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/edit/index.html b/library/font_awesome/src/3.2.1/icon/edit/index.html deleted file mode 100644 index 2d0bde6c0..000000000 --- a/library/font_awesome/src/3.2.1/icon/edit/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-edit: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-edit - - · - Unicode: f044 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-edit -
    -
    -
    <i class="icon-edit"></i> icon-edit
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/eject/index.html b/library/font_awesome/src/3.2.1/icon/eject/index.html deleted file mode 100644 index 6141c5b9f..000000000 --- a/library/font_awesome/src/3.2.1/icon/eject/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-eject: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-eject - - · - Unicode: f052 · - Created: v1.0 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-eject -
    -
    -
    <i class="icon-eject"></i> icon-eject
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/ellipsis-horizontal/index.html b/library/font_awesome/src/3.2.1/icon/ellipsis-horizontal/index.html deleted file mode 100644 index 6afa2c933..000000000 --- a/library/font_awesome/src/3.2.1/icon/ellipsis-horizontal/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-ellipsis-horizontal: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-ellipsis-horizontal - - · - Unicode: f141 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-ellipsis-horizontal -
    -
    -
    <i class="icon-ellipsis-horizontal"></i> icon-ellipsis-horizontal
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/ellipsis-vertical/index.html b/library/font_awesome/src/3.2.1/icon/ellipsis-vertical/index.html deleted file mode 100644 index f88b29b5c..000000000 --- a/library/font_awesome/src/3.2.1/icon/ellipsis-vertical/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-ellipsis-vertical: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-ellipsis-vertical - - · - Unicode: f142 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-ellipsis-vertical -
    -
    -
    <i class="icon-ellipsis-vertical"></i> icon-ellipsis-vertical
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/envelope-alt/index.html b/library/font_awesome/src/3.2.1/icon/envelope-alt/index.html deleted file mode 100644 index 12b46a49d..000000000 --- a/library/font_awesome/src/3.2.1/icon/envelope-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-envelope-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-envelope-alt - - · - Unicode: f003 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-envelope-alt -
    -
    -
    <i class="icon-envelope-alt"></i> icon-envelope-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/envelope/index.html b/library/font_awesome/src/3.2.1/icon/envelope/index.html deleted file mode 100644 index 409ab37b7..000000000 --- a/library/font_awesome/src/3.2.1/icon/envelope/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-envelope: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-envelope - - · - Unicode: f0e0 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-envelope -
    -
    -
    <i class="icon-envelope"></i> icon-envelope
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/eraser/index.html b/library/font_awesome/src/3.2.1/icon/eraser/index.html deleted file mode 100644 index 0850b60c8..000000000 --- a/library/font_awesome/src/3.2.1/icon/eraser/index.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - - icon-eraser: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-eraser - - · - Unicode: f12d · - Created: v3.1 · - Categories: - - Text Editor Icons, - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-eraser -
    -
    -
    <i class="icon-eraser"></i> icon-eraser
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/eur/index.html b/library/font_awesome/src/3.2.1/icon/eur/index.html deleted file mode 100644 index b3065ca3b..000000000 --- a/library/font_awesome/src/3.2.1/icon/eur/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-eur: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-eur - - · - Unicode: f153 · - Created: v3.2 · - Categories: - - Currency Icons - - - - · Aliases: - - icon-euro - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-eur -
    -
    -
    <i class="icon-eur"></i> icon-eur
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/exchange/index.html b/library/font_awesome/src/3.2.1/icon/exchange/index.html deleted file mode 100644 index aa1ec82be..000000000 --- a/library/font_awesome/src/3.2.1/icon/exchange/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-exchange: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-exchange - - · - Unicode: f0ec · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-exchange -
    -
    -
    <i class="icon-exchange"></i> icon-exchange
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/exclamation-sign/index.html b/library/font_awesome/src/3.2.1/icon/exclamation-sign/index.html deleted file mode 100644 index 7be7e8352..000000000 --- a/library/font_awesome/src/3.2.1/icon/exclamation-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-exclamation-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-exclamation-sign - - · - Unicode: f06a · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-exclamation-sign -
    -
    -
    <i class="icon-exclamation-sign"></i> icon-exclamation-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/exclamation/index.html b/library/font_awesome/src/3.2.1/icon/exclamation/index.html deleted file mode 100644 index 0a0c44077..000000000 --- a/library/font_awesome/src/3.2.1/icon/exclamation/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-exclamation: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-exclamation - - · - Unicode: f12a · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-exclamation -
    -
    -
    <i class="icon-exclamation"></i> icon-exclamation
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/expand-alt/index.html b/library/font_awesome/src/3.2.1/icon/expand-alt/index.html deleted file mode 100644 index 4ec46254b..000000000 --- a/library/font_awesome/src/3.2.1/icon/expand-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-expand-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-expand-alt - - · - Unicode: f116 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-expand-alt -
    -
    -
    <i class="icon-expand-alt"></i> icon-expand-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/expand/index.html b/library/font_awesome/src/3.2.1/icon/expand/index.html deleted file mode 100644 index 267d332ad..000000000 --- a/library/font_awesome/src/3.2.1/icon/expand/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-expand: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-expand - - · - Unicode: f152 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-expand -
    -
    -
    <i class="icon-expand"></i> icon-expand
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/external-link-sign/index.html b/library/font_awesome/src/3.2.1/icon/external-link-sign/index.html deleted file mode 100644 index 102cb2d0b..000000000 --- a/library/font_awesome/src/3.2.1/icon/external-link-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-external-link-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-external-link-sign - - · - Unicode: f14c · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-external-link-sign -
    -
    -
    <i class="icon-external-link-sign"></i> icon-external-link-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/external-link/index.html b/library/font_awesome/src/3.2.1/icon/external-link/index.html deleted file mode 100644 index b00cea66e..000000000 --- a/library/font_awesome/src/3.2.1/icon/external-link/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-external-link: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-external-link - - · - Unicode: f08e · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-external-link -
    -
    -
    <i class="icon-external-link"></i> icon-external-link
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/eye-close/index.html b/library/font_awesome/src/3.2.1/icon/eye-close/index.html deleted file mode 100644 index 2f09dfd67..000000000 --- a/library/font_awesome/src/3.2.1/icon/eye-close/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-eye-close: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-eye-close - - · - Unicode: f070 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-eye-close -
    -
    -
    <i class="icon-eye-close"></i> icon-eye-close
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/eye-open/index.html b/library/font_awesome/src/3.2.1/icon/eye-open/index.html deleted file mode 100644 index cee72d473..000000000 --- a/library/font_awesome/src/3.2.1/icon/eye-open/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-eye-open: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-eye-open - - · - Unicode: f06e · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-eye-open -
    -
    -
    <i class="icon-eye-open"></i> icon-eye-open
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/facebook-sign/index.html b/library/font_awesome/src/3.2.1/icon/facebook-sign/index.html deleted file mode 100644 index ce197d249..000000000 --- a/library/font_awesome/src/3.2.1/icon/facebook-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-facebook-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-facebook-sign - - · - Unicode: f082 · - Created: v1.0 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-facebook-sign -
    -
    -
    <i class="icon-facebook-sign"></i> icon-facebook-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/facebook/index.html b/library/font_awesome/src/3.2.1/icon/facebook/index.html deleted file mode 100644 index 8df80427d..000000000 --- a/library/font_awesome/src/3.2.1/icon/facebook/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-facebook: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-facebook - - · - Unicode: f09a · - Created: v2.0 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-facebook -
    -
    -
    <i class="icon-facebook"></i> icon-facebook
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/facetime-video/index.html b/library/font_awesome/src/3.2.1/icon/facetime-video/index.html deleted file mode 100644 index 27a6d4c7e..000000000 --- a/library/font_awesome/src/3.2.1/icon/facetime-video/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-facetime-video: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-facetime-video - - · - Unicode: f03d · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-facetime-video -
    -
    -
    <i class="icon-facetime-video"></i> icon-facetime-video
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/fast-backward/index.html b/library/font_awesome/src/3.2.1/icon/fast-backward/index.html deleted file mode 100644 index 5def1fdaf..000000000 --- a/library/font_awesome/src/3.2.1/icon/fast-backward/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-fast-backward: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-fast-backward - - · - Unicode: f049 · - Created: v1.0 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-fast-backward -
    -
    -
    <i class="icon-fast-backward"></i> icon-fast-backward
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/fast-forward/index.html b/library/font_awesome/src/3.2.1/icon/fast-forward/index.html deleted file mode 100644 index 840d1a692..000000000 --- a/library/font_awesome/src/3.2.1/icon/fast-forward/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-fast-forward: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-fast-forward - - · - Unicode: f050 · - Created: v1.0 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-fast-forward -
    -
    -
    <i class="icon-fast-forward"></i> icon-fast-forward
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/female/index.html b/library/font_awesome/src/3.2.1/icon/female/index.html deleted file mode 100644 index d3c12d844..000000000 --- a/library/font_awesome/src/3.2.1/icon/female/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-female: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-female - - · - Unicode: f182 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-female -
    -
    -
    <i class="icon-female"></i> icon-female
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/fighter-jet/index.html b/library/font_awesome/src/3.2.1/icon/fighter-jet/index.html deleted file mode 100644 index d53371d59..000000000 --- a/library/font_awesome/src/3.2.1/icon/fighter-jet/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-fighter-jet: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-fighter-jet - - · - Unicode: f0fb · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-fighter-jet -
    -
    -
    <i class="icon-fighter-jet"></i> icon-fighter-jet
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/file-alt/index.html b/library/font_awesome/src/3.2.1/icon/file-alt/index.html deleted file mode 100644 index f9ce0deb6..000000000 --- a/library/font_awesome/src/3.2.1/icon/file-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-file-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-file-alt - - · - Unicode: f016 · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-file-alt -
    -
    -
    <i class="icon-file-alt"></i> icon-file-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/file-text-alt/index.html b/library/font_awesome/src/3.2.1/icon/file-text-alt/index.html deleted file mode 100644 index da1a9850a..000000000 --- a/library/font_awesome/src/3.2.1/icon/file-text-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-file-text-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-file-text-alt - - · - Unicode: f0f6 · - Created: v3.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-file-text-alt -
    -
    -
    <i class="icon-file-text-alt"></i> icon-file-text-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/file-text/index.html b/library/font_awesome/src/3.2.1/icon/file-text/index.html deleted file mode 100644 index b2dd0fed1..000000000 --- a/library/font_awesome/src/3.2.1/icon/file-text/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-file-text: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-file-text - - · - Unicode: f15c · - Created: v3.2 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-file-text -
    -
    -
    <i class="icon-file-text"></i> icon-file-text
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/file/index.html b/library/font_awesome/src/3.2.1/icon/file/index.html deleted file mode 100644 index d620d317e..000000000 --- a/library/font_awesome/src/3.2.1/icon/file/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-file: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-file - - · - Unicode: f15b · - Created: v3.2 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-file -
    -
    -
    <i class="icon-file"></i> icon-file
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/film/index.html b/library/font_awesome/src/3.2.1/icon/film/index.html deleted file mode 100644 index b758a4b7a..000000000 --- a/library/font_awesome/src/3.2.1/icon/film/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-film: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-film - - · - Unicode: f008 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-film -
    -
    -
    <i class="icon-film"></i> icon-film
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/filter/index.html b/library/font_awesome/src/3.2.1/icon/filter/index.html deleted file mode 100644 index 665252ebf..000000000 --- a/library/font_awesome/src/3.2.1/icon/filter/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-filter: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-filter - - · - Unicode: f0b0 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-filter -
    -
    -
    <i class="icon-filter"></i> icon-filter
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/fire-extinguisher/index.html b/library/font_awesome/src/3.2.1/icon/fire-extinguisher/index.html deleted file mode 100644 index 45211a6c9..000000000 --- a/library/font_awesome/src/3.2.1/icon/fire-extinguisher/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-fire-extinguisher: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-fire-extinguisher - - · - Unicode: f134 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-fire-extinguisher -
    -
    -
    <i class="icon-fire-extinguisher"></i> icon-fire-extinguisher
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/fire/index.html b/library/font_awesome/src/3.2.1/icon/fire/index.html deleted file mode 100644 index 882a4dee1..000000000 --- a/library/font_awesome/src/3.2.1/icon/fire/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-fire: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-fire - - · - Unicode: f06d · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-fire -
    -
    -
    <i class="icon-fire"></i> icon-fire
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/flag-alt/index.html b/library/font_awesome/src/3.2.1/icon/flag-alt/index.html deleted file mode 100644 index 839d0c32b..000000000 --- a/library/font_awesome/src/3.2.1/icon/flag-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-flag-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-flag-alt - - · - Unicode: f11d · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-flag-alt -
    -
    -
    <i class="icon-flag-alt"></i> icon-flag-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/flag-checkered/index.html b/library/font_awesome/src/3.2.1/icon/flag-checkered/index.html deleted file mode 100644 index 8ec4d2150..000000000 --- a/library/font_awesome/src/3.2.1/icon/flag-checkered/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-flag-checkered: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-flag-checkered - - · - Unicode: f11e · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-flag-checkered -
    -
    -
    <i class="icon-flag-checkered"></i> icon-flag-checkered
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/flag/index.html b/library/font_awesome/src/3.2.1/icon/flag/index.html deleted file mode 100644 index f3911091f..000000000 --- a/library/font_awesome/src/3.2.1/icon/flag/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-flag: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-flag - - · - Unicode: f024 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-flag -
    -
    -
    <i class="icon-flag"></i> icon-flag
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/flickr/index.html b/library/font_awesome/src/3.2.1/icon/flickr/index.html deleted file mode 100644 index 87092685d..000000000 --- a/library/font_awesome/src/3.2.1/icon/flickr/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-flickr: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-flickr - - · - Unicode: f16e · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-flickr -
    -
    -
    <i class="icon-flickr"></i> icon-flickr
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/folder-close-alt/index.html b/library/font_awesome/src/3.2.1/icon/folder-close-alt/index.html deleted file mode 100644 index 7856d6583..000000000 --- a/library/font_awesome/src/3.2.1/icon/folder-close-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-folder-close-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-folder-close-alt - - · - Unicode: f114 · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-folder-close-alt -
    -
    -
    <i class="icon-folder-close-alt"></i> icon-folder-close-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/folder-close/index.html b/library/font_awesome/src/3.2.1/icon/folder-close/index.html deleted file mode 100644 index 54613825b..000000000 --- a/library/font_awesome/src/3.2.1/icon/folder-close/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-folder-close: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-folder-close - - · - Unicode: f07b · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-folder-close -
    -
    -
    <i class="icon-folder-close"></i> icon-folder-close
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/folder-open-alt/index.html b/library/font_awesome/src/3.2.1/icon/folder-open-alt/index.html deleted file mode 100644 index 6af09bb8c..000000000 --- a/library/font_awesome/src/3.2.1/icon/folder-open-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-folder-open-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-folder-open-alt - - · - Unicode: f115 · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-folder-open-alt -
    -
    -
    <i class="icon-folder-open-alt"></i> icon-folder-open-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/folder-open/index.html b/library/font_awesome/src/3.2.1/icon/folder-open/index.html deleted file mode 100644 index 7c97b1724..000000000 --- a/library/font_awesome/src/3.2.1/icon/folder-open/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-folder-open: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-folder-open - - · - Unicode: f07c · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-folder-open -
    -
    -
    <i class="icon-folder-open"></i> icon-folder-open
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/font/index.html b/library/font_awesome/src/3.2.1/icon/font/index.html deleted file mode 100644 index 9a5f43953..000000000 --- a/library/font_awesome/src/3.2.1/icon/font/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-font: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-font - - · - Unicode: f031 · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-font -
    -
    -
    <i class="icon-font"></i> icon-font
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/food/index.html b/library/font_awesome/src/3.2.1/icon/food/index.html deleted file mode 100644 index c455da4e2..000000000 --- a/library/font_awesome/src/3.2.1/icon/food/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-food: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-food - - · - Unicode: f0f5 · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-food -
    -
    -
    <i class="icon-food"></i> icon-food
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/forward/index.html b/library/font_awesome/src/3.2.1/icon/forward/index.html deleted file mode 100644 index cae1db43c..000000000 --- a/library/font_awesome/src/3.2.1/icon/forward/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-forward: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-forward - - · - Unicode: f04e · - Created: v1.0 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-forward -
    -
    -
    <i class="icon-forward"></i> icon-forward
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/foursquare/index.html b/library/font_awesome/src/3.2.1/icon/foursquare/index.html deleted file mode 100644 index a7c0e2e0d..000000000 --- a/library/font_awesome/src/3.2.1/icon/foursquare/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-foursquare: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-foursquare - - · - Unicode: f180 · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-foursquare -
    -
    -
    <i class="icon-foursquare"></i> icon-foursquare
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/frown/index.html b/library/font_awesome/src/3.2.1/icon/frown/index.html deleted file mode 100644 index 9fa1c4032..000000000 --- a/library/font_awesome/src/3.2.1/icon/frown/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-frown: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-frown - - · - Unicode: f119 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-frown -
    -
    -
    <i class="icon-frown"></i> icon-frown
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/fullscreen/index.html b/library/font_awesome/src/3.2.1/icon/fullscreen/index.html deleted file mode 100644 index c8dc296d4..000000000 --- a/library/font_awesome/src/3.2.1/icon/fullscreen/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-fullscreen: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-fullscreen - - · - Unicode: f0b2 · - Created: v2.0 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-fullscreen -
    -
    -
    <i class="icon-fullscreen"></i> icon-fullscreen
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/gamepad/index.html b/library/font_awesome/src/3.2.1/icon/gamepad/index.html deleted file mode 100644 index b6749231d..000000000 --- a/library/font_awesome/src/3.2.1/icon/gamepad/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-gamepad: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-gamepad - - · - Unicode: f11b · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-gamepad -
    -
    -
    <i class="icon-gamepad"></i> icon-gamepad
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/gbp/index.html b/library/font_awesome/src/3.2.1/icon/gbp/index.html deleted file mode 100644 index f13fed073..000000000 --- a/library/font_awesome/src/3.2.1/icon/gbp/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-gbp: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-gbp - - · - Unicode: f154 · - Created: v3.2 · - Categories: - - Currency Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-gbp -
    -
    -
    <i class="icon-gbp"></i> icon-gbp
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/gift/index.html b/library/font_awesome/src/3.2.1/icon/gift/index.html deleted file mode 100644 index 813be301f..000000000 --- a/library/font_awesome/src/3.2.1/icon/gift/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-gift: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-gift - - · - Unicode: f06b · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-gift -
    -
    -
    <i class="icon-gift"></i> icon-gift
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/github-alt/index.html b/library/font_awesome/src/3.2.1/icon/github-alt/index.html deleted file mode 100644 index 5efb5c855..000000000 --- a/library/font_awesome/src/3.2.1/icon/github-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-github-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-github-alt - - · - Unicode: f113 · - Created: v3.0 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-github-alt -
    -
    -
    <i class="icon-github-alt"></i> icon-github-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/github-sign/index.html b/library/font_awesome/src/3.2.1/icon/github-sign/index.html deleted file mode 100644 index a56bdb9d8..000000000 --- a/library/font_awesome/src/3.2.1/icon/github-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-github-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-github-sign - - · - Unicode: f092 · - Created: v1.0 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-github-sign -
    -
    -
    <i class="icon-github-sign"></i> icon-github-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/github/index.html b/library/font_awesome/src/3.2.1/icon/github/index.html deleted file mode 100644 index 99a57e781..000000000 --- a/library/font_awesome/src/3.2.1/icon/github/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-github: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-github - - · - Unicode: f09b · - Created: v2.0 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-github -
    -
    -
    <i class="icon-github"></i> icon-github
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/gittip/index.html b/library/font_awesome/src/3.2.1/icon/gittip/index.html deleted file mode 100644 index f60630ea5..000000000 --- a/library/font_awesome/src/3.2.1/icon/gittip/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-gittip: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-gittip - - · - Unicode: f184 · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-gittip -
    -
    -
    <i class="icon-gittip"></i> icon-gittip
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/glass/index.html b/library/font_awesome/src/3.2.1/icon/glass/index.html deleted file mode 100644 index 3e07ab7ef..000000000 --- a/library/font_awesome/src/3.2.1/icon/glass/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-glass: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-glass - - · - Unicode: f000 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-glass -
    -
    -
    <i class="icon-glass"></i> icon-glass
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/globe/index.html b/library/font_awesome/src/3.2.1/icon/globe/index.html deleted file mode 100644 index d5302b1cf..000000000 --- a/library/font_awesome/src/3.2.1/icon/globe/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-globe: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-globe - - · - Unicode: f0ac · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-globe -
    -
    -
    <i class="icon-globe"></i> icon-globe
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/google-plus-sign/index.html b/library/font_awesome/src/3.2.1/icon/google-plus-sign/index.html deleted file mode 100644 index a8629e105..000000000 --- a/library/font_awesome/src/3.2.1/icon/google-plus-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-google-plus-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-google-plus-sign - - · - Unicode: f0d4 · - Created: v2.0 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-google-plus-sign -
    -
    -
    <i class="icon-google-plus-sign"></i> icon-google-plus-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/google-plus/index.html b/library/font_awesome/src/3.2.1/icon/google-plus/index.html deleted file mode 100644 index 3370c67bb..000000000 --- a/library/font_awesome/src/3.2.1/icon/google-plus/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-google-plus: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-google-plus - - · - Unicode: f0d5 · - Created: v2.0 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-google-plus -
    -
    -
    <i class="icon-google-plus"></i> icon-google-plus
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/group/index.html b/library/font_awesome/src/3.2.1/icon/group/index.html deleted file mode 100644 index 0e689f76a..000000000 --- a/library/font_awesome/src/3.2.1/icon/group/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-group: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-group - - · - Unicode: f0c0 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-group -
    -
    -
    <i class="icon-group"></i> icon-group
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/h-sign/index.html b/library/font_awesome/src/3.2.1/icon/h-sign/index.html deleted file mode 100644 index cf445e669..000000000 --- a/library/font_awesome/src/3.2.1/icon/h-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-h-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-h-sign - - · - Unicode: f0fd · - Created: v3.0 · - Categories: - - Medical Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-h-sign -
    -
    -
    <i class="icon-h-sign"></i> icon-h-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/hand-down/index.html b/library/font_awesome/src/3.2.1/icon/hand-down/index.html deleted file mode 100644 index 4cc230a8d..000000000 --- a/library/font_awesome/src/3.2.1/icon/hand-down/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-hand-down: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-hand-down - - · - Unicode: f0a7 · - Created: v2.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-hand-down -
    -
    -
    <i class="icon-hand-down"></i> icon-hand-down
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/hand-left/index.html b/library/font_awesome/src/3.2.1/icon/hand-left/index.html deleted file mode 100644 index 28aa29348..000000000 --- a/library/font_awesome/src/3.2.1/icon/hand-left/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-hand-left: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-hand-left - - · - Unicode: f0a5 · - Created: v2.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-hand-left -
    -
    -
    <i class="icon-hand-left"></i> icon-hand-left
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/hand-right/index.html b/library/font_awesome/src/3.2.1/icon/hand-right/index.html deleted file mode 100644 index 31663d6f1..000000000 --- a/library/font_awesome/src/3.2.1/icon/hand-right/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-hand-right: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-hand-right - - · - Unicode: f0a4 · - Created: v2.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-hand-right -
    -
    -
    <i class="icon-hand-right"></i> icon-hand-right
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/hand-up/index.html b/library/font_awesome/src/3.2.1/icon/hand-up/index.html deleted file mode 100644 index 8168f0d3b..000000000 --- a/library/font_awesome/src/3.2.1/icon/hand-up/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-hand-up: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-hand-up - - · - Unicode: f0a6 · - Created: v2.0 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-hand-up -
    -
    -
    <i class="icon-hand-up"></i> icon-hand-up
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/hdd/index.html b/library/font_awesome/src/3.2.1/icon/hdd/index.html deleted file mode 100644 index 1f58003a0..000000000 --- a/library/font_awesome/src/3.2.1/icon/hdd/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-hdd: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-hdd - - · - Unicode: f0a0 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-hdd -
    -
    -
    <i class="icon-hdd"></i> icon-hdd
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/headphones/index.html b/library/font_awesome/src/3.2.1/icon/headphones/index.html deleted file mode 100644 index b85d941c1..000000000 --- a/library/font_awesome/src/3.2.1/icon/headphones/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-headphones: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-headphones - - · - Unicode: f025 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-headphones -
    -
    -
    <i class="icon-headphones"></i> icon-headphones
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/heart-empty/index.html b/library/font_awesome/src/3.2.1/icon/heart-empty/index.html deleted file mode 100644 index 4d2166a4f..000000000 --- a/library/font_awesome/src/3.2.1/icon/heart-empty/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-heart-empty: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-heart-empty - - · - Unicode: f08a · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-heart-empty -
    -
    -
    <i class="icon-heart-empty"></i> icon-heart-empty
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/heart/index.html b/library/font_awesome/src/3.2.1/icon/heart/index.html deleted file mode 100644 index 3da9fbda0..000000000 --- a/library/font_awesome/src/3.2.1/icon/heart/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-heart: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-heart - - · - Unicode: f004 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-heart -
    -
    -
    <i class="icon-heart"></i> icon-heart
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/home/index.html b/library/font_awesome/src/3.2.1/icon/home/index.html deleted file mode 100644 index 04ea6e624..000000000 --- a/library/font_awesome/src/3.2.1/icon/home/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-home: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-home - - · - Unicode: f015 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-home -
    -
    -
    <i class="icon-home"></i> icon-home
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/hospital/index.html b/library/font_awesome/src/3.2.1/icon/hospital/index.html deleted file mode 100644 index 184e62a30..000000000 --- a/library/font_awesome/src/3.2.1/icon/hospital/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-hospital: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-hospital - - · - Unicode: f0f8 · - Created: v3.0 · - Categories: - - Medical Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-hospital -
    -
    -
    <i class="icon-hospital"></i> icon-hospital
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/html5/index.html b/library/font_awesome/src/3.2.1/icon/html5/index.html deleted file mode 100644 index d61430de9..000000000 --- a/library/font_awesome/src/3.2.1/icon/html5/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-html5: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-html5 - - · - Unicode: f13b · - Created: v3.1 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-html5 -
    -
    -
    <i class="icon-html5"></i> icon-html5
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/inbox/index.html b/library/font_awesome/src/3.2.1/icon/inbox/index.html deleted file mode 100644 index 8913a224e..000000000 --- a/library/font_awesome/src/3.2.1/icon/inbox/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-inbox: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-inbox - - · - Unicode: f01c · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-inbox -
    -
    -
    <i class="icon-inbox"></i> icon-inbox
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/indent-left/index.html b/library/font_awesome/src/3.2.1/icon/indent-left/index.html deleted file mode 100644 index c1b0d133f..000000000 --- a/library/font_awesome/src/3.2.1/icon/indent-left/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-indent-left: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-indent-left - - · - Unicode: f03b · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-indent-left -
    -
    -
    <i class="icon-indent-left"></i> icon-indent-left
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/indent-right/index.html b/library/font_awesome/src/3.2.1/icon/indent-right/index.html deleted file mode 100644 index 93978a7ab..000000000 --- a/library/font_awesome/src/3.2.1/icon/indent-right/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-indent-right: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-indent-right - - · - Unicode: f03c · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-indent-right -
    -
    -
    <i class="icon-indent-right"></i> icon-indent-right
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/info-sign/index.html b/library/font_awesome/src/3.2.1/icon/info-sign/index.html deleted file mode 100644 index 05069266d..000000000 --- a/library/font_awesome/src/3.2.1/icon/info-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-info-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-info-sign - - · - Unicode: f05a · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-info-sign -
    -
    -
    <i class="icon-info-sign"></i> icon-info-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/info/index.html b/library/font_awesome/src/3.2.1/icon/info/index.html deleted file mode 100644 index cb9096c26..000000000 --- a/library/font_awesome/src/3.2.1/icon/info/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-info: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-info - - · - Unicode: f129 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-info -
    -
    -
    <i class="icon-info"></i> icon-info
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/inr/index.html b/library/font_awesome/src/3.2.1/icon/inr/index.html deleted file mode 100644 index 7474f9582..000000000 --- a/library/font_awesome/src/3.2.1/icon/inr/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-inr: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-inr - - · - Unicode: f156 · - Created: v3.2 · - Categories: - - Currency Icons - - - - · Aliases: - - icon-rupee - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-inr -
    -
    -
    <i class="icon-inr"></i> icon-inr
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/instagram/index.html b/library/font_awesome/src/3.2.1/icon/instagram/index.html deleted file mode 100644 index b1db62396..000000000 --- a/library/font_awesome/src/3.2.1/icon/instagram/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-instagram: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-instagram - - · - Unicode: f16d · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-instagram -
    -
    -
    <i class="icon-instagram"></i> icon-instagram
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/italic/index.html b/library/font_awesome/src/3.2.1/icon/italic/index.html deleted file mode 100644 index c91237791..000000000 --- a/library/font_awesome/src/3.2.1/icon/italic/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-italic: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-italic - - · - Unicode: f033 · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-italic -
    -
    -
    <i class="icon-italic"></i> icon-italic
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/jpy/index.html b/library/font_awesome/src/3.2.1/icon/jpy/index.html deleted file mode 100644 index 128770129..000000000 --- a/library/font_awesome/src/3.2.1/icon/jpy/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-jpy: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-jpy - - · - Unicode: f157 · - Created: v3.2 · - Categories: - - Currency Icons - - - - · Aliases: - - icon-yen - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-jpy -
    -
    -
    <i class="icon-jpy"></i> icon-jpy
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/key/index.html b/library/font_awesome/src/3.2.1/icon/key/index.html deleted file mode 100644 index ef3573e3f..000000000 --- a/library/font_awesome/src/3.2.1/icon/key/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-key: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-key - - · - Unicode: f084 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-key -
    -
    -
    <i class="icon-key"></i> icon-key
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/keyboard/index.html b/library/font_awesome/src/3.2.1/icon/keyboard/index.html deleted file mode 100644 index 084f2d173..000000000 --- a/library/font_awesome/src/3.2.1/icon/keyboard/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-keyboard: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-keyboard - - · - Unicode: f11c · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-keyboard -
    -
    -
    <i class="icon-keyboard"></i> icon-keyboard
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/krw/index.html b/library/font_awesome/src/3.2.1/icon/krw/index.html deleted file mode 100644 index 902411891..000000000 --- a/library/font_awesome/src/3.2.1/icon/krw/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-krw: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-krw - - · - Unicode: f159 · - Created: v3.2 · - Categories: - - Currency Icons - - - - · Aliases: - - icon-won - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-krw -
    -
    -
    <i class="icon-krw"></i> icon-krw
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/laptop/index.html b/library/font_awesome/src/3.2.1/icon/laptop/index.html deleted file mode 100644 index 2be4f34f9..000000000 --- a/library/font_awesome/src/3.2.1/icon/laptop/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-laptop: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-laptop - - · - Unicode: f109 · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-laptop -
    -
    -
    <i class="icon-laptop"></i> icon-laptop
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/leaf/index.html b/library/font_awesome/src/3.2.1/icon/leaf/index.html deleted file mode 100644 index 1d9bff360..000000000 --- a/library/font_awesome/src/3.2.1/icon/leaf/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-leaf: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-leaf - - · - Unicode: f06c · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-leaf -
    -
    -
    <i class="icon-leaf"></i> icon-leaf
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/legal/index.html b/library/font_awesome/src/3.2.1/icon/legal/index.html deleted file mode 100644 index 9ac9ca2af..000000000 --- a/library/font_awesome/src/3.2.1/icon/legal/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-legal: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-legal - - · - Unicode: f0e3 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-legal -
    -
    -
    <i class="icon-legal"></i> icon-legal
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/lemon/index.html b/library/font_awesome/src/3.2.1/icon/lemon/index.html deleted file mode 100644 index 3072c5a20..000000000 --- a/library/font_awesome/src/3.2.1/icon/lemon/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-lemon: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-lemon - - · - Unicode: f094 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-lemon -
    -
    -
    <i class="icon-lemon"></i> icon-lemon
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/level-down/index.html b/library/font_awesome/src/3.2.1/icon/level-down/index.html deleted file mode 100644 index 32beec6dd..000000000 --- a/library/font_awesome/src/3.2.1/icon/level-down/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-level-down: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-level-down - - · - Unicode: f149 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-level-down -
    -
    -
    <i class="icon-level-down"></i> icon-level-down
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/level-up/index.html b/library/font_awesome/src/3.2.1/icon/level-up/index.html deleted file mode 100644 index 4a1b1dfea..000000000 --- a/library/font_awesome/src/3.2.1/icon/level-up/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-level-up: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-level-up - - · - Unicode: f148 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-level-up -
    -
    -
    <i class="icon-level-up"></i> icon-level-up
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/lightbulb/index.html b/library/font_awesome/src/3.2.1/icon/lightbulb/index.html deleted file mode 100644 index c7eda03e9..000000000 --- a/library/font_awesome/src/3.2.1/icon/lightbulb/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-lightbulb: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-lightbulb - - · - Unicode: f0eb · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-lightbulb -
    -
    -
    <i class="icon-lightbulb"></i> icon-lightbulb
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/link/index.html b/library/font_awesome/src/3.2.1/icon/link/index.html deleted file mode 100644 index 9e056532b..000000000 --- a/library/font_awesome/src/3.2.1/icon/link/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-link: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-link - - · - Unicode: f0c1 · - Created: v2.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-link -
    -
    -
    <i class="icon-link"></i> icon-link
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/linkedin-sign/index.html b/library/font_awesome/src/3.2.1/icon/linkedin-sign/index.html deleted file mode 100644 index 1fa213997..000000000 --- a/library/font_awesome/src/3.2.1/icon/linkedin-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-linkedin-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-linkedin-sign - - · - Unicode: f08c · - Created: v1.0 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-linkedin-sign -
    -
    -
    <i class="icon-linkedin-sign"></i> icon-linkedin-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/linkedin/index.html b/library/font_awesome/src/3.2.1/icon/linkedin/index.html deleted file mode 100644 index bd43ade8a..000000000 --- a/library/font_awesome/src/3.2.1/icon/linkedin/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-linkedin: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-linkedin - - · - Unicode: f0e1 · - Created: v2.0 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-linkedin -
    -
    -
    <i class="icon-linkedin"></i> icon-linkedin
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/linux/index.html b/library/font_awesome/src/3.2.1/icon/linux/index.html deleted file mode 100644 index bfac729d5..000000000 --- a/library/font_awesome/src/3.2.1/icon/linux/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-linux: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-linux - - · - Unicode: f17c · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-linux -
    -
    -
    <i class="icon-linux"></i> icon-linux
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/list-alt/index.html b/library/font_awesome/src/3.2.1/icon/list-alt/index.html deleted file mode 100644 index 2dfcff0de..000000000 --- a/library/font_awesome/src/3.2.1/icon/list-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-list-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-list-alt - - · - Unicode: f022 · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-list-alt -
    -
    -
    <i class="icon-list-alt"></i> icon-list-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/list-ol/index.html b/library/font_awesome/src/3.2.1/icon/list-ol/index.html deleted file mode 100644 index ad4a78f98..000000000 --- a/library/font_awesome/src/3.2.1/icon/list-ol/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-list-ol: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-list-ol - - · - Unicode: f0cb · - Created: v2.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-list-ol -
    -
    -
    <i class="icon-list-ol"></i> icon-list-ol
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/list-ul/index.html b/library/font_awesome/src/3.2.1/icon/list-ul/index.html deleted file mode 100644 index 18a7e8c5a..000000000 --- a/library/font_awesome/src/3.2.1/icon/list-ul/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-list-ul: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-list-ul - - · - Unicode: f0ca · - Created: v2.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-list-ul -
    -
    -
    <i class="icon-list-ul"></i> icon-list-ul
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/list/index.html b/library/font_awesome/src/3.2.1/icon/list/index.html deleted file mode 100644 index 86b46f4f1..000000000 --- a/library/font_awesome/src/3.2.1/icon/list/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-list: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-list - - · - Unicode: f03a · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-list -
    -
    -
    <i class="icon-list"></i> icon-list
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/location-arrow/index.html b/library/font_awesome/src/3.2.1/icon/location-arrow/index.html deleted file mode 100644 index 02a3c43ae..000000000 --- a/library/font_awesome/src/3.2.1/icon/location-arrow/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-location-arrow: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-location-arrow - - · - Unicode: f124 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-location-arrow -
    -
    -
    <i class="icon-location-arrow"></i> icon-location-arrow
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/lock/index.html b/library/font_awesome/src/3.2.1/icon/lock/index.html deleted file mode 100644 index c64ffe12f..000000000 --- a/library/font_awesome/src/3.2.1/icon/lock/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-lock: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-lock - - · - Unicode: f023 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-lock -
    -
    -
    <i class="icon-lock"></i> icon-lock
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/long-arrow-down/index.html b/library/font_awesome/src/3.2.1/icon/long-arrow-down/index.html deleted file mode 100644 index 84d3e00f9..000000000 --- a/library/font_awesome/src/3.2.1/icon/long-arrow-down/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-long-arrow-down: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-long-arrow-down - - · - Unicode: f175 · - Created: v3.2 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-long-arrow-down -
    -
    -
    <i class="icon-long-arrow-down"></i> icon-long-arrow-down
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/long-arrow-left/index.html b/library/font_awesome/src/3.2.1/icon/long-arrow-left/index.html deleted file mode 100644 index b49665c0d..000000000 --- a/library/font_awesome/src/3.2.1/icon/long-arrow-left/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-long-arrow-left: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-long-arrow-left - - · - Unicode: f177 · - Created: v3.2 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-long-arrow-left -
    -
    -
    <i class="icon-long-arrow-left"></i> icon-long-arrow-left
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/long-arrow-right/index.html b/library/font_awesome/src/3.2.1/icon/long-arrow-right/index.html deleted file mode 100644 index a5d5a98e0..000000000 --- a/library/font_awesome/src/3.2.1/icon/long-arrow-right/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-long-arrow-right: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-long-arrow-right - - · - Unicode: f178 · - Created: v3.2 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-long-arrow-right -
    -
    -
    <i class="icon-long-arrow-right"></i> icon-long-arrow-right
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/long-arrow-up/index.html b/library/font_awesome/src/3.2.1/icon/long-arrow-up/index.html deleted file mode 100644 index fa1985e59..000000000 --- a/library/font_awesome/src/3.2.1/icon/long-arrow-up/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-long-arrow-up: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-long-arrow-up - - · - Unicode: f176 · - Created: v3.2 · - Categories: - - Directional Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-long-arrow-up -
    -
    -
    <i class="icon-long-arrow-up"></i> icon-long-arrow-up
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/magic/index.html b/library/font_awesome/src/3.2.1/icon/magic/index.html deleted file mode 100644 index ffd1995e6..000000000 --- a/library/font_awesome/src/3.2.1/icon/magic/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-magic: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-magic - - · - Unicode: f0d0 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-magic -
    -
    -
    <i class="icon-magic"></i> icon-magic
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/magnet/index.html b/library/font_awesome/src/3.2.1/icon/magnet/index.html deleted file mode 100644 index 669379bc1..000000000 --- a/library/font_awesome/src/3.2.1/icon/magnet/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-magnet: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-magnet - - · - Unicode: f076 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-magnet -
    -
    -
    <i class="icon-magnet"></i> icon-magnet
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/mail-reply-all/index.html b/library/font_awesome/src/3.2.1/icon/mail-reply-all/index.html deleted file mode 100644 index 1a8dc0f15..000000000 --- a/library/font_awesome/src/3.2.1/icon/mail-reply-all/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-mail-reply-all: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-mail-reply-all - - · - Unicode: f122 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-mail-reply-all -
    -
    -
    <i class="icon-mail-reply-all"></i> icon-mail-reply-all
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/male/index.html b/library/font_awesome/src/3.2.1/icon/male/index.html deleted file mode 100644 index ffc56809c..000000000 --- a/library/font_awesome/src/3.2.1/icon/male/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-male: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-male - - · - Unicode: f183 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-male -
    -
    -
    <i class="icon-male"></i> icon-male
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/map-marker/index.html b/library/font_awesome/src/3.2.1/icon/map-marker/index.html deleted file mode 100644 index a6a54e4aa..000000000 --- a/library/font_awesome/src/3.2.1/icon/map-marker/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-map-marker: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-map-marker - - · - Unicode: f041 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-map-marker -
    -
    -
    <i class="icon-map-marker"></i> icon-map-marker
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/maxcdn/index.html b/library/font_awesome/src/3.2.1/icon/maxcdn/index.html deleted file mode 100644 index ce1490825..000000000 --- a/library/font_awesome/src/3.2.1/icon/maxcdn/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-maxcdn: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-maxcdn - - · - Unicode: f136 · - Created: v3.1 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-maxcdn -
    -
    -
    <i class="icon-maxcdn"></i> icon-maxcdn
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/medkit/index.html b/library/font_awesome/src/3.2.1/icon/medkit/index.html deleted file mode 100644 index 954ce242e..000000000 --- a/library/font_awesome/src/3.2.1/icon/medkit/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-medkit: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-medkit - - · - Unicode: f0fa · - Created: v3.0 · - Categories: - - Medical Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-medkit -
    -
    -
    <i class="icon-medkit"></i> icon-medkit
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/meh/index.html b/library/font_awesome/src/3.2.1/icon/meh/index.html deleted file mode 100644 index e344e19de..000000000 --- a/library/font_awesome/src/3.2.1/icon/meh/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-meh: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-meh - - · - Unicode: f11a · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-meh -
    -
    -
    <i class="icon-meh"></i> icon-meh
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/microphone-off/index.html b/library/font_awesome/src/3.2.1/icon/microphone-off/index.html deleted file mode 100644 index 2201b4e7c..000000000 --- a/library/font_awesome/src/3.2.1/icon/microphone-off/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-microphone-off: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-microphone-off - - · - Unicode: f131 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-microphone-off -
    -
    -
    <i class="icon-microphone-off"></i> icon-microphone-off
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/microphone/index.html b/library/font_awesome/src/3.2.1/icon/microphone/index.html deleted file mode 100644 index fe900f56f..000000000 --- a/library/font_awesome/src/3.2.1/icon/microphone/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-microphone: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-microphone - - · - Unicode: f130 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-microphone -
    -
    -
    <i class="icon-microphone"></i> icon-microphone
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/minus-sign-alt/index.html b/library/font_awesome/src/3.2.1/icon/minus-sign-alt/index.html deleted file mode 100644 index 0b6339059..000000000 --- a/library/font_awesome/src/3.2.1/icon/minus-sign-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-minus-sign-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-minus-sign-alt - - · - Unicode: f146 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-minus-sign-alt -
    -
    -
    <i class="icon-minus-sign-alt"></i> icon-minus-sign-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/minus-sign/index.html b/library/font_awesome/src/3.2.1/icon/minus-sign/index.html deleted file mode 100644 index e02c1d88a..000000000 --- a/library/font_awesome/src/3.2.1/icon/minus-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-minus-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-minus-sign - - · - Unicode: f056 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-minus-sign -
    -
    -
    <i class="icon-minus-sign"></i> icon-minus-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/minus/index.html b/library/font_awesome/src/3.2.1/icon/minus/index.html deleted file mode 100644 index c5bdf8887..000000000 --- a/library/font_awesome/src/3.2.1/icon/minus/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-minus: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-minus - - · - Unicode: f068 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-minus -
    -
    -
    <i class="icon-minus"></i> icon-minus
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/mobile-phone/index.html b/library/font_awesome/src/3.2.1/icon/mobile-phone/index.html deleted file mode 100644 index 26a6ddf65..000000000 --- a/library/font_awesome/src/3.2.1/icon/mobile-phone/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-mobile-phone: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-mobile-phone - - · - Unicode: f10b · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-mobile-phone -
    -
    -
    <i class="icon-mobile-phone"></i> icon-mobile-phone
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/money/index.html b/library/font_awesome/src/3.2.1/icon/money/index.html deleted file mode 100644 index 268b62d77..000000000 --- a/library/font_awesome/src/3.2.1/icon/money/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-money: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-money - - · - Unicode: f0d6 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-money -
    -
    -
    <i class="icon-money"></i> icon-money
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/moon/index.html b/library/font_awesome/src/3.2.1/icon/moon/index.html deleted file mode 100644 index de8e99b19..000000000 --- a/library/font_awesome/src/3.2.1/icon/moon/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-moon: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-moon - - · - Unicode: f186 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-moon -
    -
    -
    <i class="icon-moon"></i> icon-moon
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/move/index.html b/library/font_awesome/src/3.2.1/icon/move/index.html deleted file mode 100644 index 6d34735a9..000000000 --- a/library/font_awesome/src/3.2.1/icon/move/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-move: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-move - - · - Unicode: f047 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-move -
    -
    -
    <i class="icon-move"></i> icon-move
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/music/index.html b/library/font_awesome/src/3.2.1/icon/music/index.html deleted file mode 100644 index 79464c5a5..000000000 --- a/library/font_awesome/src/3.2.1/icon/music/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-music: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-music - - · - Unicode: f001 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-music -
    -
    -
    <i class="icon-music"></i> icon-music
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/off/index.html b/library/font_awesome/src/3.2.1/icon/off/index.html deleted file mode 100644 index 7a6b1ff99..000000000 --- a/library/font_awesome/src/3.2.1/icon/off/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-off: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-off - - · - Unicode: f011 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - · Aliases: - - icon-power-off - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-off -
    -
    -
    <i class="icon-off"></i> icon-off
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/ok-circle/index.html b/library/font_awesome/src/3.2.1/icon/ok-circle/index.html deleted file mode 100644 index 4983c67f6..000000000 --- a/library/font_awesome/src/3.2.1/icon/ok-circle/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-ok-circle: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-ok-circle - - · - Unicode: f05d · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-ok-circle -
    -
    -
    <i class="icon-ok-circle"></i> icon-ok-circle
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/ok-sign/index.html b/library/font_awesome/src/3.2.1/icon/ok-sign/index.html deleted file mode 100644 index 4b256c138..000000000 --- a/library/font_awesome/src/3.2.1/icon/ok-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-ok-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-ok-sign - - · - Unicode: f058 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-ok-sign -
    -
    -
    <i class="icon-ok-sign"></i> icon-ok-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/ok/index.html b/library/font_awesome/src/3.2.1/icon/ok/index.html deleted file mode 100644 index dd095945b..000000000 --- a/library/font_awesome/src/3.2.1/icon/ok/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-ok: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-ok - - · - Unicode: f00c · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-ok -
    -
    -
    <i class="icon-ok"></i> icon-ok
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/paper-clip/index.html b/library/font_awesome/src/3.2.1/icon/paper-clip/index.html deleted file mode 100644 index ff213c7a7..000000000 --- a/library/font_awesome/src/3.2.1/icon/paper-clip/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-paper-clip: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-paper-clip - - · - Unicode: f0c6 · - Created: v2.0 · - Categories: - - Text Editor Icons - - - - · Aliases: - - icon-paperclip - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-paper-clip -
    -
    -
    <i class="icon-paper-clip"></i> icon-paper-clip
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/paste/index.html b/library/font_awesome/src/3.2.1/icon/paste/index.html deleted file mode 100644 index 9389aa15a..000000000 --- a/library/font_awesome/src/3.2.1/icon/paste/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-paste: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-paste - - · - Unicode: f0ea · - Created: v2.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-paste -
    -
    -
    <i class="icon-paste"></i> icon-paste
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/pause/index.html b/library/font_awesome/src/3.2.1/icon/pause/index.html deleted file mode 100644 index 35c7fbfb1..000000000 --- a/library/font_awesome/src/3.2.1/icon/pause/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-pause: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-pause - - · - Unicode: f04c · - Created: v1.0 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-pause -
    -
    -
    <i class="icon-pause"></i> icon-pause
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/pencil/index.html b/library/font_awesome/src/3.2.1/icon/pencil/index.html deleted file mode 100644 index 4209b1a9d..000000000 --- a/library/font_awesome/src/3.2.1/icon/pencil/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-pencil: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-pencil - - · - Unicode: f040 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-pencil -
    -
    -
    <i class="icon-pencil"></i> icon-pencil
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/phone-sign/index.html b/library/font_awesome/src/3.2.1/icon/phone-sign/index.html deleted file mode 100644 index 3d60922c3..000000000 --- a/library/font_awesome/src/3.2.1/icon/phone-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-phone-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-phone-sign - - · - Unicode: f098 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-phone-sign -
    -
    -
    <i class="icon-phone-sign"></i> icon-phone-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/phone/index.html b/library/font_awesome/src/3.2.1/icon/phone/index.html deleted file mode 100644 index b37897e44..000000000 --- a/library/font_awesome/src/3.2.1/icon/phone/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-phone: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-phone - - · - Unicode: f095 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-phone -
    -
    -
    <i class="icon-phone"></i> icon-phone
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/picture/index.html b/library/font_awesome/src/3.2.1/icon/picture/index.html deleted file mode 100644 index 35cd2ea93..000000000 --- a/library/font_awesome/src/3.2.1/icon/picture/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-picture: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-picture - - · - Unicode: f03e · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-picture -
    -
    -
    <i class="icon-picture"></i> icon-picture
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/pinterest-sign/index.html b/library/font_awesome/src/3.2.1/icon/pinterest-sign/index.html deleted file mode 100644 index 0ab362e3d..000000000 --- a/library/font_awesome/src/3.2.1/icon/pinterest-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-pinterest-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-pinterest-sign - - · - Unicode: f0d3 · - Created: v2.0 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-pinterest-sign -
    -
    -
    <i class="icon-pinterest-sign"></i> icon-pinterest-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/pinterest/index.html b/library/font_awesome/src/3.2.1/icon/pinterest/index.html deleted file mode 100644 index 557e94e8b..000000000 --- a/library/font_awesome/src/3.2.1/icon/pinterest/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-pinterest: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-pinterest - - · - Unicode: f0d2 · - Created: v2.0 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-pinterest -
    -
    -
    <i class="icon-pinterest"></i> icon-pinterest
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/plane/index.html b/library/font_awesome/src/3.2.1/icon/plane/index.html deleted file mode 100644 index 1543b9367..000000000 --- a/library/font_awesome/src/3.2.1/icon/plane/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-plane: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-plane - - · - Unicode: f072 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-plane -
    -
    -
    <i class="icon-plane"></i> icon-plane
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/play-circle/index.html b/library/font_awesome/src/3.2.1/icon/play-circle/index.html deleted file mode 100644 index 78d958d29..000000000 --- a/library/font_awesome/src/3.2.1/icon/play-circle/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-play-circle: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-play-circle - - · - Unicode: f01d · - Created: v1.0 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-play-circle -
    -
    -
    <i class="icon-play-circle"></i> icon-play-circle
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/play-sign/index.html b/library/font_awesome/src/3.2.1/icon/play-sign/index.html deleted file mode 100644 index 777a8c892..000000000 --- a/library/font_awesome/src/3.2.1/icon/play-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-play-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-play-sign - - · - Unicode: f144 · - Created: v3.1 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-play-sign -
    -
    -
    <i class="icon-play-sign"></i> icon-play-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/play/index.html b/library/font_awesome/src/3.2.1/icon/play/index.html deleted file mode 100644 index 1af20b77b..000000000 --- a/library/font_awesome/src/3.2.1/icon/play/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-play: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-play - - · - Unicode: f04b · - Created: v1.0 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-play -
    -
    -
    <i class="icon-play"></i> icon-play
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/plus-sign-alt/index.html b/library/font_awesome/src/3.2.1/icon/plus-sign-alt/index.html deleted file mode 100644 index 6feba6d7e..000000000 --- a/library/font_awesome/src/3.2.1/icon/plus-sign-alt/index.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - - icon-plus-sign-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-plus-sign-alt - - · - Unicode: f0fe · - Created: v3.0 · - Categories: - - Medical Icons, - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-plus-sign-alt -
    -
    -
    <i class="icon-plus-sign-alt"></i> icon-plus-sign-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/plus-sign/index.html b/library/font_awesome/src/3.2.1/icon/plus-sign/index.html deleted file mode 100644 index dd43bdc85..000000000 --- a/library/font_awesome/src/3.2.1/icon/plus-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-plus-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-plus-sign - - · - Unicode: f055 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-plus-sign -
    -
    -
    <i class="icon-plus-sign"></i> icon-plus-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/plus/index.html b/library/font_awesome/src/3.2.1/icon/plus/index.html deleted file mode 100644 index dd2e93167..000000000 --- a/library/font_awesome/src/3.2.1/icon/plus/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-plus: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-plus - - · - Unicode: f067 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-plus -
    -
    -
    <i class="icon-plus"></i> icon-plus
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/print/index.html b/library/font_awesome/src/3.2.1/icon/print/index.html deleted file mode 100644 index 01423d36a..000000000 --- a/library/font_awesome/src/3.2.1/icon/print/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-print: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-print - - · - Unicode: f02f · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-print -
    -
    -
    <i class="icon-print"></i> icon-print
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/pushpin/index.html b/library/font_awesome/src/3.2.1/icon/pushpin/index.html deleted file mode 100644 index e7c84fed8..000000000 --- a/library/font_awesome/src/3.2.1/icon/pushpin/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-pushpin: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-pushpin - - · - Unicode: f08d · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-pushpin -
    -
    -
    <i class="icon-pushpin"></i> icon-pushpin
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/puzzle-piece/index.html b/library/font_awesome/src/3.2.1/icon/puzzle-piece/index.html deleted file mode 100644 index aa4aa9e6f..000000000 --- a/library/font_awesome/src/3.2.1/icon/puzzle-piece/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-puzzle-piece: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-puzzle-piece - - · - Unicode: f12e · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-puzzle-piece -
    -
    -
    <i class="icon-puzzle-piece"></i> icon-puzzle-piece
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/qrcode/index.html b/library/font_awesome/src/3.2.1/icon/qrcode/index.html deleted file mode 100644 index edb87cfd6..000000000 --- a/library/font_awesome/src/3.2.1/icon/qrcode/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-qrcode: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-qrcode - - · - Unicode: f029 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-qrcode -
    -
    -
    <i class="icon-qrcode"></i> icon-qrcode
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/question-sign/index.html b/library/font_awesome/src/3.2.1/icon/question-sign/index.html deleted file mode 100644 index 3565fe1ce..000000000 --- a/library/font_awesome/src/3.2.1/icon/question-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-question-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-question-sign - - · - Unicode: f059 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-question-sign -
    -
    -
    <i class="icon-question-sign"></i> icon-question-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/question/index.html b/library/font_awesome/src/3.2.1/icon/question/index.html deleted file mode 100644 index 4c9642f16..000000000 --- a/library/font_awesome/src/3.2.1/icon/question/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-question: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-question - - · - Unicode: f128 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-question -
    -
    -
    <i class="icon-question"></i> icon-question
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/quote-left/index.html b/library/font_awesome/src/3.2.1/icon/quote-left/index.html deleted file mode 100644 index f5801a726..000000000 --- a/library/font_awesome/src/3.2.1/icon/quote-left/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-quote-left: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-quote-left - - · - Unicode: f10d · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-quote-left -
    -
    -
    <i class="icon-quote-left"></i> icon-quote-left
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/quote-right/index.html b/library/font_awesome/src/3.2.1/icon/quote-right/index.html deleted file mode 100644 index d86492ddc..000000000 --- a/library/font_awesome/src/3.2.1/icon/quote-right/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-quote-right: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-quote-right - - · - Unicode: f10e · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-quote-right -
    -
    -
    <i class="icon-quote-right"></i> icon-quote-right
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/random/index.html b/library/font_awesome/src/3.2.1/icon/random/index.html deleted file mode 100644 index ecea8f077..000000000 --- a/library/font_awesome/src/3.2.1/icon/random/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-random: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-random - - · - Unicode: f074 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-random -
    -
    -
    <i class="icon-random"></i> icon-random
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/refresh/index.html b/library/font_awesome/src/3.2.1/icon/refresh/index.html deleted file mode 100644 index 0ea53e72a..000000000 --- a/library/font_awesome/src/3.2.1/icon/refresh/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-refresh: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-refresh - - · - Unicode: f021 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-refresh -
    -
    -
    <i class="icon-refresh"></i> icon-refresh
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/remove-circle/index.html b/library/font_awesome/src/3.2.1/icon/remove-circle/index.html deleted file mode 100644 index 5ccd832b3..000000000 --- a/library/font_awesome/src/3.2.1/icon/remove-circle/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-remove-circle: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-remove-circle - - · - Unicode: f05c · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-remove-circle -
    -
    -
    <i class="icon-remove-circle"></i> icon-remove-circle
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/remove-sign/index.html b/library/font_awesome/src/3.2.1/icon/remove-sign/index.html deleted file mode 100644 index e20bda87b..000000000 --- a/library/font_awesome/src/3.2.1/icon/remove-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-remove-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-remove-sign - - · - Unicode: f057 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-remove-sign -
    -
    -
    <i class="icon-remove-sign"></i> icon-remove-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/remove/index.html b/library/font_awesome/src/3.2.1/icon/remove/index.html deleted file mode 100644 index 5b70894cd..000000000 --- a/library/font_awesome/src/3.2.1/icon/remove/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-remove: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-remove - - · - Unicode: f00d · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-remove -
    -
    -
    <i class="icon-remove"></i> icon-remove
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/renren/index.html b/library/font_awesome/src/3.2.1/icon/renren/index.html deleted file mode 100644 index d549c17d0..000000000 --- a/library/font_awesome/src/3.2.1/icon/renren/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-renren: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-renren - - · - Unicode: f18b · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-renren -
    -
    -
    <i class="icon-renren"></i> icon-renren
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/reorder/index.html b/library/font_awesome/src/3.2.1/icon/reorder/index.html deleted file mode 100644 index 6e87cbd72..000000000 --- a/library/font_awesome/src/3.2.1/icon/reorder/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-reorder: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-reorder - - · - Unicode: f0c9 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-reorder -
    -
    -
    <i class="icon-reorder"></i> icon-reorder
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/repeat/index.html b/library/font_awesome/src/3.2.1/icon/repeat/index.html deleted file mode 100644 index 78b074fa5..000000000 --- a/library/font_awesome/src/3.2.1/icon/repeat/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-repeat: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-repeat - - · - Unicode: f01e · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - · Aliases: - - icon-rotate-right - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-repeat -
    -
    -
    <i class="icon-repeat"></i> icon-repeat
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/reply-all/index.html b/library/font_awesome/src/3.2.1/icon/reply-all/index.html deleted file mode 100644 index 2a9e117a7..000000000 --- a/library/font_awesome/src/3.2.1/icon/reply-all/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-reply-all: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-reply-all - - · - Unicode: f122 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-reply-all -
    -
    -
    <i class="icon-reply-all"></i> icon-reply-all
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/reply/index.html b/library/font_awesome/src/3.2.1/icon/reply/index.html deleted file mode 100644 index d1da772ee..000000000 --- a/library/font_awesome/src/3.2.1/icon/reply/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-reply: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-reply - - · - Unicode: f112 · - Created: v3.0 · - Categories: - - Web Application Icons - - - - · Aliases: - - icon-mail-reply - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-reply -
    -
    -
    <i class="icon-reply"></i> icon-reply
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/resize-full/index.html b/library/font_awesome/src/3.2.1/icon/resize-full/index.html deleted file mode 100644 index fe78c6d5a..000000000 --- a/library/font_awesome/src/3.2.1/icon/resize-full/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-resize-full: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-resize-full - - · - Unicode: f065 · - Created: v1.0 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-resize-full -
    -
    -
    <i class="icon-resize-full"></i> icon-resize-full
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/resize-horizontal/index.html b/library/font_awesome/src/3.2.1/icon/resize-horizontal/index.html deleted file mode 100644 index 2e5518d98..000000000 --- a/library/font_awesome/src/3.2.1/icon/resize-horizontal/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-resize-horizontal: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-resize-horizontal - - · - Unicode: f07e · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-resize-horizontal -
    -
    -
    <i class="icon-resize-horizontal"></i> icon-resize-horizontal
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/resize-small/index.html b/library/font_awesome/src/3.2.1/icon/resize-small/index.html deleted file mode 100644 index 53ff95709..000000000 --- a/library/font_awesome/src/3.2.1/icon/resize-small/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-resize-small: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-resize-small - - · - Unicode: f066 · - Created: v1.0 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-resize-small -
    -
    -
    <i class="icon-resize-small"></i> icon-resize-small
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/resize-vertical/index.html b/library/font_awesome/src/3.2.1/icon/resize-vertical/index.html deleted file mode 100644 index d90512929..000000000 --- a/library/font_awesome/src/3.2.1/icon/resize-vertical/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-resize-vertical: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-resize-vertical - - · - Unicode: f07d · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-resize-vertical -
    -
    -
    <i class="icon-resize-vertical"></i> icon-resize-vertical
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/retweet/index.html b/library/font_awesome/src/3.2.1/icon/retweet/index.html deleted file mode 100644 index 49c0c051d..000000000 --- a/library/font_awesome/src/3.2.1/icon/retweet/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-retweet: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-retweet - - · - Unicode: f079 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-retweet -
    -
    -
    <i class="icon-retweet"></i> icon-retweet
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/road/index.html b/library/font_awesome/src/3.2.1/icon/road/index.html deleted file mode 100644 index 11b722737..000000000 --- a/library/font_awesome/src/3.2.1/icon/road/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-road: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-road - - · - Unicode: f018 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-road -
    -
    -
    <i class="icon-road"></i> icon-road
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/rocket/index.html b/library/font_awesome/src/3.2.1/icon/rocket/index.html deleted file mode 100644 index 7e8feb6d5..000000000 --- a/library/font_awesome/src/3.2.1/icon/rocket/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-rocket: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-rocket - - · - Unicode: f135 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-rocket -
    -
    -
    <i class="icon-rocket"></i> icon-rocket
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/rss-sign/index.html b/library/font_awesome/src/3.2.1/icon/rss-sign/index.html deleted file mode 100644 index fb0e23691..000000000 --- a/library/font_awesome/src/3.2.1/icon/rss-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-rss-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-rss-sign - - · - Unicode: f143 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-rss-sign -
    -
    -
    <i class="icon-rss-sign"></i> icon-rss-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/rss/index.html b/library/font_awesome/src/3.2.1/icon/rss/index.html deleted file mode 100644 index b461d6712..000000000 --- a/library/font_awesome/src/3.2.1/icon/rss/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-rss: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-rss - - · - Unicode: f09e · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-rss -
    -
    -
    <i class="icon-rss"></i> icon-rss
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/save/index.html b/library/font_awesome/src/3.2.1/icon/save/index.html deleted file mode 100644 index eef9f72fc..000000000 --- a/library/font_awesome/src/3.2.1/icon/save/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-save: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-save - - · - Unicode: f0c7 · - Created: v2.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-save -
    -
    -
    <i class="icon-save"></i> icon-save
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/screenshot/index.html b/library/font_awesome/src/3.2.1/icon/screenshot/index.html deleted file mode 100644 index 7d58b8985..000000000 --- a/library/font_awesome/src/3.2.1/icon/screenshot/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-screenshot: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-screenshot - - · - Unicode: f05b · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-screenshot -
    -
    -
    <i class="icon-screenshot"></i> icon-screenshot
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/search/index.html b/library/font_awesome/src/3.2.1/icon/search/index.html deleted file mode 100644 index 89e4121d4..000000000 --- a/library/font_awesome/src/3.2.1/icon/search/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-search: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-search - - · - Unicode: f002 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-search -
    -
    -
    <i class="icon-search"></i> icon-search
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/share-alt/index.html b/library/font_awesome/src/3.2.1/icon/share-alt/index.html deleted file mode 100644 index 34487dac7..000000000 --- a/library/font_awesome/src/3.2.1/icon/share-alt/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-share-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-share-alt - - · - Unicode: f064 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - · Aliases: - - icon-mail-forward - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-share-alt -
    -
    -
    <i class="icon-share-alt"></i> icon-share-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/share-sign/index.html b/library/font_awesome/src/3.2.1/icon/share-sign/index.html deleted file mode 100644 index bc2fa62ee..000000000 --- a/library/font_awesome/src/3.2.1/icon/share-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-share-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-share-sign - - · - Unicode: f14d · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-share-sign -
    -
    -
    <i class="icon-share-sign"></i> icon-share-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/share/index.html b/library/font_awesome/src/3.2.1/icon/share/index.html deleted file mode 100644 index 5065e37f6..000000000 --- a/library/font_awesome/src/3.2.1/icon/share/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-share: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-share - - · - Unicode: f045 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-share -
    -
    -
    <i class="icon-share"></i> icon-share
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/shield/index.html b/library/font_awesome/src/3.2.1/icon/shield/index.html deleted file mode 100644 index 1c8cfc738..000000000 --- a/library/font_awesome/src/3.2.1/icon/shield/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-shield: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-shield - - · - Unicode: f132 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-shield -
    -
    -
    <i class="icon-shield"></i> icon-shield
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/shopping-cart/index.html b/library/font_awesome/src/3.2.1/icon/shopping-cart/index.html deleted file mode 100644 index 62eb1b462..000000000 --- a/library/font_awesome/src/3.2.1/icon/shopping-cart/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-shopping-cart: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-shopping-cart - - · - Unicode: f07a · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-shopping-cart -
    -
    -
    <i class="icon-shopping-cart"></i> icon-shopping-cart
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/sign-blank/index.html b/library/font_awesome/src/3.2.1/icon/sign-blank/index.html deleted file mode 100644 index 105a6b760..000000000 --- a/library/font_awesome/src/3.2.1/icon/sign-blank/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-sign-blank: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-sign-blank - - · - Unicode: f0c8 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-sign-blank -
    -
    -
    <i class="icon-sign-blank"></i> icon-sign-blank
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/signal/index.html b/library/font_awesome/src/3.2.1/icon/signal/index.html deleted file mode 100644 index 90a065df3..000000000 --- a/library/font_awesome/src/3.2.1/icon/signal/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-signal: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-signal - - · - Unicode: f012 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-signal -
    -
    -
    <i class="icon-signal"></i> icon-signal
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/signin/index.html b/library/font_awesome/src/3.2.1/icon/signin/index.html deleted file mode 100644 index dce861178..000000000 --- a/library/font_awesome/src/3.2.1/icon/signin/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-signin: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-signin - - · - Unicode: f090 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-signin -
    -
    -
    <i class="icon-signin"></i> icon-signin
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/signout/index.html b/library/font_awesome/src/3.2.1/icon/signout/index.html deleted file mode 100644 index ff4999460..000000000 --- a/library/font_awesome/src/3.2.1/icon/signout/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-signout: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-signout - - · - Unicode: f08b · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-signout -
    -
    -
    <i class="icon-signout"></i> icon-signout
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/sitemap/index.html b/library/font_awesome/src/3.2.1/icon/sitemap/index.html deleted file mode 100644 index 4cc279994..000000000 --- a/library/font_awesome/src/3.2.1/icon/sitemap/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-sitemap: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-sitemap - - · - Unicode: f0e8 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-sitemap -
    -
    -
    <i class="icon-sitemap"></i> icon-sitemap
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/skype/index.html b/library/font_awesome/src/3.2.1/icon/skype/index.html deleted file mode 100644 index 68b975feb..000000000 --- a/library/font_awesome/src/3.2.1/icon/skype/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-skype: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-skype - - · - Unicode: f17e · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-skype -
    -
    -
    <i class="icon-skype"></i> icon-skype
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/smile/index.html b/library/font_awesome/src/3.2.1/icon/smile/index.html deleted file mode 100644 index 935e0be8b..000000000 --- a/library/font_awesome/src/3.2.1/icon/smile/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-smile: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-smile - - · - Unicode: f118 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-smile -
    -
    -
    <i class="icon-smile"></i> icon-smile
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/sort-by-alphabet-alt/index.html b/library/font_awesome/src/3.2.1/icon/sort-by-alphabet-alt/index.html deleted file mode 100644 index acb7c86e5..000000000 --- a/library/font_awesome/src/3.2.1/icon/sort-by-alphabet-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-sort-by-alphabet-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-sort-by-alphabet-alt - - · - Unicode: f15e · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-sort-by-alphabet-alt -
    -
    -
    <i class="icon-sort-by-alphabet-alt"></i> icon-sort-by-alphabet-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/sort-by-alphabet/index.html b/library/font_awesome/src/3.2.1/icon/sort-by-alphabet/index.html deleted file mode 100644 index 293cb18f9..000000000 --- a/library/font_awesome/src/3.2.1/icon/sort-by-alphabet/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-sort-by-alphabet: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-sort-by-alphabet - - · - Unicode: f15d · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-sort-by-alphabet -
    -
    -
    <i class="icon-sort-by-alphabet"></i> icon-sort-by-alphabet
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/sort-by-attributes-alt/index.html b/library/font_awesome/src/3.2.1/icon/sort-by-attributes-alt/index.html deleted file mode 100644 index 680bea787..000000000 --- a/library/font_awesome/src/3.2.1/icon/sort-by-attributes-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-sort-by-attributes-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-sort-by-attributes-alt - - · - Unicode: f161 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-sort-by-attributes-alt -
    -
    -
    <i class="icon-sort-by-attributes-alt"></i> icon-sort-by-attributes-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/sort-by-attributes/index.html b/library/font_awesome/src/3.2.1/icon/sort-by-attributes/index.html deleted file mode 100644 index e91164ccf..000000000 --- a/library/font_awesome/src/3.2.1/icon/sort-by-attributes/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-sort-by-attributes: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-sort-by-attributes - - · - Unicode: f160 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-sort-by-attributes -
    -
    -
    <i class="icon-sort-by-attributes"></i> icon-sort-by-attributes
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/sort-by-order-alt/index.html b/library/font_awesome/src/3.2.1/icon/sort-by-order-alt/index.html deleted file mode 100644 index ca0029d7e..000000000 --- a/library/font_awesome/src/3.2.1/icon/sort-by-order-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-sort-by-order-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-sort-by-order-alt - - · - Unicode: f163 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-sort-by-order-alt -
    -
    -
    <i class="icon-sort-by-order-alt"></i> icon-sort-by-order-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/sort-by-order/index.html b/library/font_awesome/src/3.2.1/icon/sort-by-order/index.html deleted file mode 100644 index cfd4f84ee..000000000 --- a/library/font_awesome/src/3.2.1/icon/sort-by-order/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-sort-by-order: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-sort-by-order - - · - Unicode: f162 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-sort-by-order -
    -
    -
    <i class="icon-sort-by-order"></i> icon-sort-by-order
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/sort-down/index.html b/library/font_awesome/src/3.2.1/icon/sort-down/index.html deleted file mode 100644 index 4f4271609..000000000 --- a/library/font_awesome/src/3.2.1/icon/sort-down/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-sort-down: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-sort-down - - · - Unicode: f0dd · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-sort-down -
    -
    -
    <i class="icon-sort-down"></i> icon-sort-down
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/sort-up/index.html b/library/font_awesome/src/3.2.1/icon/sort-up/index.html deleted file mode 100644 index 1d0540f63..000000000 --- a/library/font_awesome/src/3.2.1/icon/sort-up/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-sort-up: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-sort-up - - · - Unicode: f0de · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-sort-up -
    -
    -
    <i class="icon-sort-up"></i> icon-sort-up
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/sort/index.html b/library/font_awesome/src/3.2.1/icon/sort/index.html deleted file mode 100644 index 67b87cd42..000000000 --- a/library/font_awesome/src/3.2.1/icon/sort/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-sort: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-sort - - · - Unicode: f0dc · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-sort -
    -
    -
    <i class="icon-sort"></i> icon-sort
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/spinner/index.html b/library/font_awesome/src/3.2.1/icon/spinner/index.html deleted file mode 100644 index 8fd7bf836..000000000 --- a/library/font_awesome/src/3.2.1/icon/spinner/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-spinner: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-spinner - - · - Unicode: f110 · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-spinner -
    -
    -
    <i class="icon-spinner"></i> icon-spinner
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/stackexchange/index.html b/library/font_awesome/src/3.2.1/icon/stackexchange/index.html deleted file mode 100644 index 8a569376d..000000000 --- a/library/font_awesome/src/3.2.1/icon/stackexchange/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-stackexchange: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-stackexchange - - · - Unicode: f16c · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-stackexchange -
    -
    -
    <i class="icon-stackexchange"></i> icon-stackexchange
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/star-empty/index.html b/library/font_awesome/src/3.2.1/icon/star-empty/index.html deleted file mode 100644 index f0de9b04e..000000000 --- a/library/font_awesome/src/3.2.1/icon/star-empty/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-star-empty: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-star-empty - - · - Unicode: f006 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-star-empty -
    -
    -
    <i class="icon-star-empty"></i> icon-star-empty
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/star-half-empty/index.html b/library/font_awesome/src/3.2.1/icon/star-half-empty/index.html deleted file mode 100644 index 82b9e61d9..000000000 --- a/library/font_awesome/src/3.2.1/icon/star-half-empty/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-star-half-empty: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-star-half-empty - - · - Unicode: f123 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - · Aliases: - - icon-star-half-full - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-star-half-empty -
    -
    -
    <i class="icon-star-half-empty"></i> icon-star-half-empty
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/star-half/index.html b/library/font_awesome/src/3.2.1/icon/star-half/index.html deleted file mode 100644 index 1411b0075..000000000 --- a/library/font_awesome/src/3.2.1/icon/star-half/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-star-half: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-star-half - - · - Unicode: f089 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-star-half -
    -
    -
    <i class="icon-star-half"></i> icon-star-half
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/star/index.html b/library/font_awesome/src/3.2.1/icon/star/index.html deleted file mode 100644 index 5defff409..000000000 --- a/library/font_awesome/src/3.2.1/icon/star/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-star: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-star - - · - Unicode: f005 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-star -
    -
    -
    <i class="icon-star"></i> icon-star
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/step-backward/index.html b/library/font_awesome/src/3.2.1/icon/step-backward/index.html deleted file mode 100644 index afbfc6572..000000000 --- a/library/font_awesome/src/3.2.1/icon/step-backward/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-step-backward: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-step-backward - - · - Unicode: f048 · - Created: v1.0 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-step-backward -
    -
    -
    <i class="icon-step-backward"></i> icon-step-backward
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/step-forward/index.html b/library/font_awesome/src/3.2.1/icon/step-forward/index.html deleted file mode 100644 index 18ba8dc5e..000000000 --- a/library/font_awesome/src/3.2.1/icon/step-forward/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-step-forward: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-step-forward - - · - Unicode: f051 · - Created: v1.0 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-step-forward -
    -
    -
    <i class="icon-step-forward"></i> icon-step-forward
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/stethoscope/index.html b/library/font_awesome/src/3.2.1/icon/stethoscope/index.html deleted file mode 100644 index f4bd96121..000000000 --- a/library/font_awesome/src/3.2.1/icon/stethoscope/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-stethoscope: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-stethoscope - - · - Unicode: f0f1 · - Created: v3.0 · - Categories: - - Medical Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-stethoscope -
    -
    -
    <i class="icon-stethoscope"></i> icon-stethoscope
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/stop/index.html b/library/font_awesome/src/3.2.1/icon/stop/index.html deleted file mode 100644 index d470aad76..000000000 --- a/library/font_awesome/src/3.2.1/icon/stop/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-stop: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-stop - - · - Unicode: f04d · - Created: v1.0 · - Categories: - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-stop -
    -
    -
    <i class="icon-stop"></i> icon-stop
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/strikethrough/index.html b/library/font_awesome/src/3.2.1/icon/strikethrough/index.html deleted file mode 100644 index 290a87e12..000000000 --- a/library/font_awesome/src/3.2.1/icon/strikethrough/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-strikethrough: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-strikethrough - - · - Unicode: f0cc · - Created: v2.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-strikethrough -
    -
    -
    <i class="icon-strikethrough"></i> icon-strikethrough
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/subscript/index.html b/library/font_awesome/src/3.2.1/icon/subscript/index.html deleted file mode 100644 index 6f002b402..000000000 --- a/library/font_awesome/src/3.2.1/icon/subscript/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-subscript: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-subscript - - · - Unicode: f12c · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-subscript -
    -
    -
    <i class="icon-subscript"></i> icon-subscript
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/suitcase/index.html b/library/font_awesome/src/3.2.1/icon/suitcase/index.html deleted file mode 100644 index 31904aeed..000000000 --- a/library/font_awesome/src/3.2.1/icon/suitcase/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-suitcase: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-suitcase - - · - Unicode: f0f2 · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-suitcase -
    -
    -
    <i class="icon-suitcase"></i> icon-suitcase
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/sun/index.html b/library/font_awesome/src/3.2.1/icon/sun/index.html deleted file mode 100644 index b51eb9f82..000000000 --- a/library/font_awesome/src/3.2.1/icon/sun/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-sun: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-sun - - · - Unicode: f185 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-sun -
    -
    -
    <i class="icon-sun"></i> icon-sun
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/superscript/index.html b/library/font_awesome/src/3.2.1/icon/superscript/index.html deleted file mode 100644 index 26a79f1af..000000000 --- a/library/font_awesome/src/3.2.1/icon/superscript/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-superscript: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-superscript - - · - Unicode: f12b · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-superscript -
    -
    -
    <i class="icon-superscript"></i> icon-superscript
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/table/index.html b/library/font_awesome/src/3.2.1/icon/table/index.html deleted file mode 100644 index 333ae25d5..000000000 --- a/library/font_awesome/src/3.2.1/icon/table/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-table: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-table - - · - Unicode: f0ce · - Created: v2.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-table -
    -
    -
    <i class="icon-table"></i> icon-table
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/tablet/index.html b/library/font_awesome/src/3.2.1/icon/tablet/index.html deleted file mode 100644 index 145880116..000000000 --- a/library/font_awesome/src/3.2.1/icon/tablet/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-tablet: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-tablet - - · - Unicode: f10a · - Created: v3.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-tablet -
    -
    -
    <i class="icon-tablet"></i> icon-tablet
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/tag/index.html b/library/font_awesome/src/3.2.1/icon/tag/index.html deleted file mode 100644 index 6db72cef8..000000000 --- a/library/font_awesome/src/3.2.1/icon/tag/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-tag: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-tag - - · - Unicode: f02b · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-tag -
    -
    -
    <i class="icon-tag"></i> icon-tag
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/tags/index.html b/library/font_awesome/src/3.2.1/icon/tags/index.html deleted file mode 100644 index a6bbaf6c0..000000000 --- a/library/font_awesome/src/3.2.1/icon/tags/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-tags: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-tags - - · - Unicode: f02c · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-tags -
    -
    -
    <i class="icon-tags"></i> icon-tags
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/tasks/index.html b/library/font_awesome/src/3.2.1/icon/tasks/index.html deleted file mode 100644 index 1286518ba..000000000 --- a/library/font_awesome/src/3.2.1/icon/tasks/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-tasks: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-tasks - - · - Unicode: f0ae · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-tasks -
    -
    -
    <i class="icon-tasks"></i> icon-tasks
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/terminal/index.html b/library/font_awesome/src/3.2.1/icon/terminal/index.html deleted file mode 100644 index 3b42e117b..000000000 --- a/library/font_awesome/src/3.2.1/icon/terminal/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-terminal: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-terminal - - · - Unicode: f120 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-terminal -
    -
    -
    <i class="icon-terminal"></i> icon-terminal
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/text-height/index.html b/library/font_awesome/src/3.2.1/icon/text-height/index.html deleted file mode 100644 index db9fc1c97..000000000 --- a/library/font_awesome/src/3.2.1/icon/text-height/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-text-height: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-text-height - - · - Unicode: f034 · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-text-height -
    -
    -
    <i class="icon-text-height"></i> icon-text-height
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/text-width/index.html b/library/font_awesome/src/3.2.1/icon/text-width/index.html deleted file mode 100644 index a631f0381..000000000 --- a/library/font_awesome/src/3.2.1/icon/text-width/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-text-width: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-text-width - - · - Unicode: f035 · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-text-width -
    -
    -
    <i class="icon-text-width"></i> icon-text-width
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/th-large/index.html b/library/font_awesome/src/3.2.1/icon/th-large/index.html deleted file mode 100644 index 4bf7f8f64..000000000 --- a/library/font_awesome/src/3.2.1/icon/th-large/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-th-large: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-th-large - - · - Unicode: f009 · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-th-large -
    -
    -
    <i class="icon-th-large"></i> icon-th-large
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/th-list/index.html b/library/font_awesome/src/3.2.1/icon/th-list/index.html deleted file mode 100644 index 6e2054526..000000000 --- a/library/font_awesome/src/3.2.1/icon/th-list/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-th-list: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-th-list - - · - Unicode: f00b · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-th-list -
    -
    -
    <i class="icon-th-list"></i> icon-th-list
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/th/index.html b/library/font_awesome/src/3.2.1/icon/th/index.html deleted file mode 100644 index f5fab7507..000000000 --- a/library/font_awesome/src/3.2.1/icon/th/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-th: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-th - - · - Unicode: f00a · - Created: v1.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-th -
    -
    -
    <i class="icon-th"></i> icon-th
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/thumbs-down-alt/index.html b/library/font_awesome/src/3.2.1/icon/thumbs-down-alt/index.html deleted file mode 100644 index 72bfe5631..000000000 --- a/library/font_awesome/src/3.2.1/icon/thumbs-down-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-thumbs-down-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-thumbs-down-alt - - · - Unicode: f088 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-thumbs-down-alt -
    -
    -
    <i class="icon-thumbs-down-alt"></i> icon-thumbs-down-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/thumbs-down/index.html b/library/font_awesome/src/3.2.1/icon/thumbs-down/index.html deleted file mode 100644 index 0db7214e9..000000000 --- a/library/font_awesome/src/3.2.1/icon/thumbs-down/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-thumbs-down: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-thumbs-down - - · - Unicode: f165 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-thumbs-down -
    -
    -
    <i class="icon-thumbs-down"></i> icon-thumbs-down
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/thumbs-up-alt/index.html b/library/font_awesome/src/3.2.1/icon/thumbs-up-alt/index.html deleted file mode 100644 index 950e75270..000000000 --- a/library/font_awesome/src/3.2.1/icon/thumbs-up-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-thumbs-up-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-thumbs-up-alt - - · - Unicode: f087 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-thumbs-up-alt -
    -
    -
    <i class="icon-thumbs-up-alt"></i> icon-thumbs-up-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/thumbs-up/index.html b/library/font_awesome/src/3.2.1/icon/thumbs-up/index.html deleted file mode 100644 index 43564afa8..000000000 --- a/library/font_awesome/src/3.2.1/icon/thumbs-up/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-thumbs-up: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-thumbs-up - - · - Unicode: f164 · - Created: v3.2 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-thumbs-up -
    -
    -
    <i class="icon-thumbs-up"></i> icon-thumbs-up
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/ticket/index.html b/library/font_awesome/src/3.2.1/icon/ticket/index.html deleted file mode 100644 index c94a15f08..000000000 --- a/library/font_awesome/src/3.2.1/icon/ticket/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-ticket: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-ticket - - · - Unicode: f145 · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-ticket -
    -
    -
    <i class="icon-ticket"></i> icon-ticket
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/time/index.html b/library/font_awesome/src/3.2.1/icon/time/index.html deleted file mode 100644 index bfa505d9d..000000000 --- a/library/font_awesome/src/3.2.1/icon/time/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-time: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-time - - · - Unicode: f017 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-time -
    -
    -
    <i class="icon-time"></i> icon-time
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/tint/index.html b/library/font_awesome/src/3.2.1/icon/tint/index.html deleted file mode 100644 index 8e079ce01..000000000 --- a/library/font_awesome/src/3.2.1/icon/tint/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-tint: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-tint - - · - Unicode: f043 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-tint -
    -
    -
    <i class="icon-tint"></i> icon-tint
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/trash/index.html b/library/font_awesome/src/3.2.1/icon/trash/index.html deleted file mode 100644 index e2d16ab2b..000000000 --- a/library/font_awesome/src/3.2.1/icon/trash/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-trash: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-trash - - · - Unicode: f014 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-trash -
    -
    -
    <i class="icon-trash"></i> icon-trash
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/trello/index.html b/library/font_awesome/src/3.2.1/icon/trello/index.html deleted file mode 100644 index 3ea84577c..000000000 --- a/library/font_awesome/src/3.2.1/icon/trello/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-trello: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-trello - - · - Unicode: f181 · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-trello -
    -
    -
    <i class="icon-trello"></i> icon-trello
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/trophy/index.html b/library/font_awesome/src/3.2.1/icon/trophy/index.html deleted file mode 100644 index afc1542ad..000000000 --- a/library/font_awesome/src/3.2.1/icon/trophy/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-trophy: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-trophy - - · - Unicode: f091 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-trophy -
    -
    -
    <i class="icon-trophy"></i> icon-trophy
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/truck/index.html b/library/font_awesome/src/3.2.1/icon/truck/index.html deleted file mode 100644 index fdc00d7df..000000000 --- a/library/font_awesome/src/3.2.1/icon/truck/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-truck: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-truck - - · - Unicode: f0d1 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-truck -
    -
    -
    <i class="icon-truck"></i> icon-truck
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/tumblr-sign/index.html b/library/font_awesome/src/3.2.1/icon/tumblr-sign/index.html deleted file mode 100644 index 9a613cbcc..000000000 --- a/library/font_awesome/src/3.2.1/icon/tumblr-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-tumblr-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-tumblr-sign - - · - Unicode: f174 · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-tumblr-sign -
    -
    -
    <i class="icon-tumblr-sign"></i> icon-tumblr-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/tumblr/index.html b/library/font_awesome/src/3.2.1/icon/tumblr/index.html deleted file mode 100644 index fd7f30615..000000000 --- a/library/font_awesome/src/3.2.1/icon/tumblr/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-tumblr: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-tumblr - - · - Unicode: f173 · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-tumblr -
    -
    -
    <i class="icon-tumblr"></i> icon-tumblr
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/twitter-sign/index.html b/library/font_awesome/src/3.2.1/icon/twitter-sign/index.html deleted file mode 100644 index 009efcb2e..000000000 --- a/library/font_awesome/src/3.2.1/icon/twitter-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-twitter-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-twitter-sign - - · - Unicode: f081 · - Created: v1.0 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-twitter-sign -
    -
    -
    <i class="icon-twitter-sign"></i> icon-twitter-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/twitter/index.html b/library/font_awesome/src/3.2.1/icon/twitter/index.html deleted file mode 100644 index 42854fabc..000000000 --- a/library/font_awesome/src/3.2.1/icon/twitter/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-twitter: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-twitter - - · - Unicode: f099 · - Created: v2.0 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-twitter -
    -
    -
    <i class="icon-twitter"></i> icon-twitter
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/umbrella/index.html b/library/font_awesome/src/3.2.1/icon/umbrella/index.html deleted file mode 100644 index af2a1a944..000000000 --- a/library/font_awesome/src/3.2.1/icon/umbrella/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-umbrella: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-umbrella - - · - Unicode: f0e9 · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-umbrella -
    -
    -
    <i class="icon-umbrella"></i> icon-umbrella
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/underline/index.html b/library/font_awesome/src/3.2.1/icon/underline/index.html deleted file mode 100644 index 2e493cd4e..000000000 --- a/library/font_awesome/src/3.2.1/icon/underline/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-underline: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-underline - - · - Unicode: f0cd · - Created: v2.0 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-underline -
    -
    -
    <i class="icon-underline"></i> icon-underline
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/undo/index.html b/library/font_awesome/src/3.2.1/icon/undo/index.html deleted file mode 100644 index d0f3a4615..000000000 --- a/library/font_awesome/src/3.2.1/icon/undo/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-undo: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-undo - - · - Unicode: f0e2 · - Created: v2.0 · - Categories: - - Text Editor Icons - - - - · Aliases: - - icon-rotate-left - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-undo -
    -
    -
    <i class="icon-undo"></i> icon-undo
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/unlink/index.html b/library/font_awesome/src/3.2.1/icon/unlink/index.html deleted file mode 100644 index d427fcca6..000000000 --- a/library/font_awesome/src/3.2.1/icon/unlink/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-unlink: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-unlink - - · - Unicode: f127 · - Created: v3.1 · - Categories: - - Text Editor Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-unlink -
    -
    -
    <i class="icon-unlink"></i> icon-unlink
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/unlock-alt/index.html b/library/font_awesome/src/3.2.1/icon/unlock-alt/index.html deleted file mode 100644 index 0bec883a5..000000000 --- a/library/font_awesome/src/3.2.1/icon/unlock-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-unlock-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-unlock-alt - - · - Unicode: f13e · - Created: v3.1 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-unlock-alt -
    -
    -
    <i class="icon-unlock-alt"></i> icon-unlock-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/unlock/index.html b/library/font_awesome/src/3.2.1/icon/unlock/index.html deleted file mode 100644 index 9adf272fc..000000000 --- a/library/font_awesome/src/3.2.1/icon/unlock/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-unlock: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-unlock - - · - Unicode: f09c · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-unlock -
    -
    -
    <i class="icon-unlock"></i> icon-unlock
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/upload-alt/index.html b/library/font_awesome/src/3.2.1/icon/upload-alt/index.html deleted file mode 100644 index f4664081c..000000000 --- a/library/font_awesome/src/3.2.1/icon/upload-alt/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-upload-alt: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-upload-alt - - · - Unicode: f093 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-upload-alt -
    -
    -
    <i class="icon-upload-alt"></i> icon-upload-alt
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/upload/index.html b/library/font_awesome/src/3.2.1/icon/upload/index.html deleted file mode 100644 index 6119f9f4b..000000000 --- a/library/font_awesome/src/3.2.1/icon/upload/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-upload: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-upload - - · - Unicode: f01b · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-upload -
    -
    -
    <i class="icon-upload"></i> icon-upload
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/usd/index.html b/library/font_awesome/src/3.2.1/icon/usd/index.html deleted file mode 100644 index 0d1d8a403..000000000 --- a/library/font_awesome/src/3.2.1/icon/usd/index.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - icon-usd: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-usd - - · - Unicode: f155 · - Created: v3.2 · - Categories: - - Currency Icons - - - - · Aliases: - - icon-dollar - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-usd -
    -
    -
    <i class="icon-usd"></i> icon-usd
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/user-md/index.html b/library/font_awesome/src/3.2.1/icon/user-md/index.html deleted file mode 100644 index 926509da7..000000000 --- a/library/font_awesome/src/3.2.1/icon/user-md/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-user-md: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-user-md - - · - Unicode: f0f0 · - Created: v2.0 · - Categories: - - Medical Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-user-md -
    -
    -
    <i class="icon-user-md"></i> icon-user-md
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/user/index.html b/library/font_awesome/src/3.2.1/icon/user/index.html deleted file mode 100644 index ce3e264a0..000000000 --- a/library/font_awesome/src/3.2.1/icon/user/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-user: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-user - - · - Unicode: f007 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-user -
    -
    -
    <i class="icon-user"></i> icon-user
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/vk/index.html b/library/font_awesome/src/3.2.1/icon/vk/index.html deleted file mode 100644 index 308192606..000000000 --- a/library/font_awesome/src/3.2.1/icon/vk/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-vk: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-vk - - · - Unicode: f189 · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-vk -
    -
    -
    <i class="icon-vk"></i> icon-vk
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/volume-down/index.html b/library/font_awesome/src/3.2.1/icon/volume-down/index.html deleted file mode 100644 index e9aa24e95..000000000 --- a/library/font_awesome/src/3.2.1/icon/volume-down/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-volume-down: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-volume-down - - · - Unicode: f027 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-volume-down -
    -
    -
    <i class="icon-volume-down"></i> icon-volume-down
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/volume-off/index.html b/library/font_awesome/src/3.2.1/icon/volume-off/index.html deleted file mode 100644 index 53a1d58e6..000000000 --- a/library/font_awesome/src/3.2.1/icon/volume-off/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-volume-off: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-volume-off - - · - Unicode: f026 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-volume-off -
    -
    -
    <i class="icon-volume-off"></i> icon-volume-off
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/volume-up/index.html b/library/font_awesome/src/3.2.1/icon/volume-up/index.html deleted file mode 100644 index c9f82fb6f..000000000 --- a/library/font_awesome/src/3.2.1/icon/volume-up/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-volume-up: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-volume-up - - · - Unicode: f028 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-volume-up -
    -
    -
    <i class="icon-volume-up"></i> icon-volume-up
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/warning-sign/index.html b/library/font_awesome/src/3.2.1/icon/warning-sign/index.html deleted file mode 100644 index 29a342a7c..000000000 --- a/library/font_awesome/src/3.2.1/icon/warning-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-warning-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-warning-sign - - · - Unicode: f071 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-warning-sign -
    -
    -
    <i class="icon-warning-sign"></i> icon-warning-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/weibo/index.html b/library/font_awesome/src/3.2.1/icon/weibo/index.html deleted file mode 100644 index 6a1ab7a34..000000000 --- a/library/font_awesome/src/3.2.1/icon/weibo/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-weibo: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-weibo - - · - Unicode: f18a · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-weibo -
    -
    -
    <i class="icon-weibo"></i> icon-weibo
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/windows/index.html b/library/font_awesome/src/3.2.1/icon/windows/index.html deleted file mode 100644 index 973a33974..000000000 --- a/library/font_awesome/src/3.2.1/icon/windows/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-windows: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-windows - - · - Unicode: f17a · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-windows -
    -
    -
    <i class="icon-windows"></i> icon-windows
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/wrench/index.html b/library/font_awesome/src/3.2.1/icon/wrench/index.html deleted file mode 100644 index 3a9cac23d..000000000 --- a/library/font_awesome/src/3.2.1/icon/wrench/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-wrench: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-wrench - - · - Unicode: f0ad · - Created: v2.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-wrench -
    -
    -
    <i class="icon-wrench"></i> icon-wrench
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/xing-sign/index.html b/library/font_awesome/src/3.2.1/icon/xing-sign/index.html deleted file mode 100644 index e1d173ccf..000000000 --- a/library/font_awesome/src/3.2.1/icon/xing-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-xing-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-xing-sign - - · - Unicode: f169 · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-xing-sign -
    -
    -
    <i class="icon-xing-sign"></i> icon-xing-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/xing/index.html b/library/font_awesome/src/3.2.1/icon/xing/index.html deleted file mode 100644 index 3d378d233..000000000 --- a/library/font_awesome/src/3.2.1/icon/xing/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-xing: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-xing - - · - Unicode: f168 · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-xing -
    -
    -
    <i class="icon-xing"></i> icon-xing
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/youtube-play/index.html b/library/font_awesome/src/3.2.1/icon/youtube-play/index.html deleted file mode 100644 index f15866955..000000000 --- a/library/font_awesome/src/3.2.1/icon/youtube-play/index.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - - icon-youtube-play: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-youtube-play - - · - Unicode: f16a · - Created: v3.2 · - Categories: - - Brand Icons, - - Video Player Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-youtube-play -
    -
    -
    <i class="icon-youtube-play"></i> icon-youtube-play
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/youtube-sign/index.html b/library/font_awesome/src/3.2.1/icon/youtube-sign/index.html deleted file mode 100644 index fcec9ccc3..000000000 --- a/library/font_awesome/src/3.2.1/icon/youtube-sign/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-youtube-sign: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-youtube-sign - - · - Unicode: f166 · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-youtube-sign -
    -
    -
    <i class="icon-youtube-sign"></i> icon-youtube-sign
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/youtube/index.html b/library/font_awesome/src/3.2.1/icon/youtube/index.html deleted file mode 100644 index 406a3bc42..000000000 --- a/library/font_awesome/src/3.2.1/icon/youtube/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-youtube: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-youtube - - · - Unicode: f167 · - Created: v3.2 · - Categories: - - Brand Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-youtube -
    -
    -
    <i class="icon-youtube"></i> icon-youtube
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/zoom-in/index.html b/library/font_awesome/src/3.2.1/icon/zoom-in/index.html deleted file mode 100644 index 7c30b0e9e..000000000 --- a/library/font_awesome/src/3.2.1/icon/zoom-in/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-zoom-in: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-zoom-in - - · - Unicode: f00e · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-zoom-in -
    -
    -
    <i class="icon-zoom-in"></i> icon-zoom-in
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icon/zoom-out/index.html b/library/font_awesome/src/3.2.1/icon/zoom-out/index.html deleted file mode 100644 index ddbe58999..000000000 --- a/library/font_awesome/src/3.2.1/icon/zoom-out/index.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - - - - icon-zoom-out: Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -    - -    -    -    -   - - -
    -

    - icon-zoom-out - - · - Unicode: f010 · - Created: v1.0 · - Categories: - - Web Application Icons - - - - -

    -
    -
    - - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - icon-zoom-out -
    -
    -
    <i class="icon-zoom-out"></i> icon-zoom-out
    -
    -
    -
    Looking for more? Check out the examples.
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/icons.yml b/library/font_awesome/src/3.2.1/icons.yml deleted file mode 100644 index c3c8f531a..000000000 --- a/library/font_awesome/src/3.2.1/icons.yml +++ /dev/null @@ -1,2590 +0,0 @@ -icons: - - name: Glass - id: glass - unicode: f000 - created: 1.0 - categories: - - Web Application Icons - - - name: Music - id: music - unicode: f001 - created: 1.0 - categories: - - Web Application Icons - - - name: Search - id: search - unicode: f002 - created: 1.0 - categories: - - Web Application Icons - - - name: Envelope Alt - id: envelope-alt - unicode: f003 - created: 1.0 - categories: - - Web Application Icons - - - name: Heart - id: heart - unicode: f004 - created: 1.0 - categories: - - Web Application Icons - - - name: Star - id: star - unicode: f005 - created: 1.0 - categories: - - Web Application Icons - - - name: Star Empty - id: star-empty - unicode: f006 - created: 1.0 - categories: - - Web Application Icons - - - name: User - id: user - unicode: f007 - created: 1.0 - categories: - - Web Application Icons - - - name: Film - id: film - unicode: f008 - created: 1.0 - categories: - - Web Application Icons - - - name: th-large - id: th-large - unicode: f009 - created: 1.0 - categories: - - Text Editor Icons - - - name: th - id: th - unicode: f00a - created: 1.0 - categories: - - Text Editor Icons - - - name: th-list - id: th-list - unicode: f00b - created: 1.0 - categories: - - Text Editor Icons - - - name: OK - id: ok - unicode: f00c - created: 1.0 - categories: - - Web Application Icons - - - name: Remove - id: remove - unicode: f00d - created: 1.0 - categories: - - Web Application Icons - - - name: Zoom In - id: zoom-in - unicode: f00e - created: 1.0 - categories: - - Web Application Icons - - - - name: Zoom Out - id: zoom-out - unicode: f010 - created: 1.0 - categories: - - Web Application Icons - - - name: Off - id: 'off' - unicode: f011 - created: 1.0 - aliases: - - power-off - categories: - - Web Application Icons - - - name: signal - id: signal - unicode: f012 - created: 1.0 - categories: - - Web Application Icons - - - name: cog - id: cog - unicode: f013 - created: 1.0 - aliases: - - gear - categories: - - Web Application Icons - - - name: trash - id: trash - unicode: f014 - created: 1.0 - categories: - - Web Application Icons - - - name: home - id: home - unicode: f015 - created: 1.0 - categories: - - Web Application Icons - - - name: file-alt - id: file-alt - unicode: f016 - created: 1.0 - categories: - - Text Editor Icons - - - name: time - id: time - unicode: f017 - created: 1.0 - categories: - - Web Application Icons - - - name: road - id: road - unicode: f018 - created: 1.0 - categories: - - Web Application Icons - - - name: download-alt - id: download-alt - unicode: f019 - created: 1.0 - categories: - - Web Application Icons - - - name: download - id: download - unicode: f01a - created: 1.0 - categories: - - Web Application Icons - - - name: upload - id: upload - unicode: f01b - created: 1.0 - categories: - - Web Application Icons - - - name: inbox - id: inbox - unicode: f01c - created: 1.0 - categories: - - Web Application Icons - - - name: play-circle - id: play-circle - unicode: f01d - created: 1.0 - categories: - - Video Player Icons - - - name: repeat - id: repeat - unicode: f01e - created: 1.0 - aliases: - - rotate-right - categories: - - Text Editor Icons - - - - name: refresh - id: refresh - unicode: f021 - created: 1.0 - categories: - - Web Application Icons - - - name: list-alt - id: list-alt - unicode: f022 - created: 1.0 - categories: - - Text Editor Icons - - - name: lock - id: lock - unicode: f023 - created: 1.0 - categories: - - Web Application Icons - - - name: flag - id: flag - unicode: f024 - created: 1.0 - categories: - - Web Application Icons - - - name: headphones - id: headphones - unicode: f025 - created: 1.0 - categories: - - Web Application Icons - - - name: volume-off - id: volume-off - unicode: f026 - created: 1.0 - categories: - - Web Application Icons - - - name: volume-down - id: volume-down - unicode: f027 - created: 1.0 - categories: - - Web Application Icons - - - name: volume-up - id: volume-up - unicode: f028 - created: 1.0 - categories: - - Web Application Icons - - - name: qrcode - id: qrcode - unicode: f029 - created: 1.0 - categories: - - Web Application Icons - - - name: barcode - id: barcode - unicode: f02a - created: 1.0 - categories: - - Web Application Icons - - - name: tag - id: tag - unicode: f02b - created: 1.0 - categories: - - Web Application Icons - - - name: tags - id: tags - unicode: f02c - created: 1.0 - categories: - - Web Application Icons - - - name: book - id: book - unicode: f02d - created: 1.0 - categories: - - Web Application Icons - - - name: bookmark - id: bookmark - unicode: f02e - created: 1.0 - categories: - - Web Application Icons - - - name: print - id: print - unicode: f02f - created: 1.0 - categories: - - Web Application Icons - - - - name: camera - id: camera - unicode: f030 - created: 1.0 - categories: - - Web Application Icons - - - name: font - id: font - unicode: f031 - created: 1.0 - categories: - - Text Editor Icons - - - name: bold - id: bold - unicode: f032 - created: 1.0 - categories: - - Text Editor Icons - - - name: italic - id: italic - unicode: f033 - created: 1.0 - categories: - - Text Editor Icons - - - name: text-height - id: text-height - unicode: f034 - created: 1.0 - categories: - - Text Editor Icons - - - name: text-width - id: text-width - unicode: f035 - created: 1.0 - categories: - - Text Editor Icons - - - name: align-left - id: align-left - unicode: f036 - created: 1.0 - categories: - - Text Editor Icons - - - name: align-center - id: align-center - unicode: f037 - created: 1.0 - categories: - - Text Editor Icons - - - name: align-right - id: align-right - unicode: f038 - created: 1.0 - categories: - - Text Editor Icons - - - name: align-justify - id: align-justify - unicode: f039 - created: 1.0 - categories: - - Text Editor Icons - - - name: list - id: list - unicode: f03a - created: 1.0 - categories: - - Text Editor Icons - - - name: indent-left - id: indent-left - unicode: f03b - created: 1.0 - categories: - - Text Editor Icons - - - name: indent-right - id: indent-right - unicode: f03c - created: 1.0 - categories: - - Text Editor Icons - - - name: facetime-video - id: facetime-video - unicode: f03d - created: 1.0 - categories: - - Web Application Icons - - - name: picture - id: picture - unicode: f03e - created: 1.0 - categories: - - Web Application Icons - - - - name: pencil - id: pencil - unicode: f040 - created: 1.0 - categories: - - Web Application Icons - - - name: map-marker - id: map-marker - unicode: f041 - created: 1.0 - categories: - - Web Application Icons - - - name: adjust - id: adjust - unicode: f042 - created: 1.0 - categories: - - Web Application Icons - - - name: tint - id: tint - unicode: f043 - created: 1.0 - categories: - - Web Application Icons - - - name: edit - id: edit - unicode: f044 - created: 1.0 - categories: - - Web Application Icons - - - name: share - id: share - unicode: f045 - created: 1.0 - categories: - - Web Application Icons - - - name: check - id: check - unicode: f046 - created: 1.0 - categories: - - Web Application Icons - - - name: move - id: move - unicode: f047 - created: 1.0 - categories: - - Web Application Icons - - - name: step-backward - id: step-backward - unicode: f048 - created: 1.0 - categories: - - Video Player Icons - - - name: fast-backward - id: fast-backward - unicode: f049 - created: 1.0 - categories: - - Video Player Icons - - - name: backward - id: backward - unicode: f04a - created: 1.0 - categories: - - Video Player Icons - - - name: play - id: play - unicode: f04b - created: 1.0 - categories: - - Video Player Icons - - - name: pause - id: pause - unicode: f04c - created: 1.0 - categories: - - Video Player Icons - - - name: stop - id: stop - unicode: f04d - created: 1.0 - categories: - - Video Player Icons - - - name: forward - id: forward - unicode: f04e - created: 1.0 - categories: - - Video Player Icons - - - - name: fast-forward - id: fast-forward - unicode: f050 - created: 1.0 - categories: - - Video Player Icons - - - name: step-forward - id: step-forward - unicode: f051 - created: 1.0 - categories: - - Video Player Icons - - - name: eject - id: eject - unicode: f052 - created: 1.0 - categories: - - Video Player Icons - - - name: chevron-left - id: chevron-left - unicode: f053 - created: 1.0 - categories: - - Directional Icons - - - name: chevron-right - id: chevron-right - unicode: f054 - created: 1.0 - categories: - - Directional Icons - - - name: plus-sign - id: plus-sign - unicode: f055 - created: 1.0 - categories: - - Web Application Icons - - - name: minus-sign - id: minus-sign - unicode: f056 - created: 1.0 - categories: - - Web Application Icons - - - name: remove-sign - id: remove-sign - unicode: f057 - created: 1.0 - categories: - - Web Application Icons - - - name: ok-sign - id: ok-sign - unicode: f058 - created: 1.0 - categories: - - Web Application Icons - - - name: question-sign - id: question-sign - unicode: f059 - created: 1.0 - categories: - - Web Application Icons - - - name: info-sign - id: info-sign - unicode: f05a - created: 1.0 - categories: - - Web Application Icons - - - name: screenshot - id: screenshot - unicode: f05b - created: 1.0 - categories: - - Web Application Icons - - - name: remove-circle - id: remove-circle - unicode: f05c - created: 1.0 - categories: - - Web Application Icons - - - name: ok-circle - id: ok-circle - unicode: f05d - created: 1.0 - categories: - - Web Application Icons - - - name: ban-circle - id: ban-circle - unicode: f05e - created: 1.0 - categories: - - Web Application Icons - - - - name: arrow-left - id: arrow-left - unicode: f060 - created: 1.0 - categories: - - Directional Icons - - - name: arrow-right - id: arrow-right - unicode: f061 - created: 1.0 - categories: - - Directional Icons - - - name: arrow-up - id: arrow-up - unicode: f062 - created: 1.0 - categories: - - Directional Icons - - - name: arrow-down - id: arrow-down - unicode: f063 - created: 1.0 - categories: - - Directional Icons - - - name: share-alt - id: share-alt - unicode: f064 - created: 1.0 - aliases: - - mail-forward - categories: - - Web Application Icons - - - name: resize-full - id: resize-full - unicode: f065 - created: 1.0 - categories: - - Video Player Icons - - - name: resize-small - id: resize-small - unicode: f066 - created: 1.0 - categories: - - Video Player Icons - - - name: plus - id: plus - unicode: f067 - created: 1.0 - categories: - - Web Application Icons - - - name: minus - id: minus - unicode: f068 - created: 1.0 - categories: - - Web Application Icons - - - name: asterisk - id: asterisk - unicode: f069 - created: 1.0 - categories: - - Web Application Icons - - - name: exclamation-sign - id: exclamation-sign - unicode: f06a - created: 1.0 - categories: - - Web Application Icons - - - name: gift - id: gift - unicode: f06b - created: 1.0 - categories: - - Web Application Icons - - - name: leaf - id: leaf - unicode: f06c - created: 1.0 - categories: - - Web Application Icons - - - name: fire - id: fire - unicode: f06d - created: 1.0 - categories: - - Web Application Icons - - - name: eye-open - id: eye-open - unicode: f06e - created: 1.0 - categories: - - Web Application Icons - - - - name: eye-close - id: eye-close - unicode: f070 - created: 1.0 - categories: - - Web Application Icons - - - name: warning-sign - id: warning-sign - unicode: f071 - created: 1.0 - categories: - - Web Application Icons - - - name: plane - id: plane - unicode: f072 - created: 1.0 - categories: - - Web Application Icons - - - name: calendar - id: calendar - unicode: f073 - created: 1.0 - categories: - - Web Application Icons - - - name: random - id: random - unicode: f074 - created: 1.0 - categories: - - Web Application Icons - - - name: comment - id: comment - unicode: f075 - created: 1.0 - categories: - - Web Application Icons - - - name: magnet - id: magnet - unicode: f076 - created: 1.0 - categories: - - Web Application Icons - - - name: chevron-up - id: chevron-up - unicode: f077 - created: 1.0 - categories: - - Directional Icons - - - name: chevron-down - id: chevron-down - unicode: f078 - created: 1.0 - categories: - - Directional Icons - - - name: retweet - id: retweet - unicode: f079 - created: 1.0 - categories: - - Web Application Icons - - - name: shopping-cart - id: shopping-cart - unicode: f07a - created: 1.0 - categories: - - Web Application Icons - - - name: folder-close - id: folder-close - unicode: f07b - created: 1.0 - categories: - - Web Application Icons - - - name: folder-open - id: folder-open - unicode: f07c - created: 1.0 - categories: - - Web Application Icons - - - name: resize-vertical - id: resize-vertical - unicode: f07d - created: 1.0 - categories: - - Web Application Icons - - - name: resize-horizontal - id: resize-horizontal - unicode: f07e - created: 1.0 - categories: - - Web Application Icons - - - - name: bar-chart - id: bar-chart - unicode: f080 - created: 1.0 - categories: - - Web Application Icons - - - name: twitter-sign - id: twitter-sign - unicode: f081 - created: 1.0 - categories: - - Brand Icons - - - name: facebook-sign - id: facebook-sign - unicode: f082 - created: 1.0 - categories: - - Brand Icons - - - name: camera-retro - id: camera-retro - unicode: f083 - created: 1.0 - categories: - - Web Application Icons - - - name: key - id: key - unicode: f084 - created: 1.0 - categories: - - Web Application Icons - - - name: cogs - id: cogs - unicode: f085 - created: 1.0 - aliases: - - gears - categories: - - Web Application Icons - - - name: comments - id: comments - unicode: f086 - created: 1.0 - categories: - - Web Application Icons - - - name: thumbs-up-alt - id: thumbs-up-alt - unicode: f087 - created: 1.0 - categories: - - Web Application Icons - - - name: thumbs-down-alt - id: thumbs-down-alt - unicode: f088 - created: 1.0 - categories: - - Web Application Icons - - - name: star-half - id: star-half - unicode: f089 - created: 1.0 - categories: - - Web Application Icons - - - name: heart-empty - id: heart-empty - unicode: f08a - created: 1.0 - categories: - - Web Application Icons - - - name: signout - id: signout - unicode: f08b - created: 1.0 - categories: - - Web Application Icons - - - name: linkedin-sign - id: linkedin-sign - unicode: f08c - created: 1.0 - categories: - - Brand Icons - - - name: pushpin - id: pushpin - unicode: f08d - created: 1.0 - categories: - - Web Application Icons - - - name: external-link - id: external-link - unicode: f08e - created: 1.0 - categories: - - Web Application Icons - - - - name: signin - id: signin - unicode: f090 - created: 1.0 - categories: - - Web Application Icons - - - name: trophy - id: trophy - unicode: f091 - created: 1.0 - categories: - - Web Application Icons - - - name: github-sign - id: github-sign - unicode: f092 - created: 1.0 - categories: - - Brand Icons - - - name: upload-alt - id: upload-alt - unicode: f093 - created: 1.0 - categories: - - Web Application Icons - - - name: lemon - id: lemon - unicode: f094 - created: 1.0 - categories: - - Web Application Icons - - - name: phone - id: phone - unicode: f095 - created: 2.0 - categories: - - Web Application Icons - - - name: check-empty - id: check-empty - unicode: f096 - created: 2.0 - aliases: - - unchecked - categories: - - Web Application Icons - - - name: bookmark-empty - id: bookmark-empty - unicode: f097 - created: 2.0 - categories: - - Web Application Icons - - - name: phone-sign - id: phone-sign - unicode: f098 - created: 2.0 - categories: - - Web Application Icons - - - name: twitter - id: twitter - unicode: f099 - created: 2.0 - categories: - - Brand Icons - - - name: facebook - id: facebook - unicode: f09a - created: 2.0 - categories: - - Brand Icons - - - name: github - id: github - unicode: f09b - created: 2.0 - categories: - - Brand Icons - - - name: unlock - id: unlock - unicode: f09c - created: 2.0 - categories: - - Web Application Icons - - - name: credit-card - id: credit-card - unicode: f09d - created: 2.0 - categories: - - Web Application Icons - - - name: rss - id: rss - unicode: f09e - created: 2.0 - categories: - - Web Application Icons - - - - name: hdd - id: hdd - unicode: f0a0 - created: 2.0 - categories: - - Web Application Icons - - - name: bullhorn - id: bullhorn - unicode: f0a1 - created: 2.0 - categories: - - Web Application Icons - - - name: bell - id: bell - unicode: f0a2 - created: 2.0 - categories: - - Web Application Icons - - - name: certificate - id: certificate - unicode: f0a3 - created: 2.0 - categories: - - Web Application Icons - - - name: hand-right - id: hand-right - unicode: f0a4 - created: 2.0 - categories: - - Directional Icons - - - name: hand-left - id: hand-left - unicode: f0a5 - created: 2.0 - categories: - - Directional Icons - - - name: hand-up - id: hand-up - unicode: f0a6 - created: 2.0 - categories: - - Directional Icons - - - name: hand-down - id: hand-down - unicode: f0a7 - created: 2.0 - categories: - - Directional Icons - - - name: circle-arrow-left - id: circle-arrow-left - unicode: f0a8 - created: 2.0 - categories: - - Directional Icons - - - name: circle-arrow-right - id: circle-arrow-right - unicode: f0a9 - created: 2.0 - categories: - - Directional Icons - - - name: circle-arrow-up - id: circle-arrow-up - unicode: f0aa - created: 2.0 - categories: - - Directional Icons - - - name: circle-arrow-down - id: circle-arrow-down - unicode: f0ab - created: 2.0 - categories: - - Directional Icons - - - name: globe - id: globe - unicode: f0ac - created: 2.0 - categories: - - Web Application Icons - - - name: wrench - id: wrench - unicode: f0ad - created: 2.0 - categories: - - Web Application Icons - - - name: tasks - id: tasks - unicode: f0ae - created: 2.0 - categories: - - Web Application Icons - - - - name: filter - id: filter - unicode: f0b0 - created: 2.0 - categories: - - Web Application Icons - - - name: briefcase - id: briefcase - unicode: f0b1 - created: 2.0 - categories: - - Web Application Icons - - - name: fullscreen - id: fullscreen - unicode: f0b2 - created: 2.0 - categories: - - Video Player Icons - - - - name: group - id: group - unicode: f0c0 - created: 2.0 - categories: - - Web Application Icons - - - name: link - id: link - unicode: f0c1 - created: 2.0 - categories: - - Text Editor Icons - - - name: cloud - id: cloud - unicode: f0c2 - created: 2.0 - categories: - - Web Application Icons - - - name: beaker - id: beaker - unicode: f0c3 - created: 2.0 - categories: - - Web Application Icons - - - name: cut - id: cut - unicode: f0c4 - created: 2.0 - categories: - - Text Editor Icons - - - name: copy - id: copy - unicode: f0c5 - created: 2.0 - categories: - - Text Editor Icons - - - name: paper-clip - id: paper-clip - unicode: f0c6 - created: 2.0 - aliases: - - paperclip - categories: - - Text Editor Icons - - - name: save - id: save - unicode: f0c7 - created: 2.0 - categories: - - Text Editor Icons - - - name: sign-blank - id: sign-blank - unicode: f0c8 - created: 2.0 - categories: - - Web Application Icons - - - name: reorder - id: reorder - unicode: f0c9 - created: 2.0 - categories: - - Web Application Icons - - - name: list-ul - id: list-ul - unicode: f0ca - created: 2.0 - categories: - - Text Editor Icons - - - name: list-ol - id: list-ol - unicode: f0cb - created: 2.0 - categories: - - Text Editor Icons - - - name: strikethrough - id: strikethrough - unicode: f0cc - created: 2.0 - categories: - - Text Editor Icons - - - name: underline - id: underline - unicode: f0cd - created: 2.0 - categories: - - Text Editor Icons - - - name: table - id: table - unicode: f0ce - created: 2.0 - categories: - - Text Editor Icons - - - - name: magic - id: magic - unicode: f0d0 - created: 2.0 - categories: - - Web Application Icons - - - name: truck - id: truck - unicode: f0d1 - created: 2.0 - categories: - - Web Application Icons - - - name: pinterest - id: pinterest - unicode: f0d2 - created: 2.0 - categories: - - Brand Icons - - - name: pinterest-sign - id: pinterest-sign - unicode: f0d3 - created: 2.0 - categories: - - Brand Icons - - - name: google-plus-sign - id: google-plus-sign - unicode: f0d4 - created: 2.0 - categories: - - Brand Icons - - - name: google-plus - id: google-plus - unicode: f0d5 - created: 2.0 - categories: - - Brand Icons - - - name: money - id: money - unicode: f0d6 - created: 2.0 - categories: - - Web Application Icons - - - name: caret-down - id: caret-down - unicode: f0d7 - created: 2.0 - categories: - - Directional Icons - - - name: caret-up - id: caret-up - unicode: f0d8 - created: 2.0 - categories: - - Directional Icons - - - name: caret-left - id: caret-left - unicode: f0d9 - created: 2.0 - categories: - - Directional Icons - - - name: caret-right - id: caret-right - unicode: f0da - created: 2.0 - categories: - - Directional Icons - - - name: columns - id: columns - unicode: f0db - created: 2.0 - categories: - - Text Editor Icons - - - name: sort - id: sort - unicode: f0dc - created: 2.0 - categories: - - Web Application Icons - - - name: sort-down - id: sort-down - unicode: f0dd - created: 2.0 - categories: - - Web Application Icons - - - name: sort-up - id: sort-up - unicode: f0de - created: 2.0 - categories: - - Web Application Icons - - - - name: Envelope - id: envelope - unicode: f0e0 - created: 2.0 - categories: - - Web Application Icons - - - name: linkedin - id: linkedin - unicode: f0e1 - created: 2.0 - categories: - - Brand Icons - - - - name: undo - id: undo - unicode: f0e2 - created: 2.0 - aliases: - - rotate-left - categories: - - Text Editor Icons - - - name: legal - id: legal - unicode: f0e3 - created: 2.0 - categories: - - Web Application Icons - - - name: dashboard - id: dashboard - unicode: f0e4 - created: 2.0 - categories: - - Web Application Icons - - - name: comment-alt - id: comment-alt - unicode: f0e5 - created: 2.0 - categories: - - Web Application Icons - - - name: comments-alt - id: comments-alt - unicode: f0e6 - created: 2.0 - categories: - - Web Application Icons - - - name: bolt - id: bolt - unicode: f0e7 - created: 2.0 - categories: - - Web Application Icons - - - name: sitemap - id: sitemap - unicode: f0e8 - created: 2.0 - categories: - - Web Application Icons - - - name: umbrella - id: umbrella - unicode: f0e9 - created: 2.0 - categories: - - Web Application Icons - - - name: paste - id: paste - unicode: f0ea - created: 2.0 - categories: - - Text Editor Icons - - - name: lightbulb - id: lightbulb - unicode: f0eb - created: 3.0 - categories: - - Web Application Icons - - - name: exchange - id: exchange - unicode: f0ec - created: 3.0 - categories: - - Web Application Icons - - - name: cloud-download - id: cloud-download - unicode: f0ed - created: 3.0 - categories: - - Web Application Icons - - - name: cloud-upload - id: cloud-upload - unicode: f0ee - created: 3.0 - categories: - - Web Application Icons - - - - name: user-md - id: user-md - unicode: f0f0 - created: 2.0 - categories: - - Medical Icons - - - name: stethoscope - id: stethoscope - unicode: f0f1 - created: 3.0 - categories: - - Medical Icons - - - name: suitcase - id: suitcase - unicode: f0f2 - created: 3.0 - categories: - - Web Application Icons - - - name: bell-alt - id: bell-alt - unicode: f0f3 - created: 3.0 - categories: - - Web Application Icons - - - name: coffee - id: coffee - unicode: f0f4 - created: 3.0 - categories: - - Web Application Icons - - - name: food - id: food - unicode: f0f5 - created: 3.0 - categories: - - Web Application Icons - - - name: file-text-alt - id: file-text-alt - unicode: f0f6 - created: 3.0 - categories: - - Text Editor Icons - - - name: building - id: building - unicode: f0f7 - created: 3.0 - categories: - - Web Application Icons - - - name: hospital - id: hospital - unicode: f0f8 - created: 3.0 - categories: - - Medical Icons - - - name: ambulance - id: ambulance - unicode: f0f9 - created: 3.0 - categories: - - Medical Icons - - - name: medkit - id: medkit - unicode: f0fa - created: 3.0 - categories: - - Medical Icons - - - name: fighter-jet - id: fighter-jet - unicode: f0fb - created: 3.0 - categories: - - Web Application Icons - - - name: beer - id: beer - unicode: f0fc - created: 3.0 - categories: - - Web Application Icons - - - name: h-sign - id: h-sign - unicode: f0fd - created: 3.0 - categories: - - Medical Icons - - - name: plus-sign-alt - id: plus-sign-alt - unicode: f0fe - created: 3.0 - categories: - - Medical Icons - - Web Application Icons - - - - name: double-angle-left - id: double-angle-left - unicode: f100 - created: 3.0 - categories: - - Directional Icons - - - name: double-angle-right - id: double-angle-right - unicode: f101 - created: 3.0 - categories: - - Directional Icons - - - name: double-angle-up - id: double-angle-up - unicode: f102 - created: 3.0 - categories: - - Directional Icons - - - name: double-angle-down - id: double-angle-down - unicode: f103 - created: 3.0 - categories: - - Directional Icons - - - name: angle-left - id: angle-left - unicode: f104 - created: 3.0 - categories: - - Directional Icons - - - name: angle-right - id: angle-right - unicode: f105 - created: 3.0 - categories: - - Directional Icons - - - name: angle-up - id: angle-up - unicode: f106 - created: 3.0 - categories: - - Directional Icons - - - name: angle-down - id: angle-down - unicode: f107 - created: 3.0 - categories: - - Directional Icons - - - name: desktop - id: desktop - unicode: f108 - created: 3.0 - categories: - - Web Application Icons - - - name: laptop - id: laptop - unicode: f109 - created: 3.0 - categories: - - Web Application Icons - - - name: tablet - id: tablet - unicode: f10a - created: 3.0 - categories: - - Web Application Icons - - - name: mobile-phone - id: mobile-phone - unicode: f10b - created: 3.0 - categories: - - Web Application Icons - - - name: circle-blank - id: circle-blank - unicode: f10c - created: 3.0 - categories: - - Web Application Icons - - - name: quote-left - id: quote-left - unicode: f10d - created: 3.0 - categories: - - Web Application Icons - - - name: quote-right - id: quote-right - unicode: f10e - created: 3.0 - categories: - - Web Application Icons - - - - name: spinner - id: spinner - unicode: f110 - created: 3.0 - categories: - - Web Application Icons - - - name: circle - id: circle - unicode: f111 - created: 3.0 - categories: - - Web Application Icons - - - name: reply - id: reply - unicode: f112 - created: 3.0 - aliases: - - mail-reply - categories: - - Web Application Icons - - - name: github-alt - id: github-alt - unicode: f113 - created: 3.0 - categories: - - Brand Icons - - - name: folder-close-alt - id: folder-close-alt - unicode: f114 - created: 3.0 - categories: - - Web Application Icons - - - name: folder-open-alt - id: folder-open-alt - unicode: f115 - created: 3.0 - categories: - - Web Application Icons - - - name: expand-alt - id: expand-alt - unicode: f116 - created: 3.1 - categories: - - Web Application Icons - - - name: collapse-alt - id: collapse-alt - unicode: f117 - created: 3.1 - categories: - - Web Application Icons - - - name: smile - id: smile - unicode: f118 - created: 3.1 - categories: - - Web Application Icons - - - name: frown - id: frown - unicode: f119 - created: 3.1 - categories: - - Web Application Icons - - - name: meh - id: meh - unicode: f11a - created: 3.1 - categories: - - Web Application Icons - - - name: gamepad - id: gamepad - unicode: f11b - created: 3.1 - categories: - - Web Application Icons - - - name: keyboard - id: keyboard - unicode: f11c - created: 3.1 - categories: - - Web Application Icons - - - name: flag-alt - id: flag-alt - unicode: f11d - created: 3.1 - categories: - - Web Application Icons - - - name: flag-checkered - id: flag-checkered - unicode: f11e - created: 3.1 - categories: - - Web Application Icons - - - - name: terminal - id: terminal - unicode: f120 - created: 3.1 - categories: - - Web Application Icons - - - name: code - id: code - unicode: f121 - created: 3.1 - categories: - - Web Application Icons - - - name: reply-all - id: reply-all - unicode: f122 - created: 3.1 - categories: - - Web Application Icons - - - name: mail-reply-all - id: mail-reply-all - unicode: f122 - created: 3.1 - categories: - - Web Application Icons - - - name: star-half-empty - id: star-half-empty - unicode: f123 - created: 3.1 - aliases: - - star-half-full - categories: - - Web Application Icons - - - name: location-arrow - id: location-arrow - unicode: f124 - created: 3.1 - categories: - - Web Application Icons - - - name: crop - id: crop - unicode: f125 - created: 3.1 - categories: - - Web Application Icons - - - name: code-fork - id: code-fork - unicode: f126 - created: 3.1 - categories: - - Web Application Icons - - - name: unlink - id: unlink - unicode: f127 - created: 3.1 - categories: - - Text Editor Icons - - - name: question - id: question - unicode: f128 - created: 3.1 - categories: - - Web Application Icons - - - name: info - id: info - unicode: f129 - created: 3.1 - categories: - - Web Application Icons - - - name: exclamation - id: exclamation - unicode: f12a - created: 3.1 - categories: - - Web Application Icons - - - name: superscript - id: superscript - unicode: f12b - created: 3.1 - categories: - - Web Application Icons - - - name: subscript - id: subscript - unicode: f12c - created: 3.1 - categories: - - Web Application Icons - - - name: eraser - id: eraser - unicode: f12d - created: 3.1 - categories: - - Text Editor Icons - - Web Application Icons - - - name: puzzle-piece - id: puzzle-piece - unicode: f12e - created: 3.1 - categories: - - Web Application Icons - - - - name: microphone - id: microphone - unicode: f130 - created: 3.1 - categories: - - Web Application Icons - - - name: microphone-off - id: microphone-off - unicode: f131 - created: 3.1 - categories: - - Web Application Icons - - - name: shield - id: shield - unicode: f132 - created: 3.1 - categories: - - Web Application Icons - - - name: calendar-empty - id: calendar-empty - unicode: f133 - created: 3.1 - categories: - - Web Application Icons - - - name: fire-extinguisher - id: fire-extinguisher - unicode: f134 - created: 3.1 - categories: - - Web Application Icons - - - name: rocket - id: rocket - unicode: f135 - created: 3.1 - categories: - - Web Application Icons - - - name: MaxCDN - id: maxcdn - unicode: f136 - created: 3.1 - categories: - - Brand Icons - - - name: Chevron Sign Left - id: chevron-sign-left - unicode: f137 - created: 3.1 - categories: - - Directional Icons - - - name: Chevron Sign Right - id: chevron-sign-right - unicode: f138 - created: 3.1 - categories: - - Directional Icons - - - name: Chevron Sign Up - id: chevron-sign-up - unicode: f139 - created: 3.1 - categories: - - Directional Icons - - - name: Chevron Sign Down - id: chevron-sign-down - unicode: f13a - created: 3.1 - categories: - - Directional Icons - - - name: HTML 5 Logo - id: html5 - unicode: f13b - created: 3.1 - categories: - - Brand Icons - - - name: CSS 3 Logo - id: css3 - unicode: f13c - created: 3.1 - categories: - - Brand Icons - - - name: Anchor - id: anchor - unicode: f13d - created: 3.1 - categories: - - Web Application Icons - - - name: Unlock Alt - id: unlock-alt - unicode: f13e - created: 3.1 - categories: - - Web Application Icons - - - - name: Bullseye - id: bullseye - unicode: f140 - created: 3.1 - categories: - - Web Application Icons - - - name: Horizontal Ellipsis - id: ellipsis-horizontal - unicode: f141 - created: 3.1 - categories: - - Web Application Icons - - - name: Vertical Ellipsis - id: ellipsis-vertical - unicode: f142 - created: 3.1 - categories: - - Web Application Icons - - - name: RSS Sign - id: rss-sign - unicode: f143 - created: 3.1 - categories: - - Web Application Icons - - - name: Play Sign - id: play-sign - unicode: f144 - created: 3.1 - categories: - - Video Player Icons - - - name: Ticket - id: ticket - unicode: f145 - created: 3.1 - categories: - - Web Application Icons - - - name: Minus Sign Alt - id: minus-sign-alt - unicode: f146 - created: 3.1 - categories: - - Web Application Icons - - - name: Check Minus - id: check-minus - unicode: f147 - created: 3.1 - categories: - - Web Application Icons - - - name: Level Up - id: level-up - unicode: f148 - created: 3.1 - categories: - - Web Application Icons - - - name: Level Down - id: level-down - unicode: f149 - created: 3.1 - categories: - - Web Application Icons - - - name: Check Sign - id: check-sign - unicode: f14a - created: 3.1 - categories: - - Web Application Icons - - - name: Edit Sign - id: edit-sign - unicode: f14b - created: 3.1 - categories: - - Web Application Icons - - - name: Exteral Link Sign - id: external-link-sign - unicode: f14c - created: 3.1 - categories: - - Web Application Icons - - - name: Share Sign - id: share-sign - unicode: f14d - created: 3.1 - categories: - - Web Application Icons - - - name: Compass - id: compass - unicode: f14e - created: 3.2 - categories: - - Web Application Icons - - - - name: Collapse - id: collapse - unicode: f150 - created: 3.2 - categories: - - Web Application Icons - - - name: Collapse Top - id: collapse-top - unicode: f151 - created: 3.2 - categories: - - Web Application Icons - - - name: Expand - id: expand - unicode: f152 - created: 3.2 - categories: - - Web Application Icons - - - name: Euro (EUR) - id: eur - unicode: f153 - created: 3.2 - aliases: - - euro - categories: - - Currency Icons - - - name: GBP - id: gbp - unicode: f154 - created: 3.2 - categories: - - Currency Icons - - - name: US Dollar - id: usd - unicode: f155 - created: 3.2 - aliases: - - dollar - categories: - - Currency Icons - - - name: Indian Rupee (INR) - id: inr - unicode: f156 - created: 3.2 - aliases: - - rupee - categories: - - Currency Icons - - - name: Japanese Yen (JPY) - id: jpy - unicode: f157 - created: 3.2 - aliases: - - yen - categories: - - Currency Icons - - - name: Renminbi (CNY) - id: cny - unicode: f158 - created: 3.2 - aliases: - - renminbi - categories: - - Currency Icons - - - name: Korean Won (KRW) - id: krw - unicode: f159 - created: 3.2 - aliases: - - won - categories: - - Currency Icons - - - name: Bitcoin (BTC) - id: btc - unicode: f15a - created: 3.2 - aliases: - - bitcoin - categories: - - Currency Icons - - Brand Icons - - - name: File - id: file - unicode: f15b - created: 3.2 - categories: - - Text Editor Icons - - - name: File Text - id: file-text - unicode: f15c - created: 3.2 - categories: - - Text Editor Icons - - - name: Sort By Alphabet - id: sort-by-alphabet - unicode: f15d - created: 3.2 - categories: - - Web Application Icons - - - name: Sort By Alphabet Alt - id: sort-by-alphabet-alt - unicode: f15e - created: 3.2 - categories: - - Web Application Icons - - - - name: Sort By Attributes - id: sort-by-attributes - unicode: f160 - created: 3.2 - categories: - - Web Application Icons - - - name: Sort By Attributes Alt - id: sort-by-attributes-alt - unicode: f161 - created: 3.2 - categories: - - Web Application Icons - - - name: Sort By Order - id: sort-by-order - unicode: f162 - created: 3.2 - categories: - - Web Application Icons - - - name: Sort By Order Alt - id: sort-by-order-alt - unicode: f163 - created: 3.2 - categories: - - Web Application Icons - - - - name: thumbs-up - id: thumbs-up - unicode: f164 - created: 3.2 - categories: - - Web Application Icons - - - name: thumbs-down - id: thumbs-down - unicode: f165 - created: 3.2 - categories: - - Web Application Icons - - - name: YouTube Sign - id: youtube-sign - unicode: f166 - created: 3.2 - categories: - - Brand Icons - - - name: YouTube - id: youtube - unicode: f167 - created: 3.2 - categories: - - Brand Icons - - - name: Xing - id: xing - unicode: f168 - created: 3.2 - categories: - - Brand Icons - - - name: Xing Sign - id: xing-sign - unicode: f169 - created: 3.2 - categories: - - Brand Icons - - - name: YouTube Play - id: youtube-play - unicode: f16a - created: 3.2 - categories: - - Brand Icons - - Video Player Icons - - - name: Dropbox - id: dropbox - unicode: f16b - created: 3.2 - categories: - - Brand Icons - - - name: Stack Exchange - id: stackexchange - unicode: f16c - created: 3.2 - categories: - - Brand Icons - - - name: Instagram - id: instagram - unicode: f16d - created: 3.2 - categories: - - Brand Icons - - - name: Flickr - id: flickr - unicode: f16e - created: 3.2 - categories: - - Brand Icons - - - name: App.net - id: adn - unicode: f170 - created: 3.2 - categories: - - Brand Icons - - - name: Bitbucket - id: bitbucket - unicode: f171 - created: 3.2 - categories: - - Brand Icons - - - name: Bitbucket Sign - id: bitbucket-sign - unicode: f172 - created: 3.2 - categories: - - Brand Icons - - - name: Tumblr - id: tumblr - unicode: f173 - created: 3.2 - categories: - - Brand Icons - - - name: Tumblr Sign - id: tumblr-sign - unicode: f174 - created: 3.2 - categories: - - Brand Icons - - - name: Long Arrow Down - id: long-arrow-down - unicode: f175 - created: 3.2 - categories: - - Directional Icons - - - name: Long Arrow Up - id: long-arrow-up - unicode: f176 - created: 3.2 - categories: - - Directional Icons - - - name: Long Arrow Left - id: long-arrow-left - unicode: f177 - created: 3.2 - categories: - - Directional Icons - - - name: Long Arrow Right - id: long-arrow-right - unicode: f178 - created: 3.2 - categories: - - Directional Icons - - - name: Apple - id: apple - unicode: f179 - created: 3.2 - categories: - - Brand Icons - - - name: Windows - id: windows - unicode: f17a - created: 3.2 - categories: - - Brand Icons - - - name: Android - id: android - unicode: f17b - created: 3.2 - categories: - - Brand Icons - - - name: Linux - id: linux - unicode: f17c - created: 3.2 - categories: - - Brand Icons - - - name: Dribbble - id: dribbble - unicode: f17d - created: 3.2 - categories: - - Brand Icons - - - name: Skype - id: skype - unicode: f17e - created: 3.2 - categories: - - Brand Icons - - - - name: Foursquare - id: foursquare - unicode: f180 - created: 3.2 - categories: - - Brand Icons - - - name: Trello - id: trello - unicode: f181 - created: 3.2 - categories: - - Brand Icons - - - name: Female - id: female - unicode: f182 - created: 3.2 - categories: - - Web Application Icons - - - name: Male - id: male - unicode: f183 - created: 3.2 - categories: - - Web Application Icons - - - name: Gittip - id: gittip - unicode: f184 - created: 3.2 - categories: - - Brand Icons - - - name: Sun - id: sun - unicode: f185 - created: 3.2 - categories: - - Web Application Icons - - - name: Moon - id: moon - unicode: f186 - created: 3.2 - categories: - - Web Application Icons - - - name: Archive - id: archive - unicode: f187 - created: 3.2 - categories: - - Web Application Icons - - - name: Bug - id: bug - unicode: f188 - created: 3.2 - categories: - - Web Application Icons - - - name: VK - id: vk - unicode: f189 - created: 3.2 - categories: - - Brand Icons - - - name: Weibo - id: weibo - unicode: f18a - created: 3.2 - categories: - - Brand Icons - - - name: Renren - id: renren - unicode: f18b - created: 3.2 - categories: - - Brand Icons diff --git a/library/font_awesome/src/3.2.1/icons/index.html b/library/font_awesome/src/3.2.1/icons/index.html deleted file mode 100644 index c28cd9480..000000000 --- a/library/font_awesome/src/3.2.1/icons/index.html +++ /dev/null @@ -1,1211 +0,0 @@ - - - - - - - - - - Font Awesome Icons - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - -
    -
    -

      The Icons

    -

    The complete set of 361 icons in Font Awesome 3.2.1

    -
    -
    - -
    -
    - -
    -
    - - -
    - -
    -
    -
    -
    - Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! -
    -
    -
    -
    -
    -
    -
    - -

    - You asked, Font Awesome delivers with 58 shiny new icons in version 3.2. - Want to request new icons? Here's how. - - Need vectors or want to use on the desktop? Check the cheatsheet. -

    - -
    -
    -
    - -
    -
    -
    - - - - -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    - -
    - - - - -
    - -
    - - - - -
    - -
    - - - - -
    - -
    - - - - -
    - -
    - - -
    -
      -
    • All brand icons are trademarks of their respective owners.
    • -
    • The use of these trademarks does not indicate endorsement of the trademark holder by Font Awesome, nor vice versa.
    • -
    - -
    - - -
    - -
    - - - - -
    - - -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/index.html b/library/font_awesome/src/3.2.1/index.html deleted file mode 100644 index 751adca98..000000000 --- a/library/font_awesome/src/3.2.1/index.html +++ /dev/null @@ -1,329 +0,0 @@ - - - - - - - - - - Font Awesome, the iconic font designed for Bootstrap - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -
    -
    -
    -
    -

    Font Awesome

    -

    The iconic font designed for Bootstrap

    - -
    - - GitHub Project   ·   - Version 3.2.1   ·   - Created & Maintained by Dave Gandy -
    -
    -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
    -
    - - -
    - -
    -
    -
    -
    - Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! -
    -
    -
    -
    -
    -
    -
    - -

    - Font Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, - and anything that can be done with the power of CSS. -

    - -
    -
    -
    - -
    -
    -
    - - -
    -
    -
    -

    One Font, 361 Icons

    - In a single collection, Font Awesome is a pictographic language of web-related actions. -
    -
    -

    CSS Control

    - Easily style icon color, size, shadow, and anything that's possible with CSS. -
    -
    -

    Infinite Scalability

    - Scalable vector graphics means every icon looks awesome at any size. -
    -
    -

    Free, as in Speech

    - Font Awesome is completely free for commercial use. Check out the license. -
    -
    -

    IE7 Support

    - Font Awesome supports IE7. If you need it, you have my condolences. -
    -
    -

    Perfect on Retina Displays

    - Font Awesome icons are vectors, which mean they're gorgeous on high-resolution displays. -
    -
    -

    Made for Bootstrap

    - Designed from scratch to be fully compatible with Bootstrap 2.3.2. -
    -
    -

    Desktop Friendly

    - To use on the desktop or for a complete set of vectors, - check out the cheatsheet. -
    -
    -

    Screen Reader Compatible

    - Font Awesome won't trip up screen readers, unlike other icon fonts. -
    -
    -
    - -
    - -
    -
    -

    - Thanks to @robmadole and - @supercodepoet for icon design - review, advice, some Jekyll help, and being all around badass coders. -

    -
    -
    -

    - Thanks to @grantgordon and - @johnsmclay for developing and hosting - icnfnt, the best way to subset Font Awesome. -

    -
    -
    -

    - Thanks to MaxCDN for providing the excellent - BootstrapCDN, the fastest and easiest way to - get started with Font Awesome. -

    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/license/index.html b/library/font_awesome/src/3.2.1/license/index.html deleted file mode 100644 index e37dea886..000000000 --- a/library/font_awesome/src/3.2.1/license/index.html +++ /dev/null @@ -1,270 +0,0 @@ - - - - - - - - - - Font Awesome License - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - -
    -
    -

      License

    -

    The full details of how Font Awesome is licensed

    -
    -
    - -
    -
    - -
    -
    - - -
    - -
    -
    -
    -
    - Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! -
    -
    -
    -
    -
    -
    -
    - -

    - Font Awesome is fully open source and is GPL compatible. You can use it for commercial projects, open source - projects, or really just about whatever you want. -

    - -
    -
    -
    - -
    -
    -
    - - -
    -
    -
      -
    • - Attribution is no longer required as of Font Awesome 3.0 but is much appreciated: - "Font Awesome by Dave Gandy - http://fontawesome.io". -
    • -
    -
    -
    - -
    - -
      -
    • - Applies to all desktop and webfont files in the following directory: - font-awesome/font/. -
    • -
    • License: SIL OFL 1.1
    • -
    • URL: http://scripts.sil.org/OFL
    • -
    -
    - -
    - - -
    - -
    - - -
    - -
    - -
      -
    • All brand icons are trademarks of their respective owners.
    • -
    • The use of these trademarks does not indicate endorsement of the trademark holder by Font Awesome, nor vice versa.
    • -
    - -
    - -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/test/index.html b/library/font_awesome/src/3.2.1/test/index.html deleted file mode 100644 index 42557221c..000000000 --- a/library/font_awesome/src/3.2.1/test/index.html +++ /dev/null @@ -1,1056 +0,0 @@ - - - - - - - - - - Font Awesome Visual Test Cases - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
    -

    Visual Test Cases

    - -

    Icons Icons should have proper alignment and not be clipped

    -
    -
    -
    - Building -
    -
    -
    -
    - Building Large -
    -
    -
    - Building -
    -
    - Building Large -
    -
    -
    -
    -
    - Building -
    -
    -
    -
    - Building Large -
    -
    -
    - Building Large -
    -
    -
    -
    -
    - Circle -
    -
    -
    -
    - Circle Large -
    -
    -
    - Circle -
    -
    - Circle Large -
    -
    -
    -
    -
    - Circle -
    -
    -
    -
    - Circle Large -
    -
    -
    - Circle Large -
    -
    - - -

    Links with Icons icon should activate link & underline

    - - - - -

    Navbar should stay same height

    - - - -

    Plain buttons next to buttons w/icons should be same height, icons not clipped

    -

    Buttons

    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    - - -

    Anchors

    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    - - -

    Buttons with pulled 2x, 3x, 4x should be same height, have correct line height

    - - - -

    Nav pills & nav tabs should be same height and properly vertically aligned

    - - - - -

    2x, 3x, 4x icons in text should have margins next to and below text

    -
    -
    -

    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -

    -
    -
    -

    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -

    -
    -
    -
    -
    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -
    -
    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -
    -
    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -
    -
    - - -

    Bullets should wrap appropriately, have proper spacing

    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. - - foo - foo -
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. - - foo - foo -
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. - - foo - foo -
    • -
    -
    -
    -
    - - -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    - - -

    Spinning icons icons should be aligned well and on center, buttons should be same height, won't work in ie7

    -
    - Loading... - - - Loading... - - Loading... -
    -
    - Loading... - - - Loading... - -
    -
    - Loading... - - - Loading... - -
    -

    icon-large

    -
    - Loading... - - - Loading... - -
    -
    - Loading... - - - Loading... - -
    -
    - Loading... - - - Loading... - -
    -

    Bootstrap Prepend and Append

    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - -

    Stacked icons

    -
    -

    - - - - - Twitter Icon - - - - - Facebook Icon - - - - - GitHub Icon -

    -

    - - - - - Twitter Icon - - - - - Facebook Icon - - - - - GitHub Icon -

    -

    - - - - - Twitter Icon - - - - - Facebook Icon - - - - - GitHub Icon -

    -
    -
    -

    - - - - - Twitter Icon - - - - - Facebook Icon - - - - - GitHub Icon -

    -

    - - - - - Twitter Icon - - - - - Facebook Icon - - - - - GitHub Icon -

    -

    - - - - - Twitter Icon - - - - - Facebook Icon - - - - - GitHub Icon -

    -
    -

    Stacked icons inside anchor

    - - - -

    Mirrored and rotated icons

    -
    -
    -
    -   normal
    -  icon-rotate-90
    -  icon-rotate-180
    -  icon-rotate-270
    -  icon-flip-horizontal
    -  icon-flip-vertical - -
    -
    -
    -
    -   normal
    -  icon-rotate-90
    -  icon-rotate-180
    -  icon-rotate-270
    -  icon-flip-horizontal
    -  icon-flip-vertical - -
    -
    -
    -

    Mirrored and rotated icons inside anchors and buttons

    - - -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/3.2.1/whats-new/index.html b/library/font_awesome/src/3.2.1/whats-new/index.html deleted file mode 100644 index 4effebab8..000000000 --- a/library/font_awesome/src/3.2.1/whats-new/index.html +++ /dev/null @@ -1,442 +0,0 @@ - - - - - - - - - - What's New - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - -
    -
    -

      What's New

    -

    What's New in the latest version — Font Awesome 3.2

    -
    -
    - -
    -
    - -
    -
    - - -
    - -
    -
    -
    -
    - Heads up! These docs are for v3.2.1, which is no longer officially supported. Check out the latest version of Font Awesome! -
    -
    -
    -
    -
    -
    -
    - -

    - Font Awesome is always getting a little awesome-er. So here's what's new in the latest version, Font Awesome - 3.2. Have some ideas for new features? - Help contribute. -

    - -
    -
    -
    - -
    -
    -
    - - -
    -
    -
    -

    58 New Icons in 3.2

    - Requested by the active community on the Font Awesome GitHub project. -
    -
    -

    SCSS Support

    - A long term solution is now in place for SCSS support. Need SASS? Try sass-convert. -
    -
    -

    Better & Simpler License

    - SIL OFL 1.1 for font, MIT license for code. No more attribution required, but much appreciated. -
    -
    -

    Pixel Perfection at 14px

    - Version 3 was re-created from the ground up to be razor sharp at Bootstrap's default 14px. -
    -
    -

    Font Subsetting

    - Thanks to @grantgordon and @johnsmclay, you can subset to get just the icons you need. -
    -
    -

    Want More Details?

    - Check out the CHANGELOG on the GitHub project to see - what's new and changed. -
    -
    -
    - -
    - -
    -
    -

    Rotated and Flipped Icons

    -
    -   normal
    -   icon-rotate-90
    -   icon-rotate-180
    -   icon-rotate-270
    -   icon-flip-horizontal
    -   icon-flip-vertical -
    -
    -
    -

    Stacked Icons

    -
    - - - - - icon-twitter on icon-check-empty
    - - - - - icon-flag on icon-circle
    - - - - - icon-terminal on icon-sign-blank -
    -
    -
    -

    Better Bulleted Lists

    -
    -
      -
    • New bulleted lists
    • -
    • Fix some old bugs
    • -
    • And deal with arbitrary
    • -
    • Font sizes better
    • -
    -
    -
    -
    -
    - -
    - - -
    - You asked, Font Awesome delivers with 58 shiny new icons in version 3.2. - Want to request new icons? Here's how. -
    - - - - -
    - -
    - -
    -
    - - - - - - - - - - - diff --git a/library/font_awesome/src/CNAME b/library/font_awesome/src/CNAME deleted file mode 100644 index f13145254..000000000 --- a/library/font_awesome/src/CNAME +++ /dev/null @@ -1 +0,0 @@ -fontawesome.io \ No newline at end of file diff --git a/library/font_awesome/src/Makefile b/library/font_awesome/src/Makefile deleted file mode 100644 index 80e243f14..000000000 --- a/library/font_awesome/src/Makefile +++ /dev/null @@ -1,40 +0,0 @@ ---- ---- -PATH := ../node_modules/.bin:$(PATH) - -FA_ROOT_DIRECTORY = assets/font-awesome -FA_LESS_DIRECTORY = assets/font-awesome/less -FA_SCSS_DIRECTORY = assets/font-awesome/scss -FA_CSS_DIRECTORY = assets/font-awesome/css - -FA_LESS_MODERN = ${FA_LESS_DIRECTORY}/font-awesome.less -FA_SCSS_MODERN = ${FA_SCSS_DIRECTORY}/font-awesome.scss - -FA_CSS_MODERN = ${FA_CSS_DIRECTORY}/font-awesome.css -FA_CSS_MODERN_MIN = ${FA_CSS_DIRECTORY}/font-awesome.min.css - -SITE_LESS_DIRECTORY = assets/less -SITE_CSS_DIRECTORY = assets/css - -SITE_LESS = ${SITE_LESS_DIRECTORY}/site.less -SITE_CSS = ${SITE_CSS_DIRECTORY}/site.css - -build: - @echo "Compiling Less files" - @mkdir -p ${FA_CSS_DIRECTORY} - - bundle exec lessc ${FA_LESS_MODERN} > ${FA_CSS_MODERN} - bundle exec lessc --compress ${FA_LESS_MODERN} > ${FA_CSS_MODERN_MIN} -# sass ${FA_SCSS_MODERN} ${FA_CSS_MODERN} - - bundle exec lessc --compress ${SITE_LESS} > ${SITE_CSS} - cp -r ${FA_ROOT_DIRECTORY}/* ../ - mv README.md-nobuild ../README.md - cd assets && mv font-awesome font-awesome-{{ site.fontawesome.version }} && zip -r9 font-awesome-{{ site.fontawesome.version }}.zip font-awesome-{{ site.fontawesome.version }} && mv font-awesome-{{ site.fontawesome.version }} font-awesome - - find .. -type f ! -perm 644 -exec chmod 644 {} \; - -default: build - - -.PHONY: build diff --git a/library/font_awesome/src/README.md-nobuild b/library/font_awesome/src/README.md-nobuild deleted file mode 100644 index e155b7b67..000000000 --- a/library/font_awesome/src/README.md-nobuild +++ /dev/null @@ -1,108 +0,0 @@ ---- ---- -# [Font Awesome v{{ site.fontawesome.version }}]({{ site.fontawesome.url }}) -### The iconic font and CSS framework - -Font Awesome is a full suite of {{ icons | size }} pictographic icons for easy scalable vector graphics on websites, -created and maintained by [{{ site.fontawesome.author.name }}](https://twitter.com/{{ site.fontawesome.author.twitter }}). -Stay up to date with the latest release and announcements on Twitter: -[@{{ site.fontawesome.twitter }}](http://twitter.com/{{ site.fontawesome.twitter }}). - -Get started at {{ site.fontawesome.url }}! - -## License -- The Font Awesome font is licensed under the SIL OFL 1.1: - - http://scripts.sil.org/OFL -- Font Awesome CSS, LESS, and Sass files are licensed under the MIT License: - - https://opensource.org/licenses/mit-license.html -- The Font Awesome documentation is licensed under the CC BY 3.0 License: - - http://creativecommons.org/licenses/by/3.0/ -- Attribution is no longer required as of Font Awesome 3.0, but much appreciated: - - `Font Awesome by Dave Gandy - http://fontawesome.io` -- Full details: http://fontawesome.io/license/ - -## Changelog -- [v4.7.0 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/10012) -- [v4.6.3 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9189) -- [v4.6.3 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9189) -- [v4.6.2 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/9117) -- [v4.6.1 GitHub pull request](https://github.com/FortAwesome/Font-Awesome/pull/8962) -- [v4.6.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.6.0+is%3Aclosed) -- [v4.5.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.5.0+is%3Aclosed) -- [v4.4.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.4.0+is%3Aclosed) -- [v4.3.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?q=milestone%3A4.3.0+is%3Aclosed) -- [v4.2.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=12&page=1&state=closed) -- [v4.1.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=6&page=1&state=closed) -- [v4.0.3 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=9&page=1&state=closed) -- [v4.0.2 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=8&page=1&state=closed) -- [v4.0.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=7&page=1&state=closed) -- [v4.0.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=2&page=1&state=closed) -- [v3.2.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=5&page=1&state=closed) -- [v3.2.0 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=3&page=1&state=closed) -- [v3.1.1 GitHub milestones](https://github.com/FortAwesome/Font-Awesome/issues?milestone=4&page=1&state=closed) -- v3.1.0 - Added 54 icons, icon stacking styles, flipping and rotating icons, removed Sass support -- v3.0.2 - much improved rendering and alignment in IE7 -- v3.0.1 - much improved rendering in webkit, various bug fixes -- v3.0.0 - all icons redesigned from scratch, optimized for Bootstrap's 14px default - -## Contributing - -Please read through our [contributing guidelines](https://github.com/FortAwesome/Font-Awesome/blob/master/CONTRIBUTING.md). -Included are directions for opening issues, coding standards, and notes on development. - -## Versioning - -Font Awesome will be maintained under the Semantic Versioning guidelines as much as possible. Releases will be numbered -with the following format: - -`..` - -And constructed with the following guidelines: - -* Breaking backward compatibility bumps the major (and resets the minor and patch) -* New additions, including new icons, without breaking backward compatibility bumps the minor (and resets the patch) -* Bug fixes, changes to brand logos, and misc changes bumps the patch - -For more information on SemVer, please visit http://semver.org. - -## Author -- Email: {{ site.fontawesome.author.email }} -- Twitter: http://twitter.com/{{ site.fontawesome.author.twitter }} -- GitHub: https://github.com/{{ site.fontawesome.author.github }} - -## Component -To include as a [component](https://github.com/componentjs/component), just run - - $ component install FortAwesome/Font-Awesome - -Or add - - "FortAwesome/Font-Awesome": "*" - -to the `dependencies` in your `component.json`. - -## Hacking on Font Awesome - -**Before you can build the project**, you must first have the following installed: - -- [Ruby](https://www.ruby-lang.org/en/) -- Ruby Development Headers - - **Ubuntu:** `sudo apt-get install ruby-dev` *(Only if you're __NOT__ using `rbenv` or `rvm`)* - - **Windows:** [DevKit](http://rubyinstaller.org/) -- [Bundler](http://bundler.io/) (Run `gem install bundler` to install). -- [Node Package Manager (AKA NPM)](https://docs.npmjs.com/getting-started/installing-node) -- [Less](http://lesscss.org/) (Run `npm install -g less` to install). -- [Less Plugin: Clean CSS](https://github.com/less/less-plugin-clean-css) (Run `npm install -g less-plugin-clean-css` to install). - -From the root of the repository, install the tools used to develop. - - $ bundle install - $ npm install - -Build the project and documentation: - - $ bundle exec jekyll build - -Or serve it on a local server on http://localhost:7998/Font-Awesome/: - - $ bundle exec jekyll -w serve diff --git a/library/font_awesome/src/_includes/accessibility/accessibility-facdn.html b/library/font_awesome/src/_includes/accessibility/accessibility-facdn.html deleted file mode 100644 index 624e0fcec..000000000 --- a/library/font_awesome/src/_includes/accessibility/accessibility-facdn.html +++ /dev/null @@ -1,21 +0,0 @@ -
    -
    -
    -

    - - Use Font Awesome CDN's auto accessibility -

    - -

    Font Awesome CDN helps you automate accessibility support more easily so your icons work for the most people possible. You only need turn on a setting, use our simple syntax, and any icons you use will have all of the best practices and manual techniques below applied automatically.

    -
    - - -
    - -
    diff --git a/library/font_awesome/src/_includes/accessibility/accessibility-manual.html b/library/font_awesome/src/_includes/accessibility/accessibility-manual.html deleted file mode 100644 index c886ba85b..000000000 --- a/library/font_awesome/src/_includes/accessibility/accessibility-manual.html +++ /dev/null @@ -1,121 +0,0 @@ -
    - -

    - - Manually make your icons accessible -

    - -

    When using icons in your UI, there are manual techniques and ways to help assistive technology either ignore or better understand Font Awesome.

    - -

    Icons used for pure decoration or visual styling

    -

    If you're using an icon to add some extra decoration or branding, it does not need to be announced to users as they are navigating your site or app aurally. Additionally, if you're using an icon to visually re-emphasize or add styling to content already present in your HTML, it does not need to be repeated to an assistive technology-using user. You can make sure this is not read by adding the aria-hidden="true" to your Font Awesome markup.

    - -
    -{% highlight html %} - -{% endhighlight %} -an icon being used as pure decoration -
    - -
    -{% highlight html %} -

    - - Pied Piper, A Middle-Out Compression Solution Making Data Storage Problems Smaller -

    -{% endhighlight %} -an icon being used as a logo -
    - -
    -{% highlight html %} - View this project's code on Github -{% endhighlight %} -an icon being used in front of link text -
    - -

    Icons with semantic or interactive purpose

    -

    - If you're using an icon to convey meaning (rather than only as a decorative element), ensure that this meaning is also conveyed to assistive technologies. This goes for content you're abbreviating via icons as well as interactive controls (buttons, form elements, toggles, etc.). There are a few techniques to accomplish this: -

    - -

    If an icon is not an interactive element

    -

    - The simplest way to provide a text alternative is to use the aria-hidden="true" attribute on the icon and to include the text with an additional element, such as a <span>, with appropriate CSS to visually hide the element while keeping it accessible to assistive technologies. In addition, you can add a title attribute on the icon to provide a tooltip for sighted mouse users. -

    - -
    -{% highlight html %} -
    -
    - - Time to destination by car: -
    -
    4 minutes
    - -
    - - Time to destination by bike: -
    -
    12 minutes
    -
    -{% endhighlight %} - an icon being used to communicate travel methods -
    - -
    -{% highlight html %} - -60 minutes remain in your exam - - -30 minutes remain in your exam - - -0 minutes remain in your exam -{% endhighlight %} - an icon being used to denote time remaining -
    - -

    If an icon represents an interactive element

    -

    - In the case of focusable interactive elements, there are various options to include an alternative text or label to the element, without the need for any visually hidden <span> or similar. For instance, simply adding the aria-label attribute with a text description to the interactive element itself will be sufficient to provide an accessible alternative name for the element. If you need to provide a visual tooltip on mouseover/focus, we recommend additionally using the title attribute or a custom tooltip solution. -

    - -
    -{% highlight html %} - - - -{% endhighlight %} - an icon being used to communicate shopping cart state -
    - -
    -{% highlight html %} - - - -{% endhighlight %} - an icon being used as a link to a navigation menu -
    - -
    -{% highlight html %} - - - -{% endhighlight %} - an icon being used as a delete button's symbol with a title attribute to provide a native mouse tooltip -
    - - - -
    diff --git a/library/font_awesome/src/_includes/accessibility/background.html b/library/font_awesome/src/_includes/accessibility/background.html deleted file mode 100644 index da97e4762..000000000 --- a/library/font_awesome/src/_includes/accessibility/background.html +++ /dev/null @@ -1,15 +0,0 @@ -
    -

    About Icon Fonts & Accessibility

    -

    - Modern versions of assistive technology, like screen readers, will read CSS generated content (how Font Awesome icons are rendered), as well as specific Unicode characters. When reading our default markup for rendering icons, assisistive technology may have the following problems. -

    - -
      -
    • - The assistive technology may not find any content to read out to a user -
    • -
    • - The assistive technology may read the unicode equivalent, which could not match up to what the icon means in context, or worse is just plain confusing -
    • -
    -
    diff --git a/library/font_awesome/src/_includes/accessibility/cta-cdn-ally.html b/library/font_awesome/src/_includes/accessibility/cta-cdn-ally.html deleted file mode 100644 index 61d4fe3a6..000000000 --- a/library/font_awesome/src/_includes/accessibility/cta-cdn-ally.html +++ /dev/null @@ -1,11 +0,0 @@ -
    -
    - - - -
    -

    Automate your icons' accessibility

    -

    Font Awesome CDN helps you automate accessibility support more easily so your icons work for the most people possible. You only need turn on a setting and any icons you use will have all of the best practices we recommend applied automatically.

    - - Get Automated Accessibility -
    diff --git a/library/font_awesome/src/_includes/accessibility/other.html b/library/font_awesome/src/_includes/accessibility/other.html deleted file mode 100644 index d3054ba8c..000000000 --- a/library/font_awesome/src/_includes/accessibility/other.html +++ /dev/null @@ -1,17 +0,0 @@ -
    - -

    - While the scenarios and techniques here help avoid some serious issues and confusion, they are not exhaustive. There are many complex contexts and use cases when it comes to accessibility, such as users with low vision who need a high color contrast ratio to see UI. There are some great tools and resources to learn from and work on these issues out there. Here are a few reads we recommend. -

    - - - -

    - We'll continue to work on these under the larger topic of accessibility, but in the meantime, let us know if any bugs or issues. -

    -
    diff --git a/library/font_awesome/src/_includes/ads/fusion.html b/library/font_awesome/src/_includes/ads/fusion.html deleted file mode 100644 index c49a9f42c..000000000 --- a/library/font_awesome/src/_includes/ads/fusion.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/library/font_awesome/src/_includes/brand-adblock-warning.html b/library/font_awesome/src/_includes/brand-adblock-warning.html deleted file mode 100644 index 9f4ddd8b6..000000000 --- a/library/font_awesome/src/_includes/brand-adblock-warning.html +++ /dev/null @@ -1,5 +0,0 @@ -

    Warning!

    -Apparently, Adblock Plus can remove Font Awesome brand icons with their "Remove Social -Media Buttons" setting. We will not use hacks to force them to display. Please -report an issue with Adblock Plus if you believe this to be -an error. To work around this, you'll need to modify the social icon class names. diff --git a/library/font_awesome/src/_includes/brand-license.html b/library/font_awesome/src/_includes/brand-license.html deleted file mode 100644 index 731aa354a..000000000 --- a/library/font_awesome/src/_includes/brand-license.html +++ /dev/null @@ -1,6 +0,0 @@ -
      -
    • All brand icons are trademarks of their respective owners.
    • -
    • The use of these trademarks does not indicate endorsement of the trademark holder by Font Awesome, nor vice versa.
    • -
    • Brand icons should only be used to represent the company or product to which they refer.
    • -
    • Please do not use brand logos for any purpose except to represent that particular brand or service.
    • -
    diff --git a/library/font_awesome/src/_includes/code/core.less b/library/font_awesome/src/_includes/code/core.less deleted file mode 100644 index cbd0d1ae7..000000000 --- a/library/font_awesome/src/_includes/code/core.less +++ /dev/null @@ -1,6 +0,0 @@ - display: inline-block; - font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration - font-size: inherit; // can't have font-size inherit on line above, so need to override - text-rendering: auto; // optimizelegibility throws things off #1094 - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; diff --git a/library/font_awesome/src/_includes/code/core.scss b/library/font_awesome/src/_includes/code/core.scss deleted file mode 100644 index c7ea6e0e3..000000000 --- a/library/font_awesome/src/_includes/code/core.scss +++ /dev/null @@ -1,6 +0,0 @@ - display: inline-block; - font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration - font-size: inherit; // can't have font-size inherit on line above, so need to override - text-rendering: auto; // optimizelegibility throws things off #1094 - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; diff --git a/library/font_awesome/src/_includes/code/license.css b/library/font_awesome/src/_includes/code/license.css deleted file mode 100644 index 7e503a805..000000000 --- a/library/font_awesome/src/_includes/code/license.css +++ /dev/null @@ -1,4 +0,0 @@ -/*! - * Font Awesome {{ site.fontawesome.version }} by @{{ site.fontawesome.author.twitter }} - {{ site.fontawesome.url }} - @{{ site.fontawesome.twitter }} - * License - {{ site.fontawesome.url }}/license (Font: {{ site.fontawesome.license.font.version }}, CSS: {{ site.fontawesome.license.code.version }}) - */ \ No newline at end of file diff --git a/library/font_awesome/src/_includes/community/getting-support.html b/library/font_awesome/src/_includes/community/getting-support.html deleted file mode 100644 index 8ae311adc..000000000 --- a/library/font_awesome/src/_includes/community/getting-support.html +++ /dev/null @@ -1,22 +0,0 @@ -
    - -

    - Having trouble getting Font Awesome up and running? Something not working the way you think it should? I hate that - I don't have time to answer Font Awesome support emails anymore. So here are some things you might wanna do: -

    -
      -
    1. - Make sure you've read the latest version of how to get started. - It's been updated recently to make Font Awesome even easier to use. -
    2. -
    3. - Check out the existing questions tagged as - Font Awesome over on Stack Overflow. Other folks might have had the same question you've had. -
    4. -
    5. - Can't find the answer to your question on Stack Overflow? - Ask a new question, then - send me an email and I might be able to take a look. -
    6. -
    -
    diff --git a/library/font_awesome/src/_includes/community/project-milestones.html b/library/font_awesome/src/_includes/community/project-milestones.html deleted file mode 100644 index 598569981..000000000 --- a/library/font_awesome/src/_includes/community/project-milestones.html +++ /dev/null @@ -1,7 +0,0 @@ -
    - -

    - Want to keep up with what's planned for Font Awesome? Check out our - milestones on the GitHub project. -

    -
    diff --git a/library/font_awesome/src/_includes/community/reporting-bugs.html b/library/font_awesome/src/_includes/community/reporting-bugs.html deleted file mode 100644 index b8fb61e49..000000000 --- a/library/font_awesome/src/_includes/community/reporting-bugs.html +++ /dev/null @@ -1,18 +0,0 @@ -
    - -

    - Found a problem with Font Awesome? Feel free to submit an issue on the GitHub project. But please keep the following in mind: -

    -
      -
    1. Please be nice. Font Awesome is a happy place.
    2. -
    3. Please search to see if your bug was already reported.
    4. -
    5. - Before opening any issue, please read the generic issue - guidelines, by Nicolas Gallagher. -
    6. -
    7. - After doing everything above, feel free to - submit an issue. -
    8. -
    -
    diff --git a/library/font_awesome/src/_includes/community/requesting-new-icons.html b/library/font_awesome/src/_includes/community/requesting-new-icons.html deleted file mode 100644 index d08aa16ff..000000000 --- a/library/font_awesome/src/_includes/community/requesting-new-icons.html +++ /dev/null @@ -1,29 +0,0 @@ -
    - -

    - New icons mostly start as requests by the - Font Awesome community on GitHub. Want to request a new - icon? Here are some things to keep in mind: -

    -
      -
    1. Please be nice. Font Awesome is a happy place.
    2. -
    3. Please search to see if your icon request already exists. If a request is found, please add a 👍 reaction to that one.
    4. -
    5. - Please make requests for single icons, unless you are requesting a couple of strictly related icons (e.g., thumbs-up/thumbs-down). -
    6. -
    7. - Please and thank you if you include the following: -
        -
      • - Title your new issue - Icon request: icon-name (e.g., Icon request: icon-car). -
      • -
      • Include a few use cases for your requested icon. How do you plan on using it?
      • -
      • Attach a single color image or two that represent the idea you're going for.
      • -
      -
    8. -
    9. - Request concrete objects: it's harder to make an icon to represent happiness, it's easier to make a smiley face. -
    10. -
    -
    diff --git a/library/font_awesome/src/_includes/community/submitting-pull-requests.html b/library/font_awesome/src/_includes/community/submitting-pull-requests.html deleted file mode 100644 index 1a55aba7b..000000000 --- a/library/font_awesome/src/_includes/community/submitting-pull-requests.html +++ /dev/null @@ -1,13 +0,0 @@ -
    - - Found a way to solve a bug in Font Awesome? Want to contribute new features? Here are a few things to remember: -
      -
    1. Please do not submit new icons.
    2. -
    3. Please submit all pull requests against *-wip branches.
    4. -
    5. All pull requests submitted against master will be summarily closed and this guide referenced.
    6. -
    7. - After doing everything above, feel free to - submit a pull request. -
    8. -
    -
    diff --git a/library/font_awesome/src/_includes/examples/accessible.html b/library/font_awesome/src/_includes/examples/accessible.html deleted file mode 100644 index 0360a4621..000000000 --- a/library/font_awesome/src/_includes/examples/accessible.html +++ /dev/null @@ -1,101 +0,0 @@ -
    - -
    -
    -

    - - - - - - - - - - - -

    - -

    - - Refreshing... - - - Saving. Hang tight! -

    - -

    -

    - - -
    -
    - - -
    -

    - -

    - - - -

    - -

    - - Battery level: 50% -

    -
    -
    -

    - With our thoughts on icon accessibility in mind, If an icon only adds some extra decoration or branding, it does not need to be announced to users as they are navigating your site or app aurally. Alternatively, if an icon conveys meaning in your content or interface, ensure that this meaning is also conveyed to assistive technologies through alternative displays or text. -

    - -{% highlight html %} - - - - - - - - - - - -{% endhighlight %} - -{% highlight html %} - -Refreshing... - - -Saving. Hang tight! -{% endhighlight %} - -{% highlight html %} -
    - - -
    -
    - - -
    -{% endhighlight %} - -{% highlight html %} - - - -{% endhighlight %} - -{% highlight html %} - -Battery level: 50% -{% endhighlight %} -
    -
    -
    diff --git a/library/font_awesome/src/_includes/examples/animated.html b/library/font_awesome/src/_includes/examples/animated.html deleted file mode 100644 index 927e98bbd..000000000 --- a/library/font_awesome/src/_includes/examples/animated.html +++ /dev/null @@ -1,60 +0,0 @@ -
    - -
    -
    -

    - - Loading example (with fa-spinner icon) - - - Loading (with fa-circle-o-notch icon) - - - Loading example (with fa-refresh icon) - - - Loading example (with fa-cog icon) - - - Loading example (with fa-spinner icon) -

    -
    -
    -

    - Use the fa-spin class to get any icon to rotate, and use fa-pulse to have it rotate - with 8 steps. Works well with fa-spinner, fa-refresh, and fa-cog. -

    -{% highlight html %} - -Loading... - - -Loading... - - -Loading... - - -Loading... - - -Loading... -{% endhighlight %} -

    - Note: - Some browsers on some platforms have issues with animated icons resulting in a jittery wobbling effect. See - issue #671 - for examples and possible workarounds. -

    -

    - Note: CSS3 animations aren't supported in IE8 - IE9. -

    -
    -
    -
    diff --git a/library/font_awesome/src/_includes/examples/basic.html b/library/font_awesome/src/_includes/examples/basic.html deleted file mode 100644 index c00fb4787..000000000 --- a/library/font_awesome/src/_includes/examples/basic.html +++ /dev/null @@ -1,39 +0,0 @@ -
    - - -
    -
    -

    - - Example: basic icon - fa-camera-retro -

    -
    -
    -

    - You can place Font Awesome icons just about anywhere using the CSS Prefix fa and the icon's - name. Font Awesome is designed to be used with inline elements (we like the <i> tag for - brevity, but using a <span> is more semantically correct). -

    -{% highlight html %} - fa-camera-retro -{% endhighlight %} -
    -
      -
    • - - Example: basic icon - If you change the font-size of the icon's container, the icon gets bigger. Same things goes for color, - drop shadow, and anything else that gets inherited using CSS. -
    • -
    -
    -
    -
    -
    diff --git a/library/font_awesome/src/_includes/examples/bootstrap.html b/library/font_awesome/src/_includes/examples/bootstrap.html deleted file mode 100644 index bcc6c0171..000000000 --- a/library/font_awesome/src/_includes/examples/bootstrap.html +++ /dev/null @@ -1,111 +0,0 @@ -
    - -
    - -
    -

    - Font Awesome works great with the full range of Bootstrap components. -

    -{% highlight html %} - - Delete - - Settings - - - Font Awesome
    Version {{ site.fontawesome.version }}
    - - - -
    - - -
    -
    - - -
    - - -{% endhighlight %} -
    -
    -
    diff --git a/library/font_awesome/src/_includes/examples/bordered-pulled.html b/library/font_awesome/src/_includes/examples/bordered-pulled.html deleted file mode 100644 index b7841f0c2..000000000 --- a/library/font_awesome/src/_includes/examples/bordered-pulled.html +++ /dev/null @@ -1,30 +0,0 @@ -
    - -
    -
    -

    - - …tomorrow we will run faster, stretch out our arms farther… And then one fine morning— - So we beat on, boats against the current, borne back ceaselessly into the past. -

    -
    -
    -

    - Use fa-border and fa-pull-right or fa-pull-left for easy pull quotes or - article icons. -

    -{% highlight html %} - -...tomorrow we will run faster, stretch out our arms farther... -And then one fine morning— So we beat on, boats against the -current, borne back ceaselessly into the past. -{% endhighlight %} -
    -
    -
    diff --git a/library/font_awesome/src/_includes/examples/custom.html b/library/font_awesome/src/_includes/examples/custom.html deleted file mode 100644 index 2de7ad7ab..000000000 --- a/library/font_awesome/src/_includes/examples/custom.html +++ /dev/null @@ -1,16 +0,0 @@ -
    - -
    -
    -

    Anything you can do with CSS font styles, you can do with Font Awesome.

    -
    -
    -

    Star Ratings (inspired by CSS Tricks)

    -
    - - - -
    -
    -
    -
    diff --git a/library/font_awesome/src/_includes/examples/fixed-width.html b/library/font_awesome/src/_includes/examples/fixed-width.html deleted file mode 100644 index 845a79609..000000000 --- a/library/font_awesome/src/_includes/examples/fixed-width.html +++ /dev/null @@ -1,33 +0,0 @@ -
    - -
    - -
    -

    - Use fa-fw to set icons at a fixed width. Great to use when different icon widths throw off alignment. - Especially useful in things like nav lists & list groups. -

    -{% highlight html %} - -{% endhighlight %} -
    -
    -
    diff --git a/library/font_awesome/src/_includes/examples/larger.html b/library/font_awesome/src/_includes/examples/larger.html deleted file mode 100644 index f10c7188a..000000000 --- a/library/font_awesome/src/_includes/examples/larger.html +++ /dev/null @@ -1,40 +0,0 @@ -
    - -
    -
    -

    fa-lg

    -

    fa-2x

    -

    fa-3x

    -

    fa-4x

    -

    fa-5x

    -
    -
    -

    - To increase icon sizes relative to their container, use the fa-lg (33% increase), fa-2x, - fa-3x, fa-4x, or fa-5x classes. -

    -{% highlight html %} - fa-lg - fa-2x - fa-3x - fa-4x - fa-5x -{% endhighlight %} -
    -
      -
    • - - If your icons are getting chopped off on top and bottom, make sure you have - sufficient line-height. -
    • -
    -
    -
    -
    -
    diff --git a/library/font_awesome/src/_includes/examples/list.html b/library/font_awesome/src/_includes/examples/list.html deleted file mode 100644 index 1c7f3008f..000000000 --- a/library/font_awesome/src/_includes/examples/list.html +++ /dev/null @@ -1,30 +0,0 @@ -
    - -
    -
    -
      -
    • List icons
    • -
    • can be used
    • -
    • as bullets
    • -
    • in lists
    • -
    -
    -
    -

    Use fa-ul and fa-li to easily replace default bullets in unordered lists.

    -{% highlight html %} -
      -
    • List icons
    • -
    • can be used
    • -
    • as bullets
    • -
    • in lists
    • -
    -{% endhighlight %} -
    -
    -
    diff --git a/library/font_awesome/src/_includes/examples/rotated-flipped.html b/library/font_awesome/src/_includes/examples/rotated-flipped.html deleted file mode 100644 index 4c5b437f1..000000000 --- a/library/font_awesome/src/_includes/examples/rotated-flipped.html +++ /dev/null @@ -1,34 +0,0 @@ -
    - -
    -
    -

    -   normal
    -   fa-rotate-90
    -   fa-rotate-180
    -   fa-rotate-270
    -   fa-flip-horizontal
    -   fa-flip-vertical -

    -
    -
    -

    - To arbitrarily rotate and flip icons, use the fa-rotate-* and fa-flip-* classes. -

    -{% highlight html %} - normal
    - fa-rotate-90
    - fa-rotate-180
    - fa-rotate-270
    - fa-flip-horizontal
    - fa-flip-vertical -{% endhighlight %} -
    -
    -
    diff --git a/library/font_awesome/src/_includes/examples/stacked.html b/library/font_awesome/src/_includes/examples/stacked.html deleted file mode 100644 index 505ed2edf..000000000 --- a/library/font_awesome/src/_includes/examples/stacked.html +++ /dev/null @@ -1,65 +0,0 @@ -
    - -
    -
    -
    - - fa-twitter on fa-square-o
    - - fa-flag on fa-circle
    - - fa-terminal on fa-square
    - - fa-ban on fa-camera -
    -
    -
    -

    - To stack multiple icons, use the fa-stack class on the parent, the fa-stack-1x - for the regularly sized icon, and fa-stack-2x for the larger icon. fa-inverse - can be used as an alternative icon color. You can even throw larger icon classes on the parent - to get further control of sizing. -

    -{% highlight html %} - - - - -fa-twitter on fa-square-o
    - - - - -fa-flag on fa-circle
    - - - - -fa-terminal on fa-square
    - - - - -fa-ban on fa-camera -{% endhighlight %} -
    -
    -
    diff --git a/library/font_awesome/src/_includes/footer.html b/library/font_awesome/src/_includes/footer.html deleted file mode 100644 index d15a65524..000000000 --- a/library/font_awesome/src/_includes/footer.html +++ /dev/null @@ -1,36 +0,0 @@ - diff --git a/library/font_awesome/src/_includes/icons/accessibility.html b/library/font_awesome/src/_includes/icons/accessibility.html deleted file mode 100644 index 14cd92e5c..000000000 --- a/library/font_awesome/src/_includes/icons/accessibility.html +++ /dev/null @@ -1,12 +0,0 @@ -
    - - -
    - {% assign icons_currency = icons | expand_aliases | category:"Accessibility Icons" | sort_by:'class' %} - - {% for icon in icons_currency %} - - {% endfor %} -
    - -
    diff --git a/library/font_awesome/src/_includes/icons/brand.html b/library/font_awesome/src/_includes/icons/brand.html deleted file mode 100644 index 3243bc83e..000000000 --- a/library/font_awesome/src/_includes/icons/brand.html +++ /dev/null @@ -1,19 +0,0 @@ -
    - - -
    - {% assign icons_brand = icons | expand_aliases | category:"Brand Icons" | sort_by:'class' %} - - {% for icon in icons_brand %} - - {% endfor %} -
    - -
    - {% include brand-adblock-warning.html %} -
    - -
    - {% include brand-license.html %} -
    -
    diff --git a/library/font_awesome/src/_includes/icons/chart.html b/library/font_awesome/src/_includes/icons/chart.html deleted file mode 100644 index f5cbc1cca..000000000 --- a/library/font_awesome/src/_includes/icons/chart.html +++ /dev/null @@ -1,12 +0,0 @@ -
    - - -
    - {% assign icons_chart = icons | expand_aliases | category:"Chart Icons" | sort_by:'class' %} - - {% for icon in icons_chart %} - - {% endfor %} -
    - -
    diff --git a/library/font_awesome/src/_includes/icons/currency.html b/library/font_awesome/src/_includes/icons/currency.html deleted file mode 100644 index bc9061513..000000000 --- a/library/font_awesome/src/_includes/icons/currency.html +++ /dev/null @@ -1,12 +0,0 @@ -
    - - -
    - {% assign icons_currency = icons | expand_aliases | category:"Currency Icons" | sort_by:'class' %} - - {% for icon in icons_currency %} - - {% endfor %} -
    - -
    diff --git a/library/font_awesome/src/_includes/icons/directional.html b/library/font_awesome/src/_includes/icons/directional.html deleted file mode 100644 index d8f2a4c0e..000000000 --- a/library/font_awesome/src/_includes/icons/directional.html +++ /dev/null @@ -1,12 +0,0 @@ -
    - - -
    - {% assign icons_directional = icons | expand_aliases | category:"Directional Icons" | sort_by:'class' %} - - {% for icon in icons_directional %} - - {% endfor %} -
    - -
    diff --git a/library/font_awesome/src/_includes/icons/file-type.html b/library/font_awesome/src/_includes/icons/file-type.html deleted file mode 100644 index 290022be1..000000000 --- a/library/font_awesome/src/_includes/icons/file-type.html +++ /dev/null @@ -1,12 +0,0 @@ -
    - - -
    - {% assign icons_file_type = icons | expand_aliases | category:"File Type Icons" | sort_by:'class' %} - - {% for icon in icons_file_type %} - - {% endfor %} -
    - -
    diff --git a/library/font_awesome/src/_includes/icons/form-control.html b/library/font_awesome/src/_includes/icons/form-control.html deleted file mode 100644 index a8cac628a..000000000 --- a/library/font_awesome/src/_includes/icons/form-control.html +++ /dev/null @@ -1,11 +0,0 @@ -
    - - -
    - {% assign icons_form_control = icons | expand_aliases | category:"Form Control Icons" | sort_by:'class' %} - - {% for icon in icons_form_control %} - - {% endfor %} -
    -
    diff --git a/library/font_awesome/src/_includes/icons/gender.html b/library/font_awesome/src/_includes/icons/gender.html deleted file mode 100644 index 1fbde026b..000000000 --- a/library/font_awesome/src/_includes/icons/gender.html +++ /dev/null @@ -1,12 +0,0 @@ -
    - - -
    - {% assign icons_gender = icons | expand_aliases | category:"Gender Icons" | sort_by:'class' %} - - {% for icon in icons_gender %} - - {% endfor %} -
    - -
    diff --git a/library/font_awesome/src/_includes/icons/hand.html b/library/font_awesome/src/_includes/icons/hand.html deleted file mode 100644 index 4104af2e0..000000000 --- a/library/font_awesome/src/_includes/icons/hand.html +++ /dev/null @@ -1,12 +0,0 @@ -
    - - -
    - {% assign icons_hand = icons | expand_aliases | category:"Hand Icons" | sort_by:'class' %} - - {% for icon in icons_hand %} - - {% endfor %} -
    - -
    diff --git a/library/font_awesome/src/_includes/icons/medical.html b/library/font_awesome/src/_includes/icons/medical.html deleted file mode 100644 index 23364382a..000000000 --- a/library/font_awesome/src/_includes/icons/medical.html +++ /dev/null @@ -1,12 +0,0 @@ -
    - - -
    - {% assign icons_medical = icons | expand_aliases | category:"Medical Icons" | sort_by:'class' %} - - {% for icon in icons_medical %} - - {% endfor %} -
    - -
    diff --git a/library/font_awesome/src/_includes/icons/new.html b/library/font_awesome/src/_includes/icons/new.html deleted file mode 100644 index 91a10b3e8..000000000 --- a/library/font_awesome/src/_includes/icons/new.html +++ /dev/null @@ -1,18 +0,0 @@ -
    - - {% if page.navbar_active != "icons" %} -
    - You asked, Font Awesome delivers with {{ icons | version:site.fontawesome.minor_version | size }} shiny new icons in version {{ site.fontawesome.minor_version }}. - Want to request new icons? Here's how. -
    - {% endif %} - -
    - {% assign icons_new = icons | expand_aliases | version:site.fontawesome.minor_version | sort_by:'class' %} - - {% for icon in icons_new %} - - {% endfor %} -
    - -
    diff --git a/library/font_awesome/src/_includes/icons/payment.html b/library/font_awesome/src/_includes/icons/payment.html deleted file mode 100644 index 03a636465..000000000 --- a/library/font_awesome/src/_includes/icons/payment.html +++ /dev/null @@ -1,12 +0,0 @@ -
    - - -
    - {% assign icons_payment = icons | expand_aliases | category:"Payment Icons" | sort_by:'class' %} - - {% for icon in icons_payment %} - - {% endfor %} -
    - -
    diff --git a/library/font_awesome/src/_includes/icons/spinner.html b/library/font_awesome/src/_includes/icons/spinner.html deleted file mode 100644 index ef9d68e8b..000000000 --- a/library/font_awesome/src/_includes/icons/spinner.html +++ /dev/null @@ -1,22 +0,0 @@ -
    - - -
    - -
    - -
    - {% assign icons_spinner = icons | expand_aliases | category:"Spinner Icons" | sort_by:'class' %} - - {% for icon in icons_spinner %} - - {% endfor %} -
    -
    diff --git a/library/font_awesome/src/_includes/icons/text-editor.html b/library/font_awesome/src/_includes/icons/text-editor.html deleted file mode 100644 index 05d33cb2b..000000000 --- a/library/font_awesome/src/_includes/icons/text-editor.html +++ /dev/null @@ -1,12 +0,0 @@ -
    - - -
    - {% assign icons_text_editor = icons | expand_aliases | category:"Text Editor Icons" | sort_by:'class' %} - - {% for icon in icons_text_editor %} - - {% endfor %} -
    - -
    diff --git a/library/font_awesome/src/_includes/icons/transportation.html b/library/font_awesome/src/_includes/icons/transportation.html deleted file mode 100644 index af2fd7e7f..000000000 --- a/library/font_awesome/src/_includes/icons/transportation.html +++ /dev/null @@ -1,12 +0,0 @@ -
    - - -
    - {% assign icons_transportation = icons | expand_aliases | category:"Transportation Icons" | sort_by:'class' %} - - {% for icon in icons_transportation %} - - {% endfor %} -
    - -
    diff --git a/library/font_awesome/src/_includes/icons/video-player.html b/library/font_awesome/src/_includes/icons/video-player.html deleted file mode 100644 index 4a57612d1..000000000 --- a/library/font_awesome/src/_includes/icons/video-player.html +++ /dev/null @@ -1,12 +0,0 @@ -
    - - -
    - {% assign icons_video_player = icons | expand_aliases | category:"Video Player Icons" | sort_by:'class' %} - - {% for icon in icons_video_player %} - - {% endfor %} -
    - -
    diff --git a/library/font_awesome/src/_includes/icons/web-application.html b/library/font_awesome/src/_includes/icons/web-application.html deleted file mode 100644 index 6e737e6cd..000000000 --- a/library/font_awesome/src/_includes/icons/web-application.html +++ /dev/null @@ -1,12 +0,0 @@ -
    - - -
    - {% assign icons_web_application = icons | expand_aliases | category:"Web Application Icons" | sort_by:'class' %} - - {% for icon in icons_web_application %} - - {% endfor %} -
    - -
    diff --git a/library/font_awesome/src/_includes/jumbotron-carousel.html b/library/font_awesome/src/_includes/jumbotron-carousel.html deleted file mode 100644 index bf938adec..000000000 --- a/library/font_awesome/src/_includes/jumbotron-carousel.html +++ /dev/null @@ -1,59 +0,0 @@ - diff --git a/library/font_awesome/src/_includes/jumbotron.html b/library/font_awesome/src/_includes/jumbotron.html deleted file mode 100644 index 93920f7a7..000000000 --- a/library/font_awesome/src/_includes/jumbotron.html +++ /dev/null @@ -1,19 +0,0 @@ -
    -
    - - {% if page.in_page_nav %} -
    -

    {{ jumbotron_h1 }}

    -

    {{ jumbotron_p }}

    -
    - -
    - {{ jumbotron_nav }} -
    - {% else %} -

    {{ jumbotron_h1 }}

    -

    {{ jumbotron_p }}

    - {% endif %} -
    - -
    diff --git a/library/font_awesome/src/_includes/modals/download.html b/library/font_awesome/src/_includes/modals/download.html deleted file mode 100644 index 384620bdc..000000000 --- a/library/font_awesome/src/_includes/modals/download.html +++ /dev/null @@ -1,58 +0,0 @@ - diff --git a/library/font_awesome/src/_includes/modals/kickstarter.html b/library/font_awesome/src/_includes/modals/kickstarter.html deleted file mode 100644 index 7f6f770eb..000000000 --- a/library/font_awesome/src/_includes/modals/kickstarter.html +++ /dev/null @@ -1,24 +0,0 @@ - diff --git a/library/font_awesome/src/_includes/navbar.html b/library/font_awesome/src/_includes/navbar.html deleted file mode 100644 index 97f4dc789..000000000 --- a/library/font_awesome/src/_includes/navbar.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - diff --git a/library/font_awesome/src/_includes/new-features.html b/library/font_awesome/src/_includes/new-features.html deleted file mode 100644 index e8d46f1c1..000000000 --- a/library/font_awesome/src/_includes/new-features.html +++ /dev/null @@ -1,29 +0,0 @@ - -
    -
    -
    -

    Completely Rewritten

    - Everything re-written from the ground up for speed and simplicity. -
    -
    -

    CSS Best Practices

    - New icon base class allows simpler CSS, faster rendering, and easier control. -
    -
    -

    New Icon Names

    - Icons have been renamed to improve consistency and predictability. -
    -
    -

    Bootstrap 3

    - Font Awesome {{ site.fontawesome.minor_version }} is fully tested and compatible with Bootstrap 3. -
    -
    -

    Better Compatibility

    - Font Awesome is now more compatible with all web frameworks, including Foundation. -
    -
    -

    {{ icons | version:site.fontawesome.minor_version | size }} New Icons in {{ site.fontawesome.minor_version }}

    - Requested by the active community on the Font Awesome GitHub project. -
    -
    -
    diff --git a/library/font_awesome/src/_includes/new-naming.html b/library/font_awesome/src/_includes/new-naming.html deleted file mode 100644 index 9777649a6..000000000 --- a/library/font_awesome/src/_includes/new-naming.html +++ /dev/null @@ -1,157 +0,0 @@ -
    - -

    fa-[name]-[shape]-[o]-[direction]

    -

    - A desire for better icon naming consistency and predictability are at the heart - of the changes in naming conventions. Once you know the name of the base icon shape, you should be able to predict - the names of variants. -

    -
    -
    -

    fa-*

    -

    Solid icons as the base variant

    -
      -
    • - - fa-bookmark -
    • -
    • - - fa-comment -
    • -
    • - - fa-folder -
    • -
    -
    -
    -

    *-o

    -

    Outlined version of previous modifier

    -
      -
    • - - fa-bookmark-o -
    • -
    • - - fa-comment-o -
    • -
    • - - fa-folder-o -
    • -
    -
    -
    -

    *-circle

    -

    Circle under previous modifier

    -
      -
    • - - fa-check-circle -
    • -
    • - - fa-exclamation-circle -
    • -
    • - - fa-plus-circle -
    • -
    -
    -
    -

    *-square

    -

    Square under previous modifier

    -
      -
    • - - fa-check-square -
    • -
    • - - fa-twitter-square -
    • -
    • - - fa-plus-square -
    • -
    -
    -
    -

    *-right, *-up, etc.

    -

    Directional modifier always at the end

    -
      -
    • - - fa-arrow-right -
    • -
    • - - fa-arrow-circle-right -
    • -
    • - - fa-angle-double-right -
    • -
    -
    -
    -

    *-alt

    -

    Alternative to the original

    -
      -
    • - - fa-unlock-alt -
    • -
    • - - fa-list-alt -
    • -
    • - - fa-github-alt -
    • -
    -
    -
    -

    *-h, *-v

    -

    Horizontal & vertical modifiers

    -
      -
    • - - fa-arrows-v -
    • -
    • - - fa-arrows-h -
    • -
    • - - fa-ellipsis-v -
    • -
    -
    -
    -

    Combine 'em up&helip;

    -

    Consistent when strung together

    -
      -
    • - - fa-arrow-circle-o-right -
    • -
    • - - fa-caret-square-o-right -
    • -
    • - - fa-hand-o-right -
    • -
    -
    - -
    - -
    diff --git a/library/font_awesome/src/_includes/new-upgrading.html b/library/font_awesome/src/_includes/new-upgrading.html deleted file mode 100644 index 5d2d88d93..000000000 --- a/library/font_awesome/src/_includes/new-upgrading.html +++ /dev/null @@ -1,10 +0,0 @@ -
    - -

    - For complete documentation of the syntax changes in {{ site.fontawesome.minor_version }}, check out the - examples. For the changes to icon names, - @gtagliala has put together a - great wiki page that - documents all the changes. -

    -
    diff --git a/library/font_awesome/src/_includes/products/camera-retro-tee.html b/library/font_awesome/src/_includes/products/camera-retro-tee.html deleted file mode 100644 index 4f6ff4dc9..000000000 --- a/library/font_awesome/src/_includes/products/camera-retro-tee.html +++ /dev/null @@ -1,31 +0,0 @@ - -
    - Available in the following sizes: - - - -
    -
    -
    - -
    -
    - -
    -
    - -
      -
    • Asphalt
    • -
    • Kelly Green
    • -
    - -
    - -
    -

    Camera Retro Tee

    -

    $28

    -
    -
    - American Apparel Fine Jersey Short Sleeve T-Shirt -
    -
    diff --git a/library/font_awesome/src/_includes/products/classics-tee.html b/library/font_awesome/src/_includes/products/classics-tee.html deleted file mode 100644 index 458f34ac2..000000000 --- a/library/font_awesome/src/_includes/products/classics-tee.html +++ /dev/null @@ -1,31 +0,0 @@ - -
    - Available in the following sizes: - - - -
    -
    -
    - -
    -
    - -
    -
    - -
      -
    • Kelly Green
    • -
    • Navy
    • -
    - -
    - -
    -

    Classics Tee

    -

    $28

    -
    -
    - American Apparel Fine Jersey Short Sleeve T-Shirt -
    -
    diff --git a/library/font_awesome/src/_includes/products/cta-suggestions.html b/library/font_awesome/src/_includes/products/cta-suggestions.html deleted file mode 100644 index 09f703c0d..000000000 --- a/library/font_awesome/src/_includes/products/cta-suggestions.html +++ /dev/null @@ -1,20 +0,0 @@ -
    -

    Have Ideas or Requests?

    - -
    -

    - Got a great idea for a Font Awesome goodie or shirt? Don't see your favorite icon in a wear-able or share-able format? -

    - -

    - We're all ears! Spend a few minutes and let us know what you'd want. If we end up using your idea, we'll send you a free copy. -

    -
    - - Make a Store Suggestion! - - -

    - Please note: While we appreciate all suggestions, not every idea might be right for Font Awesome nor could we physically make every idea. -

    -
    diff --git a/library/font_awesome/src/_includes/products/fa-ther-tee.html b/library/font_awesome/src/_includes/products/fa-ther-tee.html deleted file mode 100644 index 7699d6bbf..000000000 --- a/library/font_awesome/src/_includes/products/fa-ther-tee.html +++ /dev/null @@ -1,29 +0,0 @@ - -
    - Available in the following sizes: - -
    -
    -
    - -
    -
    - -
    -
    - -
      -
    • Kelly Green
    • -
    • Navy
    • -
    - -
    - -
    -

    Fa-ther Tee

    -

    $28

    -
    -
    - American Apparel Fine Jersey Short Sleeve T-Shirt -
    -
    diff --git a/library/font_awesome/src/_includes/products/green-logo-tee.html b/library/font_awesome/src/_includes/products/green-logo-tee.html deleted file mode 100644 index 9226a5497..000000000 --- a/library/font_awesome/src/_includes/products/green-logo-tee.html +++ /dev/null @@ -1,31 +0,0 @@ - -
    - Available in the following sizes: - - - -
    -
    -
    - -
    -
    - -
    -
    - -
      -
    • Navy
    • -
    • Kelly Green
    • -
    - -
    - -
    -

    Green Logo Tee

    -

    $28

    -
    -
    - American Apparel Fine Jersey Short Sleeve T-Shirt -
    -
    diff --git a/library/font_awesome/src/_includes/products/old-skool-tee.html b/library/font_awesome/src/_includes/products/old-skool-tee.html deleted file mode 100644 index 4fff5b9f6..000000000 --- a/library/font_awesome/src/_includes/products/old-skool-tee.html +++ /dev/null @@ -1,31 +0,0 @@ - -
    - Available in the following sizes: - - - -
    -
    -
    - -
    -
    - -
    -
    - -
      -
    • Kelly Green
    • -
    • Navy
    • -
    - -
    - -
    -

    Old Skool Tee

    -

    $28

    -
    -
    - American Apparel Fine Jersey Short Sleeve T-Shirt -
    -
    diff --git a/library/font_awesome/src/_includes/products/rock-paper-scissors-lizard-spock-tee.html b/library/font_awesome/src/_includes/products/rock-paper-scissors-lizard-spock-tee.html deleted file mode 100644 index 294123171..000000000 --- a/library/font_awesome/src/_includes/products/rock-paper-scissors-lizard-spock-tee.html +++ /dev/null @@ -1,27 +0,0 @@ - -
    - Available in the following sizes: - - - -
    -
    -
    - -
    -
    - -
      -
    • Royal Blue
    • -
    - -
    - -
    -

    Rock Paper Scissors Lizard Spock Tee

    -

    $28

    -
    -
    - American Apparel Fine Jersey Short Sleeve T-Shirt -
    -
    diff --git a/library/font_awesome/src/_includes/products/space-shuttle-tee.html b/library/font_awesome/src/_includes/products/space-shuttle-tee.html deleted file mode 100644 index ddac55331..000000000 --- a/library/font_awesome/src/_includes/products/space-shuttle-tee.html +++ /dev/null @@ -1,31 +0,0 @@ - -
    - Available in the following sizes: - - - -
    -
    -
    - -
    -
    - -
    -
    - -
      -
    • Black
    • -
    • Navy
    • -
    - -
    - -
    -

    Space Shuttle Tee

    -

    $28

    -
    -
    - American Apparel Fine Jersey Short Sleeve T-Shirt -
    -
    diff --git a/library/font_awesome/src/_includes/products/white-logo-tee.html b/library/font_awesome/src/_includes/products/white-logo-tee.html deleted file mode 100644 index bd4ac26c3..000000000 --- a/library/font_awesome/src/_includes/products/white-logo-tee.html +++ /dev/null @@ -1,35 +0,0 @@ - -
    - Available in the following sizes: - - - -
    -
    -
    - -
    -
    - -
    -
    - -
    -
    - -
      -
    • Kelly Green
    • -
    • Navy
    • -
    • Silver
    • -
    - -
    - -
    -

    White Logo Tee

    -

    $28

    -
    -
    - American Apparel Fine Jersey Short Sleeve T-Shirt -
    -
    diff --git a/library/font_awesome/src/_includes/stripe-ad.html b/library/font_awesome/src/_includes/stripe-ad.html deleted file mode 100644 index 8aa93e971..000000000 --- a/library/font_awesome/src/_includes/stripe-ad.html +++ /dev/null @@ -1,6 +0,0 @@ -
    -
    - {% include ads/fusion.html %} - {{ stripe_ad_content }} -
    -
    diff --git a/library/font_awesome/src/_includes/stripe-social.html b/library/font_awesome/src/_includes/stripe-social.html deleted file mode 100644 index 9529bbd96..000000000 --- a/library/font_awesome/src/_includes/stripe-social.html +++ /dev/null @@ -1,35 +0,0 @@ -
    -
    -
    -
    -
    -
    - -
    -
    -
    - -
    -
    -
    - - -
    -
    diff --git a/library/font_awesome/src/_includes/tell-me-thanks.html b/library/font_awesome/src/_includes/tell-me-thanks.html deleted file mode 100644 index 19e4d502f..000000000 --- a/library/font_awesome/src/_includes/tell-me-thanks.html +++ /dev/null @@ -1,22 +0,0 @@ -
    - -

    - Hopefully you think Font Awesome is awesome. I've put hundreds of hours into the project to give back to the - open source community. If you'd like, here are a couple of ways you can tell me thanks for all my hard work. -

    -
    -
    -

    Tip me on Gittip

    -

    - Gittip is a great way to let developers know you appreciate their work. -

    -
    -
    -

    My Amazon Wish List

    -

    - Or pick something straight - from my wish list. Gift cards are great. -

    -
    -
    -
    diff --git a/library/font_awesome/src/_includes/tests/rotated-flipped-inside-anchor.html b/library/font_awesome/src/_includes/tests/rotated-flipped-inside-anchor.html deleted file mode 100644 index 2c48c0ef4..000000000 --- a/library/font_awesome/src/_includes/tests/rotated-flipped-inside-anchor.html +++ /dev/null @@ -1,6 +0,0 @@ -  normal
    -  fa-rotate-90
    -  fa-rotate-180
    -  fa-rotate-270
    -  fa-flip-horizontal
    -  fa-flip-vertical diff --git a/library/font_awesome/src/_includes/tests/rotated-flipped-inside-btn.html b/library/font_awesome/src/_includes/tests/rotated-flipped-inside-btn.html deleted file mode 100644 index 9399fc311..000000000 --- a/library/font_awesome/src/_includes/tests/rotated-flipped-inside-btn.html +++ /dev/null @@ -1,6 +0,0 @@ -  normal
    -  fa-rotate-90
    -  fa-rotate-180
    -  fa-rotate-270
    -  fa-flip-horizontal
    -  fa-flip-vertical diff --git a/library/font_awesome/src/_includes/tests/rotated-flipped.html b/library/font_awesome/src/_includes/tests/rotated-flipped.html deleted file mode 100644 index 7f12a77ef..000000000 --- a/library/font_awesome/src/_includes/tests/rotated-flipped.html +++ /dev/null @@ -1,6 +0,0 @@ -  normal
    -  fa-rotate-90
    -  fa-rotate-180
    -  fa-rotate-270
    -  fa-flip-horizontal
    -  fa-flip-vertical diff --git a/library/font_awesome/src/_includes/tests/stacked-inside-anchor.html b/library/font_awesome/src/_includes/tests/stacked-inside-anchor.html deleted file mode 100644 index 04a6b31d2..000000000 --- a/library/font_awesome/src/_includes/tests/stacked-inside-anchor.html +++ /dev/null @@ -1,69 +0,0 @@ -

    - - - Twitter Icon - - - - Facebook Icon - - - - GitHub Icon - -

    -

    - - - Twitter Icon - - - - Facebook Icon - - - - GitHub Icon - -

    -

    - - - Twitter Icon - - - - Facebook Icon - - - - GitHub Icon - -

    diff --git a/library/font_awesome/src/_includes/tests/stacked-with-text.html b/library/font_awesome/src/_includes/tests/stacked-with-text.html deleted file mode 100644 index 28a7500c8..000000000 --- a/library/font_awesome/src/_includes/tests/stacked-with-text.html +++ /dev/null @@ -1,4 +0,0 @@ - diff --git a/library/font_awesome/src/_includes/tests/stacked.html b/library/font_awesome/src/_includes/tests/stacked.html deleted file mode 100644 index 4d0040759..000000000 --- a/library/font_awesome/src/_includes/tests/stacked.html +++ /dev/null @@ -1,58 +0,0 @@ - -
    Center -
    -
    -

    - - Twitter Icon - - Facebook Icon - - GitHub Icon -

    -

    - - Twitter Icon - - Facebook Icon - - GitHub Icon -

    -

    - - Twitter Icon - - Facebook Icon - - GitHub Icon -

    diff --git a/library/font_awesome/src/_includes/thanks-to.html b/library/font_awesome/src/_includes/thanks-to.html deleted file mode 100644 index 8aebf591c..000000000 --- a/library/font_awesome/src/_includes/thanks-to.html +++ /dev/null @@ -1,26 +0,0 @@ -
    - -
    -
    -

    - Thanks to @robmadole and - @supercodepoet for icon design - review, advice, some Jekyll help, and being all around badass coders. -

    -
    -
    -

    - HUGE thanks to @gtagliala for doing such a fantastic job managing - pull requests and issues on the Font Awesome - GitHub project. -

    -
    -
    -

    - Thanks to MaxCDN for providing the excellent - BootstrapCDN, the fastest and easiest way to - get started with Font Awesome. -

    -
    -
    -
    diff --git a/library/font_awesome/src/_includes/why.html b/library/font_awesome/src/_includes/why.html deleted file mode 100644 index 1574d2c6c..000000000 --- a/library/font_awesome/src/_includes/why.html +++ /dev/null @@ -1,42 +0,0 @@ -
    -
    -
    -

    One Font, {{ icons | size }} Icons

    - In a single collection, Font Awesome is a pictographic language of web-related actions. -
    -
    -

    No JavaScript Required

    - Fewer compatibility concerns because Font Awesome doesn't require JavaScript. -
    -
    -

    Infinite Scalability

    - Scalable vector graphics means every icon looks awesome at any size. -
    -
    -

    Free, as in Speech

    - Font Awesome is completely free for commercial use. Check out the license. -
    -
    -

    CSS Control

    - Easily style icon color, size, shadow, and anything that's possible with CSS. -
    -
    -

    Perfect on Retina Displays

    - Font Awesome icons are vectors, which mean they're gorgeous on high-resolution displays. -
    -
    -

    Plays Well with Others

    - Originally designed for Bootstrap, Font Awesome works great with all frameworks. -
    -
    -

    Desktop Friendly

    - To use on the desktop or for a complete set of vectors, - check out the cheatsheet. -
    -
    -

    Accessibility-minded

    - Font Awesome loves screen readers and -helps make your icons accessible on the web. -
    -
    -
    diff --git a/library/font_awesome/src/_layouts/base.html b/library/font_awesome/src/_layouts/base.html deleted file mode 100644 index 2e0cf9ded..000000000 --- a/library/font_awesome/src/_layouts/base.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - {% if page.title %}{{ page.title }}{% endif %} - - - - - - - - - - - - - -
    - {% include navbar.html %} - - {{ content }} -
    - {% include footer.html %} - {% include modals/kickstarter.html %} - - - - - - - - - - - - - - - - - - - - - diff --git a/library/font_awesome/src/_layouts/icon.html b/library/font_awesome/src/_layouts/icon.html deleted file mode 100644 index 66edaf2a7..000000000 --- a/library/font_awesome/src/_layouts/icon.html +++ /dev/null @@ -1,79 +0,0 @@ ---- -layout: base -title_suffix: Font Awesome Icons -relative_path: ../../ ---- -
    -
    -
    - - Example of {{ page.icon.id }} at 6x   - - - Example of {{ page.icon.id }} at 5x -    - - - Example of {{ page.icon.id }} at 4x -    - - - Example of {{ page.icon.id }} at 3x -    - - Example of {{ page.icon.id }} at 2x -   - - - Example of {{ page.icon.id }} -
    -

    - fa-{{ page.icon.id }} - - · - Unicode: {{ page.icon.unicode }} · - Created: v{{ page.icon.created }} · - Categories: - {% for category in page.icon.categories %} - {{ category }}{% unless forloop.last %},{% endunless %} - {% endfor %} - {% assign icon_alias_count = page.icon.aliases | size %} - {% if icon_alias_count > 0 %} - · Aliases: - {% for alias in page.icon.aliases %} - fa-{{ alias }}{% unless forloop.last %},{% endunless %} - {% endfor %} - {% endif %} - {% if page.icon.url %}· {{ page.icon.url }}{% endif %} - -

    -
    -
    - -
    -
    -
    -
    -

    After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag:

    -
    -
    - Example of {{ page.icon.id }} fa-{{ page.icon.id }} -
    -
    -{% highlight html %} - -{% endhighlight %} -

    - Note: to improve web accessibility, we recommend using aria-hidden="true" to hide icons used purely for decoration. -

    - -
    - Looking for more? Check out the examples. -
    -
    -
    -
    {% include ads/fusion.html %}
    -
    -
    -
    -
    diff --git a/library/font_awesome/src/_layouts/survey.html b/library/font_awesome/src/_layouts/survey.html deleted file mode 100644 index 2af18f38e..000000000 --- a/library/font_awesome/src/_layouts/survey.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - {% if page.title %}{{ page.title }}{% endif %} - - - - - - - {{content}} - - diff --git a/library/font_awesome/src/_plugins/flatten_icon_filters.rb b/library/font_awesome/src/_plugins/flatten_icon_filters.rb deleted file mode 100644 index 1e3daff80..000000000 --- a/library/font_awesome/src/_plugins/flatten_icon_filters.rb +++ /dev/null @@ -1,38 +0,0 @@ -## -# Flattens the icons object to a one-dimensional array of possible search terms. - -require 'set' - -module Jekyll - module FlattenArray - def flattenIconFilters(icons) - flattened = Set.new - icons.each do |icon| - toAdd = [] - - toAdd.push(icon["class"].downcase) # Add class as a filter value - - # Add any existing aliases as a filter value - if not icon["aliases"].nil? - icon["aliases"].each do |iconAlias| - toAdd.push(iconAlias.downcase) - end - end - - # Add any existing filters as a filter value - if not icon["filter"].nil? - icon["filter"].each do |iconFilter| - toAdd.push(iconFilter.downcase) - end - end - flattened.merge(toAdd) - - print toAdd if toAdd.include? true - print toAdd if toAdd.include? false - end - return flattened.to_a # .to_a because we can't jsonify a - end - end -end - -Liquid::Template.register_filter(Jekyll::FlattenArray) diff --git a/library/font_awesome/src/_plugins/icon_page_generator.rb b/library/font_awesome/src/_plugins/icon_page_generator.rb deleted file mode 100644 index 32b7cd428..000000000 --- a/library/font_awesome/src/_plugins/icon_page_generator.rb +++ /dev/null @@ -1,45 +0,0 @@ -## -# Create individual pages for each icon in the FontAwesome set - -require 'yaml' - -module Jekyll - - class IconPage < Page - - ## - # Take a single icon and render a page for it. - - def initialize(site, base, dir, icon) - @site = site - @base = base - @dir = dir - @name = "#{icon.id}.html" - @icon = icon - - self.process(@name) - - self.read_yaml(File.join(base, site.config['layouts']), site.config['icon_layout']) - - self.data['icon'] = icon - self.data['title'] = "fa-#{icon.id}: " + self.data['title_suffix'] - end - - end - - class IconGenerator < Generator - - ## - # Iterate over every described icon in a YAML file and create a page for it - - safe true - - def generate(site) - site.icons.each do |icon| - site.pages << IconPage.new(site, site.source, site.config['icon_destination'], icon) - end - end - - end - -end diff --git a/library/font_awesome/src/_plugins/site.rb b/library/font_awesome/src/_plugins/site.rb deleted file mode 100644 index a6a74b7bb..000000000 --- a/library/font_awesome/src/_plugins/site.rb +++ /dev/null @@ -1,142 +0,0 @@ -## -# Provide an icons attribute on the site object - -require 'yaml' -require 'forwardable' - -module Jekyll - - class Icon - - attr_reader :name, :id, :unicode, :created, :categories - - def initialize(icon_object) - @icon_object = icon_object - - # Class name used in CSS and HTML - @icon_object['class'] = icon_object['id'] - # Normalize the aliases - @icon_object['aliases'] ||= [] - - @name = icon_object['name'] - @id = icon_object['id'] - @class = icon_object['class'] - @aliases = icon_object['aliases'] - @unicode = icon_object['unicode'] - @created = icon_object['created'] - @categories = icon_object['categories'] - end - - def to_liquid - return @icon_object - end - - end - - class IconList - ## - # A list of icons - # - include Enumerable - extend Forwardable - - def_delegators :@icon_array, :each, :<< - - def initialize(icon_array) - @original_icon_array = icon_array - @icon_array = [] - - icon_array.each { |icon_object| - @icon_array << Icon.new(icon_object) - } - end - - def [](k) - @icon_array[k] - end - - def to_liquid - @original_icon_array - end - - end - - module IconFilters - def expand_aliases(icons) - expanded = [] - - icons.each { |icon| - # Remove the aliases since we are expanding them - expanded << icon.reject{ |k| k == 'aliases'} - - icon['aliases'].each { |alias_id| - alias_icon = expanded[-1].dup - alias_icon['class'] = alias_id - alias_icon['alias_of'] = icon - - expanded << alias_icon - } - } - - return expanded - end - - def category(icons, cat) - icons.select { |icon| icon['categories'].include?(cat) } - end - - def version(icons, version) - icons.select { |icon| icon['created'] == version } - end - - def sort_by(icons, sort_key) - icons.sort_by! { |icon| icon[sort_key] } - end - end - - Liquid::Template.register_filter(IconFilters) - - class Site - - attr_reader :icons - - def process - self.reset_icons - self.reset - self.read - self.generate - self.render - self.cleanup - self.write - - self.build - end - - ## - # Reads the YAML file that stores all data about icons - def reset_icons - @icons = IconList.new(YAML.load_file(self.config['icon_meta'])['icons']) - end - - ## - # After generation, runs a build of Font-Awesome - def build - system("make build", :chdir => self.config['destination'], :out => :err) - end - - def site_payload - { - "site" => self.config.merge({ - "time" => self.time, - "posts" => self.posts.sort { |a, b| b <=> a }, - "pages" => self.pages, - "html_pages" => self.pages.reject { |page| !page.html? }, - "categories" => post_attr_hash('categories'), - "tags" => post_attr_hash('tags')}), - "icons" => @icons, - } - end - - end - -end diff --git a/library/font_awesome/src/accessibility.html b/library/font_awesome/src/accessibility.html deleted file mode 100644 index f201921ab..000000000 --- a/library/font_awesome/src/accessibility.html +++ /dev/null @@ -1,39 +0,0 @@ ---- -layout: base -title: Font Awesome & Accessibility -navbar_active: accessibility -view_class: v-accessibility -relative_path: ../ ---- -{% capture jumbotron_h1 %}  Accessibility{% endcapture %} -{% capture jumbotron_p %}Make your icons awesome for all of your users{% endcapture %} - -{% include jumbotron.html %} - -
    -
    -
    -
    -

    - Icons are symbols that can convey a ton of information and really help people comprehend directions, signs, and interfaces. It's important that we create and use them so that they can reach the largest amount of people possible. -

    -
    -
    - {% include accessibility/background.html %} -
    -
    -
    - - - - {% include accessibility/accessibility-facdn.html %} - -
    - or -
    - - {% include accessibility/accessibility-manual.html %} - {% include accessibility/other.html %} -
    diff --git a/library/font_awesome/src/assets/css/prettify.css b/library/font_awesome/src/assets/css/prettify.css deleted file mode 100644 index aedd8d1a9..000000000 --- a/library/font_awesome/src/assets/css/prettify.css +++ /dev/null @@ -1,30 +0,0 @@ -.com { color: #93a1a1; } -.lit { color: #195f91; } -.pun, .opn, .clo { color: #93a1a1; } -.fun { color: #dc322f; } -.str, .atv { color: #D14; } -.kwd, .linenums .tag { color: #1e347b; } -.typ, .atn, .dec, .var { color: teal; } -.pln { color: #48484c; } - -.prettyprint { - padding: 8px; - background-color: #f7f7f9; - border: 1px solid #e1e1e8; -} -.prettyprint.linenums { - -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; - -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; - box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; -} - -/* Specify class=linenums on a pre to get line numbering */ -ol.linenums { - margin: 0 0 0 33px; /* IE indents via margin-left */ -} -ol.linenums li { - padding-left: 12px; - color: #bebec5; - line-height: 18px; - text-shadow: 0 1px 0 #fff; -} \ No newline at end of file diff --git a/library/font_awesome/src/assets/css/pygments.css b/library/font_awesome/src/assets/css/pygments.css deleted file mode 100644 index 5af20ee5e..000000000 --- a/library/font_awesome/src/assets/css/pygments.css +++ /dev/null @@ -1,71 +0,0 @@ -.hll { background-color: #ffffcc } -/*{ background: #f0f3f3; }*/ -.c { color: #999; } /* Comment */ -.err { color: #AA0000; background-color: #FFAAAA } /* Error */ -.k { color: #006699; } /* Keyword */ -.o { color: #555555 } /* Operator */ -.cm { color: #0099FF; font-style: italic } /* Comment.Multiline */ -.cp { color: #009999 } /* Comment.Preproc */ -.c1 { color: #999; } /* Comment.Single */ -.cs { color: #999; } /* Comment.Special */ -.gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */ -.ge { font-style: italic } /* Generic.Emph */ -.gr { color: #FF0000 } /* Generic.Error */ -.gh { color: #003300; } /* Generic.Heading */ -.gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */ -.go { color: #AAAAAA } /* Generic.Output */ -.gp { color: #000099; } /* Generic.Prompt */ -.gs { } /* Generic.Strong */ -.gu { color: #003300; } /* Generic.Subheading */ -.gt { color: #99CC66 } /* Generic.Traceback */ -.kc { color: #006699; } /* Keyword.Constant */ -.kd { color: #006699; } /* Keyword.Declaration */ -.kn { color: #006699; } /* Keyword.Namespace */ -.kp { color: #006699 } /* Keyword.Pseudo */ -.kr { color: #006699; } /* Keyword.Reserved */ -.kt { color: #007788; } /* Keyword.Type */ -.m { color: #FF6600 } /* Literal.Number */ -.s { color: #d44950 } /* Literal.String */ -.na { color: #4f9fcf } /* Name.Attribute */ -.nb { color: #336666 } /* Name.Builtin */ -.nc { color: #00AA88; } /* Name.Class */ -.no { color: #336600 } /* Name.Constant */ -.nd { color: #9999FF } /* Name.Decorator */ -.ni { color: #999999; } /* Name.Entity */ -.ne { color: #CC0000; } /* Name.Exception */ -.nf { color: #CC00FF } /* Name.Function */ -.nl { color: #9999FF } /* Name.Label */ -.nn { color: #00CCFF; } /* Name.Namespace */ -.nt { color: #2f6f9f; } /* Name.Tag */ -.nv { color: #003333 } /* Name.Variable */ -.ow { color: #000000; } /* Operator.Word */ -.w { color: #bbbbbb } /* Text.Whitespace */ -.mf { color: #FF6600 } /* Literal.Number.Float */ -.mh { color: #FF6600 } /* Literal.Number.Hex */ -.mi { color: #FF6600 } /* Literal.Number.Integer */ -.mo { color: #FF6600 } /* Literal.Number.Oct */ -.sb { color: #CC3300 } /* Literal.String.Backtick */ -.sc { color: #CC3300 } /* Literal.String.Char */ -.sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */ -.s2 { color: #CC3300 } /* Literal.String.Double */ -.se { color: #CC3300; } /* Literal.String.Escape */ -.sh { color: #CC3300 } /* Literal.String.Heredoc */ -.si { color: #AA0000 } /* Literal.String.Interpol */ -.sx { color: #CC3300 } /* Literal.String.Other */ -.sr { color: #33AAAA } /* Literal.String.Regex */ -.s1 { color: #CC3300 } /* Literal.String.Single */ -.ss { color: #FFCC33 } /* Literal.String.Symbol */ -.bp { color: #336666 } /* Name.Builtin.Pseudo */ -.vc { color: #003333 } /* Name.Variable.Class */ -.vg { color: #003333 } /* Name.Variable.Global */ -.vi { color: #003333 } /* Name.Variable.Instance */ -.il { color: #FF6600 } /* Literal.Number.Integer.Long */ - -.css .o, -.css .o + .nt, -.css .nt + .nt { color: #999; } - -pre { - background-color: #fafafa; - padding: 8px 15px; -} diff --git a/library/font_awesome/src/assets/font-awesome/HELP-US-OUT.txt b/library/font_awesome/src/assets/font-awesome/HELP-US-OUT.txt deleted file mode 100644 index 83d083dd7..000000000 --- a/library/font_awesome/src/assets/font-awesome/HELP-US-OUT.txt +++ /dev/null @@ -1,7 +0,0 @@ -I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, -Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, -comprehensive icon sets or copy and paste your own. - -Please. Check it out. - --Dave Gandy diff --git a/library/font_awesome/src/assets/font-awesome/fonts/FontAwesome.otf b/library/font_awesome/src/assets/font-awesome/fonts/FontAwesome.otf deleted file mode 100644 index 401ec0f36..000000000 Binary files a/library/font_awesome/src/assets/font-awesome/fonts/FontAwesome.otf and /dev/null differ diff --git a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.eot b/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.eot deleted file mode 100644 index e9f60ca95..000000000 Binary files a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.eot and /dev/null differ diff --git a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.svg b/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.svg deleted file mode 100644 index 855c845e5..000000000 --- a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.svg +++ /dev/null @@ -1,2671 +0,0 @@ - - - - -Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 - By ,,, -Copyright Dave Gandy 2016. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.woff b/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.woff deleted file mode 100644 index 400014a4b..000000000 Binary files a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.woff and /dev/null differ diff --git a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.woff2 b/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.woff2 deleted file mode 100644 index 4d13fc604..000000000 Binary files a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.woff2 and /dev/null differ diff --git a/library/font_awesome/src/assets/font-awesome/less/animated.less b/library/font_awesome/src/assets/font-awesome/less/animated.less deleted file mode 100644 index e489ea318..000000000 --- a/library/font_awesome/src/assets/font-awesome/less/animated.less +++ /dev/null @@ -1,37 +0,0 @@ ---- ---- - -// Animated Icons -// -------------------------- - -.@{fa-css-prefix}-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} - -.@{fa-css-prefix}-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} diff --git a/library/font_awesome/src/assets/font-awesome/less/bordered-pulled.less b/library/font_awesome/src/assets/font-awesome/less/bordered-pulled.less deleted file mode 100644 index cd14a68a1..000000000 --- a/library/font_awesome/src/assets/font-awesome/less/bordered-pulled.less +++ /dev/null @@ -1,28 +0,0 @@ ---- ---- - -// Bordered & Pulled -// ------------------------- - -.@{fa-css-prefix}-border { - padding: .2em .25em .15em; - border: solid .08em @fa-border-color; - border-radius: .1em; -} - -.@{fa-css-prefix}-pull-left { float: left; } -.@{fa-css-prefix}-pull-right { float: right; } - -.@{fa-css-prefix} { - &.@{fa-css-prefix}-pull-left { margin-right: .3em; } - &.@{fa-css-prefix}-pull-right { margin-left: .3em; } -} - -/* Deprecated as of 4.4.0 */ -.pull-right { float: right; } -.pull-left { float: left; } - -.@{fa-css-prefix} { - &.pull-left { margin-right: .3em; } - &.pull-right { margin-left: .3em; } -} diff --git a/library/font_awesome/src/assets/font-awesome/less/core.less b/library/font_awesome/src/assets/font-awesome/less/core.less deleted file mode 100644 index d299d0d03..000000000 --- a/library/font_awesome/src/assets/font-awesome/less/core.less +++ /dev/null @@ -1,9 +0,0 @@ ---- ---- - -// Base Class Definition -// ------------------------- - -.@{fa-css-prefix} { -{% include code/core.less %} -} diff --git a/library/font_awesome/src/assets/font-awesome/less/fixed-width.less b/library/font_awesome/src/assets/font-awesome/less/fixed-width.less deleted file mode 100644 index f3b657b52..000000000 --- a/library/font_awesome/src/assets/font-awesome/less/fixed-width.less +++ /dev/null @@ -1,9 +0,0 @@ ---- ---- - -// Fixed Width Icons -// ------------------------- -.@{fa-css-prefix}-fw { - width: (18em / 14); - text-align: center; -} diff --git a/library/font_awesome/src/assets/font-awesome/less/font-awesome.less b/library/font_awesome/src/assets/font-awesome/less/font-awesome.less deleted file mode 100644 index 3fb656e35..000000000 --- a/library/font_awesome/src/assets/font-awesome/less/font-awesome.less +++ /dev/null @@ -1,17 +0,0 @@ ---- ---- -{% include code/license.css %} - -@import "variables.less"; -@import "mixins.less"; -@import "path.less"; -@import "core.less"; -@import "larger.less"; -@import "fixed-width.less"; -@import "list.less"; -@import "bordered-pulled.less"; -@import "animated.less"; -@import "rotated-flipped.less"; -@import "stacked.less"; -@import "icons.less"; -@import "screen-reader.less"; diff --git a/library/font_awesome/src/assets/font-awesome/less/icons.less b/library/font_awesome/src/assets/font-awesome/less/icons.less deleted file mode 100644 index 1d29b69a6..000000000 --- a/library/font_awesome/src/assets/font-awesome/less/icons.less +++ /dev/null @@ -1,7 +0,0 @@ ---- ---- -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ -{% for icon in icons %}{% for alias in icon.aliases %} -.@{fa-css-prefix}-{{ alias }}:before,{% endfor %} -.@{fa-css-prefix}-{{ icon.id }}:before { content: @fa-var-{{ icon.id }}; }{% endfor %} diff --git a/library/font_awesome/src/assets/font-awesome/less/larger.less b/library/font_awesome/src/assets/font-awesome/less/larger.less deleted file mode 100644 index 472643eb0..000000000 --- a/library/font_awesome/src/assets/font-awesome/less/larger.less +++ /dev/null @@ -1,16 +0,0 @@ ---- ---- - -// Icon Sizes -// ------------------------- - -/* makes the font 33% larger relative to the icon container */ -.@{fa-css-prefix}-lg { - font-size: (4em / 3); - line-height: (3em / 4); - vertical-align: -15%; -} -.@{fa-css-prefix}-2x { font-size: 2em; } -.@{fa-css-prefix}-3x { font-size: 3em; } -.@{fa-css-prefix}-4x { font-size: 4em; } -.@{fa-css-prefix}-5x { font-size: 5em; } diff --git a/library/font_awesome/src/assets/font-awesome/less/list.less b/library/font_awesome/src/assets/font-awesome/less/list.less deleted file mode 100644 index e32bc0d2e..000000000 --- a/library/font_awesome/src/assets/font-awesome/less/list.less +++ /dev/null @@ -1,22 +0,0 @@ ---- ---- - -// List Icons -// ------------------------- - -.@{fa-css-prefix}-ul { - padding-left: 0; - margin-left: @fa-li-width; - list-style-type: none; - > li { position: relative; } -} -.@{fa-css-prefix}-li { - position: absolute; - left: -@fa-li-width; - width: @fa-li-width; - top: (2em / 14); - text-align: center; - &.@{fa-css-prefix}-lg { - left: (-@fa-li-width + (4em / 14)); - } -} diff --git a/library/font_awesome/src/assets/font-awesome/less/mixins.less b/library/font_awesome/src/assets/font-awesome/less/mixins.less deleted file mode 100644 index 588973976..000000000 --- a/library/font_awesome/src/assets/font-awesome/less/mixins.less +++ /dev/null @@ -1,56 +0,0 @@ ---- ---- -// Mixins -// -------------------------- - -.fa-icon() { -{% include code/core.less %} -} - -.fa-icon-rotate(@degrees, @rotation) { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; - -webkit-transform: rotate(@degrees); - -ms-transform: rotate(@degrees); - transform: rotate(@degrees); -} - -.fa-icon-flip(@horiz, @vert, @rotation) { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; - -webkit-transform: scale(@horiz, @vert); - -ms-transform: scale(@horiz, @vert); - transform: scale(@horiz, @vert); -} - - -// Only display content to screen readers. A la Bootstrap 4. -// -// See: http://a11yproject.com/posts/how-to-hide-content/ - -.sr-only() { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0,0,0,0); - border: 0; -} - -// Use in conjunction with .sr-only to only display content when it's focused. -// -// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 -// -// Credit: HTML5 Boilerplate - -.sr-only-focusable() { - &:active, - &:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; - } -} diff --git a/library/font_awesome/src/assets/font-awesome/less/path.less b/library/font_awesome/src/assets/font-awesome/less/path.less deleted file mode 100644 index 835be41f8..000000000 --- a/library/font_awesome/src/assets/font-awesome/less/path.less +++ /dev/null @@ -1,15 +0,0 @@ -/* FONT PATH - * -------------------------- */ - -@font-face { - font-family: 'FontAwesome'; - src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); - src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), - url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), - url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), - url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), - url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); - // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts - font-weight: normal; - font-style: normal; -} diff --git a/library/font_awesome/src/assets/font-awesome/less/rotated-flipped.less b/library/font_awesome/src/assets/font-awesome/less/rotated-flipped.less deleted file mode 100644 index bf7a0b423..000000000 --- a/library/font_awesome/src/assets/font-awesome/less/rotated-flipped.less +++ /dev/null @@ -1,23 +0,0 @@ ---- ---- - -// Rotated & Flipped Icons -// ------------------------- - -.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } -.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } -.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } - -.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } -.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } - -// Hook for IE8-9 -// ------------------------- - -:root .@{fa-css-prefix}-rotate-90, -:root .@{fa-css-prefix}-rotate-180, -:root .@{fa-css-prefix}-rotate-270, -:root .@{fa-css-prefix}-flip-horizontal, -:root .@{fa-css-prefix}-flip-vertical { - filter: none; -} diff --git a/library/font_awesome/src/assets/font-awesome/less/screen-reader.less b/library/font_awesome/src/assets/font-awesome/less/screen-reader.less deleted file mode 100644 index 11c188196..000000000 --- a/library/font_awesome/src/assets/font-awesome/less/screen-reader.less +++ /dev/null @@ -1,5 +0,0 @@ -// Screen Readers -// ------------------------- - -.sr-only { .sr-only(); } -.sr-only-focusable { .sr-only-focusable(); } diff --git a/library/font_awesome/src/assets/font-awesome/less/stacked.less b/library/font_awesome/src/assets/font-awesome/less/stacked.less deleted file mode 100644 index 2a1e4189b..000000000 --- a/library/font_awesome/src/assets/font-awesome/less/stacked.less +++ /dev/null @@ -1,23 +0,0 @@ ---- ---- - -// Stacked Icons -// ------------------------- - -.@{fa-css-prefix}-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle; -} -.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center; -} -.@{fa-css-prefix}-stack-1x { line-height: inherit; } -.@{fa-css-prefix}-stack-2x { font-size: 2em; } -.@{fa-css-prefix}-inverse { color: @fa-inverse; } diff --git a/library/font_awesome/src/assets/font-awesome/less/variables.less b/library/font_awesome/src/assets/font-awesome/less/variables.less deleted file mode 100644 index 83207e414..000000000 --- a/library/font_awesome/src/assets/font-awesome/less/variables.less +++ /dev/null @@ -1,17 +0,0 @@ ---- ---- -// Variables -// -------------------------- - -@fa-font-path: "../fonts"; -@fa-font-size-base: 14px; -@fa-line-height-base: 1; -//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/{{site.fontawesome.version}}/fonts"; // for referencing Bootstrap CDN font files directly -@fa-css-prefix: {{ site.fontawesome.css_prefix }}; -@fa-version: "{{ site.fontawesome.version }}"; -@fa-border-color: #eee; -@fa-inverse: #fff; -@fa-li-width: (30em / 14); - -{% assign sorted_icons = icons | expand_aliases | sort_by:'class' %}{% for icon in sorted_icons %}@fa-var-{{ icon.class }}: "\{{ icon.unicode }}"; -{% endfor %} diff --git a/library/font_awesome/src/assets/font-awesome/scss/_animated.scss b/library/font_awesome/src/assets/font-awesome/scss/_animated.scss deleted file mode 100644 index fed5a987f..000000000 --- a/library/font_awesome/src/assets/font-awesome/scss/_animated.scss +++ /dev/null @@ -1,37 +0,0 @@ ---- ---- - -// Spinning Icons -// -------------------------- - -.#{$fa-css-prefix}-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} - -.#{$fa-css-prefix}-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} diff --git a/library/font_awesome/src/assets/font-awesome/scss/_bordered-pulled.scss b/library/font_awesome/src/assets/font-awesome/scss/_bordered-pulled.scss deleted file mode 100644 index 40bafcba9..000000000 --- a/library/font_awesome/src/assets/font-awesome/scss/_bordered-pulled.scss +++ /dev/null @@ -1,28 +0,0 @@ ---- ---- - -// Bordered & Pulled -// ------------------------- - -.#{$fa-css-prefix}-border { - padding: .2em .25em .15em; - border: solid .08em $fa-border-color; - border-radius: .1em; -} - -.#{$fa-css-prefix}-pull-left { float: left; } -.#{$fa-css-prefix}-pull-right { float: right; } - -.#{$fa-css-prefix} { - &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } - &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } -} - -/* Deprecated as of 4.4.0 */ -.pull-right { float: right; } -.pull-left { float: left; } - -.#{$fa-css-prefix} { - &.pull-left { margin-right: .3em; } - &.pull-right { margin-left: .3em; } -} diff --git a/library/font_awesome/src/assets/font-awesome/scss/_core.scss b/library/font_awesome/src/assets/font-awesome/scss/_core.scss deleted file mode 100644 index 45e548bac..000000000 --- a/library/font_awesome/src/assets/font-awesome/scss/_core.scss +++ /dev/null @@ -1,9 +0,0 @@ ---- ---- - -// Base Class Definition -// ------------------------- - -.#{$fa-css-prefix} { -{% include code/core.scss %} -} diff --git a/library/font_awesome/src/assets/font-awesome/scss/_fixed-width.scss b/library/font_awesome/src/assets/font-awesome/scss/_fixed-width.scss deleted file mode 100644 index cfb14543a..000000000 --- a/library/font_awesome/src/assets/font-awesome/scss/_fixed-width.scss +++ /dev/null @@ -1,9 +0,0 @@ ---- ---- - -// Fixed Width Icons -// ------------------------- -.#{$fa-css-prefix}-fw { - width: (18em / 14); - text-align: center; -} diff --git a/library/font_awesome/src/assets/font-awesome/scss/_icons.scss b/library/font_awesome/src/assets/font-awesome/scss/_icons.scss deleted file mode 100644 index 23128aaee..000000000 --- a/library/font_awesome/src/assets/font-awesome/scss/_icons.scss +++ /dev/null @@ -1,7 +0,0 @@ ---- ---- -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ -{% for icon in icons %}{% for alias in icon.aliases %} -.#{$fa-css-prefix}-{{ alias }}:before,{% endfor %} -.#{$fa-css-prefix}-{{ icon.id }}:before { content: $fa-var-{{ icon.id }}; }{% endfor %} diff --git a/library/font_awesome/src/assets/font-awesome/scss/_larger.scss b/library/font_awesome/src/assets/font-awesome/scss/_larger.scss deleted file mode 100644 index 403572384..000000000 --- a/library/font_awesome/src/assets/font-awesome/scss/_larger.scss +++ /dev/null @@ -1,16 +0,0 @@ ---- ---- - -// Icon Sizes -// ------------------------- - -/* makes the font 33% larger relative to the icon container */ -.#{$fa-css-prefix}-lg { - font-size: (4em / 3); - line-height: (3em / 4); - vertical-align: -15%; -} -.#{$fa-css-prefix}-2x { font-size: 2em; } -.#{$fa-css-prefix}-3x { font-size: 3em; } -.#{$fa-css-prefix}-4x { font-size: 4em; } -.#{$fa-css-prefix}-5x { font-size: 5em; } diff --git a/library/font_awesome/src/assets/font-awesome/scss/_list.scss b/library/font_awesome/src/assets/font-awesome/scss/_list.scss deleted file mode 100644 index 1c6498268..000000000 --- a/library/font_awesome/src/assets/font-awesome/scss/_list.scss +++ /dev/null @@ -1,22 +0,0 @@ ---- ---- - -// List Icons -// ------------------------- - -.#{$fa-css-prefix}-ul { - padding-left: 0; - margin-left: $fa-li-width; - list-style-type: none; - > li { position: relative; } -} -.#{$fa-css-prefix}-li { - position: absolute; - left: -$fa-li-width; - width: $fa-li-width; - top: (2em / 14); - text-align: center; - &.#{$fa-css-prefix}-lg { - left: -$fa-li-width + (4em / 14); - } -} diff --git a/library/font_awesome/src/assets/font-awesome/scss/_mixins.scss b/library/font_awesome/src/assets/font-awesome/scss/_mixins.scss deleted file mode 100644 index 241166198..000000000 --- a/library/font_awesome/src/assets/font-awesome/scss/_mixins.scss +++ /dev/null @@ -1,56 +0,0 @@ ---- ---- -// Mixins -// -------------------------- - -@mixin fa-icon() { -{% include code/core.scss %} -} - -@mixin fa-icon-rotate($degrees, $rotation) { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; - -webkit-transform: rotate($degrees); - -ms-transform: rotate($degrees); - transform: rotate($degrees); -} - -@mixin fa-icon-flip($horiz, $vert, $rotation) { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; - -webkit-transform: scale($horiz, $vert); - -ms-transform: scale($horiz, $vert); - transform: scale($horiz, $vert); -} - - -// Only display content to screen readers. A la Bootstrap 4. -// -// See: http://a11yproject.com/posts/how-to-hide-content/ - -@mixin sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0,0,0,0); - border: 0; -} - -// Use in conjunction with .sr-only to only display content when it's focused. -// -// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 -// -// Credit: HTML5 Boilerplate - -@mixin sr-only-focusable { - &:active, - &:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; - } -} diff --git a/library/font_awesome/src/assets/font-awesome/scss/_path.scss b/library/font_awesome/src/assets/font-awesome/scss/_path.scss deleted file mode 100644 index bb457c23a..000000000 --- a/library/font_awesome/src/assets/font-awesome/scss/_path.scss +++ /dev/null @@ -1,15 +0,0 @@ -/* FONT PATH - * -------------------------- */ - -@font-face { - font-family: 'FontAwesome'; - src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); - src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), - url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), - url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), - url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), - url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); -// src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts - font-weight: normal; - font-style: normal; -} diff --git a/library/font_awesome/src/assets/font-awesome/scss/_rotated-flipped.scss b/library/font_awesome/src/assets/font-awesome/scss/_rotated-flipped.scss deleted file mode 100644 index 6e95eb46a..000000000 --- a/library/font_awesome/src/assets/font-awesome/scss/_rotated-flipped.scss +++ /dev/null @@ -1,23 +0,0 @@ ---- ---- - -// Rotated & Flipped Icons -// ------------------------- - -.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } -.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } -.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } - -.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } -.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } - -// Hook for IE8-9 -// ------------------------- - -:root .#{$fa-css-prefix}-rotate-90, -:root .#{$fa-css-prefix}-rotate-180, -:root .#{$fa-css-prefix}-rotate-270, -:root .#{$fa-css-prefix}-flip-horizontal, -:root .#{$fa-css-prefix}-flip-vertical { - filter: none; -} diff --git a/library/font_awesome/src/assets/font-awesome/scss/_screen-reader.scss b/library/font_awesome/src/assets/font-awesome/scss/_screen-reader.scss deleted file mode 100644 index 637426f0d..000000000 --- a/library/font_awesome/src/assets/font-awesome/scss/_screen-reader.scss +++ /dev/null @@ -1,5 +0,0 @@ -// Screen Readers -// ------------------------- - -.sr-only { @include sr-only(); } -.sr-only-focusable { @include sr-only-focusable(); } diff --git a/library/font_awesome/src/assets/font-awesome/scss/_stacked.scss b/library/font_awesome/src/assets/font-awesome/scss/_stacked.scss deleted file mode 100644 index 01c9443be..000000000 --- a/library/font_awesome/src/assets/font-awesome/scss/_stacked.scss +++ /dev/null @@ -1,23 +0,0 @@ ---- ---- - -// Stacked Icons -// ------------------------- - -.#{$fa-css-prefix}-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle; -} -.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center; -} -.#{$fa-css-prefix}-stack-1x { line-height: inherit; } -.#{$fa-css-prefix}-stack-2x { font-size: 2em; } -.#{$fa-css-prefix}-inverse { color: $fa-inverse; } diff --git a/library/font_awesome/src/assets/font-awesome/scss/_variables.scss b/library/font_awesome/src/assets/font-awesome/scss/_variables.scss deleted file mode 100644 index 9dfa9018d..000000000 --- a/library/font_awesome/src/assets/font-awesome/scss/_variables.scss +++ /dev/null @@ -1,17 +0,0 @@ ---- ---- -// Variables -// -------------------------- - -$fa-font-path: "../fonts" !default; -$fa-font-size-base: 14px !default; -$fa-line-height-base: 1 !default; -//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/{{site.fontawesome.version}}/fonts" !default; // for referencing Bootstrap CDN font files directly -$fa-css-prefix: {{ site.fontawesome.css_prefix }} !default; -$fa-version: "{{ site.fontawesome.version }}" !default; -$fa-border-color: #eee !default; -$fa-inverse: #fff !default; -$fa-li-width: (30em / 14) !default; - -{% assign sorted_icons = icons | expand_aliases | sort_by:'class' %}{% for icon in sorted_icons %}$fa-var-{{ icon.class }}: "\{{ icon.unicode }}"; -{% endfor %} diff --git a/library/font_awesome/src/assets/font-awesome/scss/font-awesome.scss b/library/font_awesome/src/assets/font-awesome/scss/font-awesome.scss deleted file mode 100644 index f7b78ecd1..000000000 --- a/library/font_awesome/src/assets/font-awesome/scss/font-awesome.scss +++ /dev/null @@ -1,17 +0,0 @@ ---- ---- -{% include code/license.css %} - -@import "variables"; -@import "mixins"; -@import "path"; -@import "core"; -@import "larger"; -@import "fixed-width"; -@import "list"; -@import "bordered-pulled"; -@import "animated"; -@import "rotated-flipped"; -@import "stacked"; -@import "icons"; -@import "screen-reader"; diff --git a/library/font_awesome/src/assets/img/algolia.png b/library/font_awesome/src/assets/img/algolia.png deleted file mode 100644 index f5a89619b..000000000 Binary files a/library/font_awesome/src/assets/img/algolia.png and /dev/null differ diff --git a/library/font_awesome/src/assets/img/logo-themeisle.png b/library/font_awesome/src/assets/img/logo-themeisle.png deleted file mode 100644 index c0f432867..000000000 Binary files a/library/font_awesome/src/assets/img/logo-themeisle.png and /dev/null differ diff --git a/library/font_awesome/src/assets/img/logo-wpbeginner.png b/library/font_awesome/src/assets/img/logo-wpbeginner.png deleted file mode 100644 index c0711153f..000000000 Binary files a/library/font_awesome/src/assets/img/logo-wpbeginner.png and /dev/null differ diff --git a/library/font_awesome/src/assets/js/ZeroClipboard-1.1.7.min.js b/library/font_awesome/src/assets/js/ZeroClipboard-1.1.7.min.js deleted file mode 100644 index 32535fddf..000000000 --- a/library/font_awesome/src/assets/js/ZeroClipboard-1.1.7.min.js +++ /dev/null @@ -1,8 +0,0 @@ -/*! - * zeroclipboard - * The Zero Clipboard library provides an easy way to copy text to the clipboard using an invisible Adobe Flash movie, and a JavaScript interface. - * Copyright 2012 Jon Rohan, James M. Greene, . - * Released under the MIT license - * http://jonrohan.github.com/ZeroClipboard/ - * v1.1.7 - */(function(){"use strict";var a=function(a,b){var c=a.style[b];a.currentStyle?c=a.currentStyle[b]:window.getComputedStyle&&(c=document.defaultView.getComputedStyle(a,null).getPropertyValue(b));if(c=="auto"&&b=="cursor"){var d=["a"];for(var e=0;e=0?"&":"?")+"nocache="+(new Date).getTime()},i=function(a){var b=[];return a.trustedDomains&&(typeof a.trustedDomains=="string"?b.push("trustedDomain="+a.trustedDomains):b.push("trustedDomain="+a.trustedDomains.join(","))),b.join("&")},j=function(a,b){if(b.indexOf)return b.indexOf(a);for(var c=0,d=b.length;c ';b=document.createElement("div"),b.id="global-zeroclipboard-html-bridge",b.setAttribute("class","global-zeroclipboard-container"),b.setAttribute("data-clipboard-ready",!1),b.style.position="absolute",b.style.left="-9999px",b.style.top="-9999px",b.style.width="15px",b.style.height="15px",b.style.zIndex="9999",b.innerHTML=c,document.body.appendChild(b)}a.htmlBridge=b,a.flashBridge=document["global-zeroclipboard-flash-bridge"]||b.children[0].lastElementChild};l.prototype.resetBridge=function(){this.htmlBridge.style.left="-9999px",this.htmlBridge.style.top="-9999px",this.htmlBridge.removeAttribute("title"),this.htmlBridge.removeAttribute("data-clipboard-text"),f(m,this.options.activeClass),m=null,this.options.text=null},l.prototype.ready=function(){var a=this.htmlBridge.getAttribute("data-clipboard-ready");return a==="true"||a===!0},l.prototype.reposition=function(){if(!m)return!1;var a=g(m);this.htmlBridge.style.top=a.top+"px",this.htmlBridge.style.left=a.left+"px",this.htmlBridge.style.width=a.width+"px",this.htmlBridge.style.height=a.height+"px",this.htmlBridge.style.zIndex=a.zIndex+1,this.setSize(a.width,a.height)},l.dispatch=function(a,b){l.prototype._singleton.receiveEvent(a,b)},l.prototype.on=function(a,b){var c=a.toString().split(/\s/g);for(var d=0;darticle,aside,figcaption,figure,footer,header,hgroup,nav,section{display:block}mark{background:#FF0;color:#000}"; -c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode|| -"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",version:"3.6.2pre",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment(); -for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d0)fulllink=l[0]+'?segment='+window['_bsa_queue'][2]+';';else fulllink=l[0];fulllink=fulllink.replace('[publisher]',window['_bsa_queue'][2]);fulllink=fulllink.replace('[timestamp]',time);return fulllink},drop:function(output,target,elType,idName){var div=document.createElement(elType);div.id=idName;div.innerHTML=output;if(!this.isset(target))where='body';for(i=0;i0)return true;if(obj.length===0)return false;for(var key in obj)if(hasOwnProperty.call(obj,key))return true;return false},getAttr:function(v,id){return document.getElementById(id).getAttribute('data-'+v)},getUrlVar:function(el,name){name=name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");var regexS="[\\?&]"+name+"=([^&#]*)",regex=new RegExp(regexS),results=regex.exec(el.src);if(results==null)return'';else return results[1]}};var _bsa_go=function(json){if(window['_bsa_queue'][0])if((window['_bsa_queue'][0][3]&&window['_bsa_queue'][0][3].platforms.indexOf('mobile')>-1&&_bsa.isMobile())||(window['_bsa_queue'][0][3]&&window['_bsa_queue'][0][3].platforms.indexOf('desktop')>-1&&!_bsa.isMobile()))for(i=json['ads'].length-1;i>=0;i--)if(json['ads'][i].statlink==null)json['ads'].splice(i,1);if(_bsa.isset(json['ads'][0].statlink)){for(var i=0;i=0?c.substring(i+w.length+1).split(';')[0]+',':'',d=new Date();d.setTime(days*3600000+d);data=existing+data;data=data.substring(0,2048);document.cookie=w+'='+data+'; expires='+d.toGMTString()+'; path=\/'};if(freqcap){append('_bsap_daycap',banner,1);append('_bsap_lifecap',banner,365)}};_bsa.default=function(zoneKey,segment,options,ads){var disable_css=_bsa.isset(options)&&_bsa.isset(options.disable_css)?options.disable_css:false;_bsa.default.elID=function(options){return(options&&options.id)?options.id:'_default_'};_bsa.default.align=function(options){return(options&&options.align)?options.align:'vertical'};function css(colors){var c='';return c}function template(ads){var c='ad';for(var i=0;i'+ads[i].title+''+ads[i].description+''+(_bsa.isset(ads[i].pixel)?'':'')+'';return c}if(ads){_bsa.drop((disable_css?'':css(ads))+template(ads),options.target,'div',_bsa.default.elID(options));_bsa.clearQueue()}};_bsa.default.readyToInit=true;_bsa.default.testData={ads:[{barcolor:'#1a1b1c',barcolorHover:'rgba(0,0,0,.8)',callToActionTextColor:'#ffffff',callToActionColor:'#06c',callToActionColorHover:'#06c',callToActionTextColorHover:'#ffffff',textcolor:'#ffffff',textcolorHover:'#ffffff',barcolorHover:'#1a1b1c',statlink:'//demo.com/',image:'//dummyimage.com/80x80/000/1a1b1c',title:'This is a title',description:'Hi, please try my fancy new product over here!',calltoaction:'Learn More',base64:'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAMAAAC5zwKfAAAAFVBMVEUAAAAaGxwJCgoDAwMNDQ4GBgcQEBGUR2suAAAAb0lEQVR4Ae3RMYoGMQxDYeEnz/2PvIGw05gpXP6grwoPVATrJ0VERERERBWSur/7jsHogee7b1BSH/cldDD7grut0mFJWDKjb1SV5XeIzegbhYSLd2jPvnEn1P89DR59xVXmfvBoJJh9ioiIiIiIPyBgActqvt8OAAAAAElFTkSuQmCC'}]};_bsa.imageonly=function(zoneKey,segment,options,ads){var disable_css=_bsa.isset(options)&&_bsa.isset(options.disable_css)?options.disable_css:false;_bsa.default.elID=function(options){return(options&&options.id)?options.id:zoneKey};_bsa.default.align=function(options){return(options&&options.align)?options.align:'vertical'};function css(colors){var c='';return c}function template(ads){var c='';for(var i=0;i'+ads[i].alt+''+(_bsa.isset(ads[i].pixel)?'':'')+'';return c}if(ads){_bsa.drop((disable_css?'':css(ads))+template(ads),options.target,'div',_bsa.default.elID(options));_bsa.clearQueue()}};_bsa.imageonly.readyToInit=true;_bsa.imageonly.testData={ads:[{barcolor:'#1a1b1c',barcolorHover:'rgba(0,0,0,.8)',callToActionTextColor:'#ffffff',callToActionColor:'#06c',callToActionColorHover:'#06c',callToActionTextColorHover:'#ffffff',textcolor:'#ffffff',textcolorHover:'#ffffff',barcolorHover:'#1a1b1c',statlink:'//demo.com/',image:'//dummyimage.com/80x80/000/1a1b1c',title:'This is a title',description:'Hi, please try my fancy new product over here!',calltoaction:'Learn More',base64:'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAMAAAC5zwKfAAAAFVBMVEUAAAAaGxwJCgoDAwMNDQ4GBgcQEBGUR2suAAAAb0lEQVR4Ae3RMYoGMQxDYeEnz/2PvIGw05gpXP6grwoPVATrJ0VERERERBWSur/7jsHogee7b1BSH/cldDD7grut0mFJWDKjb1SV5XeIzegbhYSLd2jPvnEn1P89DR59xVXmfvBoJJh9ioiIiIiIPyBgActqvt8OAAAAAElFTkSuQmCC'}]};_bsa.fancybar=function(zoneKey,segment,options,ads){var disable_css=_bsa.isset(options)&&_bsa.isset(options.disable_css)?options.disable_css:false;_bsa.fancybar.elID=function(options){return(options&&options.id)?options.id:'_fbn_'};function css(colors){var c=colors[0],barcolor=_bsa.isset(c)&&_bsa.isHex(c.barcolor)?c.barcolor:_bsa.fancybar.testData.ads[0].barcolor,barcolorHover=_bsa.isset(c)&&_bsa.isHex(c.barcolorHover)?c.barcolorHover:_bsa.fancybar.testData.ads[0].barcolorHover,callToActionTextColor=_bsa.isset(c)&&_bsa.isHex(c.callToActionTextColor)?c.callToActionTextColor:_bsa.fancybar.testData.ads[0].callToActionTextColor,callToActionColor=_bsa.isset(c)&&_bsa.isHex(c.callToActionColor)?c.callToActionColor:_bsa.fancybar.testData.ads[0].callToActionColor,callToActionColorHover=_bsa.isset(c)&&_bsa.isHex(c.callToActionColorHover)?c.callToActionColorHover:_bsa.fancybar.testData.ads[0].callToActionColorHover,callToActionTextColorHover=_bsa.isset(c)&&_bsa.isHex(c.callToActionTextColorHover)?c.callToActionTextColorHover:_bsa.fancybar.testData.ads[0].callToActionTextColorHover,textcolor=_bsa.isset(c)&&_bsa.isHex(c.textcolor)?c.textcolor:_bsa.fancybar.testData.ads[0].textcolor,textcolorHover=_bsa.isset(c)&&_bsa.isHex(c.textcolorHover)?c.textcolorHover:_bsa.fancybar.testData.ads[0].textcolorHover,barcolorHover=_bsa.isset(c)&&_bsa.isHex(c.barcolorHover)?c.barcolorHover:_bsa.fancybar.testData.ads[0].barcolorHover;return''}function template(ads){var a=ads[0],link=_bsa.isset(a)&&_bsa.isset(a.statlink)?_bsa.link(a.statlink):_bsa.fancybar.testData.ads[0].statlink,image=_bsa.isset(a)&&_bsa.isset(a.image)?a.image:_bsa.fancybar.testData.ads[0].image,base64=_bsa.isset(a)&&_bsa.isset(a.base64)?a.base64:_bsa.fancybar.testData.ads[0].base64,text=_bsa.isset(a)&&_bsa.isset(a.text)?a.text:_bsa.fancybar.testData.ads[0].text,calltoaction=_bsa.isset(a)&&_bsa.isset(a.calltoaction)?a.calltoaction:_bsa.fancybar.testData.ads[0].calltoaction,pixel=_bsa.isset(a)&&_bsa.isset(a.pixel)?a.pixel:null,time=Date.now()/1000|0;return'
    x'+calltoaction+''+text+''+(_bsa.isset(pixel)?'':'')+'
    '}if(!_bsa.getCookie(_bsa.fancybar.elID(options))){var _fancybar_didScroll;var _fancybar_didDrop=false;window.onscroll=function(){_fancybar_didScroll=true};var _fancybar_scrollInterval=setInterval(function(){if(_fancybar_didScroll&&!_bsa.getCookie(_bsa.fancybar.elID(options))){_fancybar_didScroll=false;var scrollTop=(window.pageYOffset!==undefined)?window.pageYOffset:(document.documentElement||document.body.parentNode||document.body).scrollTop;if(scrollTop>=100&&!document.getElementById(_bsa.fancybar.elID(options))){_bsa.fancybar.readyToInit=true;_bsa.init('fancybar',zoneKey,segment,options)}else if(scrollTop>=100){_bsa.show(_bsa.fancybar.elID(options))}if(scrollTop<100){_bsa.hide(_bsa.fancybar.elID(options))}}},500)}if(ads){_bsa.drop((disable_css?'':css(ads))+template(ads),'body','div',_bsa.fancybar.elID(options));_bsa.clearQueue()}};_bsa.fancybar.readyToInit=false;_bsa.fancybar.testData={ads:[{barcolor:'#1a1b1c',barcolorHover:'rgba(0,0,0,.8)',callToActionTextColor:'#ffffff',callToActionColor:'#06c',callToActionColorHover:'#06c',callToActionTextColorHover:'#ffffff',textcolor:'#ffffff',textcolorHover:'#ffffff',barcolorHover:'#1a1b1c',statlink:'//demo.com/',image:'//dummyimage.com/125x50/000/1a1b1c',text:'Hi, please try my fancy new product over here!',calltoaction:'Learn More',base64:'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH0AAAAyBAMAAACDoMmvAAAAG1BMVEUAAAAaGxwGBgcNDQ4QEBEWFxgJCgoDAwMTFBUu0R9eAAABlElEQVRIie2TsVLCQBCGjyQkluIIUh6jqKWoKGVmEGqQMVIeM2AsAQdtkQjDY7ubDclxSbSwsLl/JrfH7X67e5vAmJaWltZfdYqLM9520d6ArpQAEw8xpvUl0rhZwrURvDSfwR5n8IU28aPu+Xqa4jsjXH14tlDiJKPBGUHGEWNWT3Uu3JoU5xxm8WSK2NdA8TkDFvNFwYwsviaZieKzxT4f92cKzO7itk4nLekuGelhTpzZy90PowLLIhzlK520wxo8n4fe7FVneB8dC7xcyJ89BVB2g/sDkc970HXVf+/wXQNUnjU2H+PH0A28+nIT3oS7O5xseO5Hw57D0/ydr+1G45ExSlIszHbzM4+fB+mBjNMXSZDlsiDKk8PXY88tmcV1JQkyXUpb4Dm84cUHVB+/rKQY1J9IxdK8FEuZYPhG0gD0PeNx7jRvx7dndi8qLyeF4tZSHpLCN3m4N33mNMKtiYM2lri9m7I35IZTNkmPn/gSCjr+HPZXasBleV3FnFa576m+lObpPwhzLvatlpbW/+obifk8WyshfY8AAAAASUVORK5CYII='}]}; \ No newline at end of file diff --git a/library/font_awesome/src/assets/js/prettify.min.js b/library/font_awesome/src/assets/js/prettify.min.js deleted file mode 100644 index eef5ad7e6..000000000 --- a/library/font_awesome/src/assets/js/prettify.min.js +++ /dev/null @@ -1,28 +0,0 @@ -var q=null;window.PR_SHOULD_USE_CONTINUATION=!0; -(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a= -[],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;ci[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m), -l=[],p={},d=0,g=e.length;d=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/, -q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/, -q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g, -"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a), -a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e} -for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], -"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"], -H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"], -J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+ -I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]), -["default-markup","htm","html","mxml","xhtml","xml","xsl"]);k(x([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css", -/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),["c","cc","cpp","cxx","cyc","m"]);k(u({keywords:"null,true,false"}),["json"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),["cs"]);k(u({keywords:G,cStyleComments:!0}),["java"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}), -["cv","py"]);k(u({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),["js"]);k(u({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes", -hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);k(x([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement("PRE");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p=0){var k=k.match(g),f,b;if(b= -!k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p #mq-test-1 { width: 42px; }',d.insertBefore(f,e),c=42===g.offsetWidth,d.removeChild(f),{matches:c,media:a}}}(document); - -/*! Respond.js v1.1.0: min/max-width media query polyfill. (c) Scott Jehl. MIT/GPLv2 Lic. j.mp/respondjs */ -(function(a){"use strict";function x(){u(!0)}var b={};a.respond=b,b.update=function(){},b.mediaQueriesSupported=a.matchMedia&&a.matchMedia("only all").matches,b.mediaQueriesSupported;var q,r,t,c=a.document,d=c.documentElement,e=[],f=[],g=[],h={},i=30,j=c.getElementsByTagName("head")[0]||d,k=c.getElementsByTagName("base")[0],l=j.getElementsByTagName("link"),m=[],n=function(){for(var b=0;l.length>b;b++){var c=l[b],d=c.href,e=c.media,f=c.rel&&"stylesheet"===c.rel.toLowerCase();d&&f&&!h[d]&&(c.styleSheet&&c.styleSheet.rawCssText?(p(c.styleSheet.rawCssText,d,e),h[d]=!0):(!/^([a-zA-Z:]*\/\/)/.test(d)&&!k||d.replace(RegExp.$1,"").split("/")[0]===a.location.host)&&m.push({href:d,media:e}))}o()},o=function(){if(m.length){var a=m.shift();v(a.href,function(b){p(b,a.href,a.media),h[a.href]=!0,setTimeout(function(){o()},0)})}},p=function(a,b,c){var d=a.match(/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi),g=d&&d.length||0;b=b.substring(0,b.lastIndexOf("/"));var h=function(a){return a.replace(/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,"$1"+b+"$2$3")},i=!g&&c;b.length&&(b+="/"),i&&(g=1);for(var j=0;g>j;j++){var k,l,m,n;i?(k=c,f.push(h(a))):(k=d[j].match(/@media *([^\{]+)\{([\S\s]+?)$/)&&RegExp.$1,f.push(RegExp.$2&&h(RegExp.$2))),m=k.split(","),n=m.length;for(var o=0;n>o;o++)l=m[o],e.push({media:l.split("(")[0].match(/(only\s+)?([a-zA-Z]+)\s?/)&&RegExp.$2||"all",rules:f.length-1,hasquery:l.indexOf("(")>-1,minw:l.match(/\(min\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:l.match(/\(max\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}u()},s=function(){var a,b=c.createElement("div"),e=c.body,f=!1;return b.style.cssText="position:absolute;font-size:1em;width:1em",e||(e=f=c.createElement("body"),e.style.background="none"),e.appendChild(b),d.insertBefore(e,d.firstChild),a=b.offsetWidth,f?d.removeChild(e):e.removeChild(b),a=t=parseFloat(a)},u=function(a){var b="clientWidth",h=d[b],k="CSS1Compat"===c.compatMode&&h||c.body[b]||h,m={},n=l[l.length-1],o=(new Date).getTime();if(a&&q&&i>o-q)return clearTimeout(r),r=setTimeout(u,i),void 0;q=o;for(var p in e)if(e.hasOwnProperty(p)){var v=e[p],w=v.minw,x=v.maxw,y=null===w,z=null===x,A="em";w&&(w=parseFloat(w)*(w.indexOf(A)>-1?t||s():1)),x&&(x=parseFloat(x)*(x.indexOf(A)>-1?t||s():1)),v.hasquery&&(y&&z||!(y||k>=w)||!(z||x>=k))||(m[v.media]||(m[v.media]=[]),m[v.media].push(f[v.rules]))}for(var B in g)g.hasOwnProperty(B)&&g[B]&&g[B].parentNode===j&&j.removeChild(g[B]);for(var C in m)if(m.hasOwnProperty(C)){var D=c.createElement("style"),E=m[C].join("\n");D.type="text/css",D.media=C,j.insertBefore(D,n.nextSibling),D.styleSheet?D.styleSheet.cssText=E:D.appendChild(c.createTextNode(E)),g.push(D)}},v=function(a,b){var c=w();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))},w=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}();n(),b.update=n,a.addEventListener?a.addEventListener("resize",x,!1):a.attachEvent&&a.attachEvent("onresize",x)})(this); diff --git a/library/font_awesome/src/assets/js/search.js b/library/font_awesome/src/assets/js/search.js deleted file mode 100644 index 1c4d447f1..000000000 --- a/library/font_awesome/src/assets/js/search.js +++ /dev/null @@ -1,92 +0,0 @@ -$(function() { - var SearchView = Backbone.View.extend({ - events: { - "click #search-clear": "clear" - }, - - initialize: function() { - this.algolia = algoliasearch("M19DXW5X0Q", "c79b2e61519372a99fa5890db070064c"); - this.algoliaHelper = algoliasearchHelper(this.algolia, "font_awesome"); - this.template = _.template($("#results-template").html()); - - this.$searchInput = this.$("#search-input"); - this.$searchResultsSection = this.$("#search-results"); - this.$searchInputClear = this.$("#search-clear"); - this.$iconsSection = this.$("#icons"); - - this.$searchInput.on("keyup", _.debounce(_.bind(this.search, this), 200)); - this.algoliaHelper.on("result", _.bind(this.showResults, this)); - }, - - search: function(event) { - var query = this.$searchInput.val(); - - if (query !== "") { - this. algoliaHelper.setQuery(query).search(); - } else { - this.clearResults(); - } - }, - - clear: function(event) { - event.preventDefault(); - - this.clearResults(); - }, - - showResults: function(content, state) { - this.$searchResultsSection.html(""); - this.$searchResultsSection.removeClass("hide"); - this.$searchInputClear.removeClass("hide"); - this.$iconsSection.addClass("hide"); - - var results = []; - - _.each(content.hits, function(result) { - results.push(new SearchResultView({ result: result }).render()) - }); - - this.$searchResultsSection.html(this.template({ content: content, results: results.join("") })); - }, - - clearResults: function() { - this.$searchInput.val("").focus(); - this.$searchResultsSection.addClass("hide"); - this.$searchResultsSection.html(""); - this.$searchInputClear.addClass("hide"); - this.$iconsSection.removeClass("hide"); - } - }); - - var SearchResultView = Backbone.View.extend({ - initialize: function(options) { - this.template = _.template($("#result-template").html()); - this.result = options.result - }, - - render: function() { - var matches = []; - - this.pullMatches(matches, this.result._highlightResult.aliases); - this.pullMatches(matches, this.result._highlightResult.synonyms); - - return this.template({ result: this.result, matches: matches }); - }, - - pullMatches: function(matches, list) { - if (list !== undefined) { - _.each(list, function(highlight) { - if (highlight.matchLevel !== "none") { - matches.push(highlight.value) - } - }) - } - } - }); - - var $searchViewElement = $("[data-view=search]"); - - if ($searchViewElement.length > 0) { - new SearchView({ el: $searchViewElement }); - } -}); diff --git a/library/font_awesome/src/assets/js/site.js b/library/font_awesome/src/assets/js/site.js deleted file mode 100644 index f92d2fa50..000000000 --- a/library/font_awesome/src/assets/js/site.js +++ /dev/null @@ -1,89 +0,0 @@ -$(function () { - $("#newsletter").validate(); - - var ads = [ - // { - // quote: "Looking for the best icon sets? Check out Symbolset, now from the maker of Font Awesome.", - // class: "symbolset", - // url: "https://symbolset.com/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_1_best_icons&utm_campaign=promo_4.7_update", - // btn_text: "Gimme Some!" - // }, - // { - // quote: "Need a different look for your icons? Check out Symbolset, now from the maker of Font Awesome.", - // class: "symbolset", - // url: "https://symbolset.com/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_2_different_look&utm_campaign=promo_4.7_update", - // btn_text: "Gimme Some!" - // }, - // { - // quote: "Take your icon game to the next level. Check out Fort Awesome, from the maker of Font Awesome.", - // class: "fort-awesome", - // url: "https://fortawesome.com/start?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_1_next_level&utm_campaign=promo_4.7_update", - // btn_text: "Gimme Some!" - // }, - // { - // quote: "Make your icons load 10x faster! Check out Fort Awesome, from the maker of Font Awesome.", - // class: "fort-awesome", - // url: "https://fortawesome.com/start?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_3_faster_loading&utm_campaign=promo_4.7_update", - // btn_text: "Gimme Some!" - // }, - // { - // quote: "Want to add your own icon? Check out Fort Awesome, from the maker of Font Awesome.", - // class: "fort-awesome", - // url: "https://fortawesome.com/start?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_6_your_own_icon&utm_campaign=promo_4.7_update", - // btn_text: "Gimme Some!" - // } - { - quote: "Font Awesome 5. The most awesome-est Font Awesome ever!", - class: "kickstarter", - url: "http://five.fontawesome.io/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_1_most_awesome-est&utm_campaign=promo_4.7_update", - btn_text: "Check out the Kickstarter", - }, - { - quote: "Get 1,000+ more icons and SVG in Font Awesome 5 Pro!", - class: "kickstarter", - url: "http://five.fontawesome.io/?utm_source=font_awesome_homepage&utm_medium=display&utm_content=ad_2_svg_and_1000_more&utm_campaign=promo_4.7_update", - btn_text: "Check out the Kickstarter", - }, - ]; - - selectAd(); - - // start the icon carousel - $('#icon-carousel').carousel({ - interval: 5000 - }); - - $('[data-toggle="tooltip"]').tooltip(); - $('[data-toggle="popover"]').popover(); - if (storageAvailable('localStorage') && !localStorage.seenKickstarterModal) { - $('#modal-kickstarter').modal('toggle'); - } - - if (storageAvailable('localStorage')) { - localStorage.seenKickstarterModal = true; - // Yippee! We can use localStorage awesomeness - } - - function storageAvailable(type) { - try { - var storage = window[type], - x = '__storage_test__'; - storage.setItem(x, x); - storage.removeItem(x); - return true; - } - catch(e) { - return false; - } - } - function selectAd() { - random_number = Math.floor(Math.random() * ads.length); - random_ad = ads[random_number]; - - $('#banner').addClass(random_ad.class); - $('#rotating-message').html(random_ad.quote); - $('#rotating-url').attr("href", random_ad.url); - $('#rotating-url').html(random_ad.btn_text); - $('#banner').collapse('show'); - } -}); diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/.csscomb.json b/library/font_awesome/src/assets/less/bootstrap-3.3.5/.csscomb.json deleted file mode 100644 index 40695a478..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/.csscomb.json +++ /dev/null @@ -1,304 +0,0 @@ -{ - "always-semicolon": true, - "block-indent": 2, - "color-case": "lower", - "color-shorthand": true, - "element-case": "lower", - "eof-newline": true, - "leading-zero": false, - "remove-empty-rulesets": true, - "space-after-colon": 1, - "space-after-combinator": 1, - "space-before-selector-delimiter": 0, - "space-between-declarations": "\n", - "space-after-opening-brace": "\n", - "space-before-closing-brace": "\n", - "space-before-colon": 0, - "space-before-combinator": 1, - "space-before-opening-brace": 1, - "strip-spaces": true, - "unitless-zero": true, - "vendor-prefix-align": true, - "sort-order": [ - [ - "position", - "top", - "right", - "bottom", - "left", - "z-index", - "display", - "float", - "width", - "min-width", - "max-width", - "height", - "min-height", - "max-height", - "-webkit-box-sizing", - "-moz-box-sizing", - "box-sizing", - "-webkit-appearance", - "padding", - "padding-top", - "padding-right", - "padding-bottom", - "padding-left", - "margin", - "margin-top", - "margin-right", - "margin-bottom", - "margin-left", - "overflow", - "overflow-x", - "overflow-y", - "-webkit-overflow-scrolling", - "-ms-overflow-x", - "-ms-overflow-y", - "-ms-overflow-style", - "clip", - "clear", - "font", - "font-family", - "font-size", - "font-style", - "font-weight", - "font-variant", - "font-size-adjust", - "font-stretch", - "font-effect", - "font-emphasize", - "font-emphasize-position", - "font-emphasize-style", - "font-smooth", - "-webkit-hyphens", - "-moz-hyphens", - "hyphens", - "line-height", - "color", - "text-align", - "-webkit-text-align-last", - "-moz-text-align-last", - "-ms-text-align-last", - "text-align-last", - "text-emphasis", - "text-emphasis-color", - "text-emphasis-style", - "text-emphasis-position", - "text-decoration", - "text-indent", - "text-justify", - "text-outline", - "-ms-text-overflow", - "text-overflow", - "text-overflow-ellipsis", - "text-overflow-mode", - "text-shadow", - "text-transform", - "text-wrap", - "-webkit-text-size-adjust", - "-ms-text-size-adjust", - "letter-spacing", - "-ms-word-break", - "word-break", - "word-spacing", - "-ms-word-wrap", - "word-wrap", - "-moz-tab-size", - "-o-tab-size", - "tab-size", - "white-space", - "vertical-align", - "list-style", - "list-style-position", - "list-style-type", - "list-style-image", - "pointer-events", - "-ms-touch-action", - "touch-action", - "cursor", - "visibility", - "zoom", - "flex-direction", - "flex-order", - "flex-pack", - "flex-align", - "table-layout", - "empty-cells", - "caption-side", - "border-spacing", - "border-collapse", - "content", - "quotes", - "counter-reset", - "counter-increment", - "resize", - "-webkit-user-select", - "-moz-user-select", - "-ms-user-select", - "-o-user-select", - "user-select", - "nav-index", - "nav-up", - "nav-right", - "nav-down", - "nav-left", - "background", - "background-color", - "background-image", - "-ms-filter:\\'progid:DXImageTransform.Microsoft.gradient", - "filter:progid:DXImageTransform.Microsoft.gradient", - "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader", - "filter", - "background-repeat", - "background-attachment", - "background-position", - "background-position-x", - "background-position-y", - "-webkit-background-clip", - "-moz-background-clip", - "background-clip", - "background-origin", - "-webkit-background-size", - "-moz-background-size", - "-o-background-size", - "background-size", - "border", - "border-color", - "border-style", - "border-width", - "border-top", - "border-top-color", - "border-top-style", - "border-top-width", - "border-right", - "border-right-color", - "border-right-style", - "border-right-width", - "border-bottom", - "border-bottom-color", - "border-bottom-style", - "border-bottom-width", - "border-left", - "border-left-color", - "border-left-style", - "border-left-width", - "border-radius", - "border-top-left-radius", - "border-top-right-radius", - "border-bottom-right-radius", - "border-bottom-left-radius", - "-webkit-border-image", - "-moz-border-image", - "-o-border-image", - "border-image", - "-webkit-border-image-source", - "-moz-border-image-source", - "-o-border-image-source", - "border-image-source", - "-webkit-border-image-slice", - "-moz-border-image-slice", - "-o-border-image-slice", - "border-image-slice", - "-webkit-border-image-width", - "-moz-border-image-width", - "-o-border-image-width", - "border-image-width", - "-webkit-border-image-outset", - "-moz-border-image-outset", - "-o-border-image-outset", - "border-image-outset", - "-webkit-border-image-repeat", - "-moz-border-image-repeat", - "-o-border-image-repeat", - "border-image-repeat", - "outline", - "outline-width", - "outline-style", - "outline-color", - "outline-offset", - "-webkit-box-shadow", - "-moz-box-shadow", - "box-shadow", - "filter:progid:DXImageTransform.Microsoft.Alpha(Opacity", - "-ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha", - "opacity", - "-ms-interpolation-mode", - "-webkit-transition", - "-moz-transition", - "-ms-transition", - "-o-transition", - "transition", - "-webkit-transition-delay", - "-moz-transition-delay", - "-ms-transition-delay", - "-o-transition-delay", - "transition-delay", - "-webkit-transition-timing-function", - "-moz-transition-timing-function", - "-ms-transition-timing-function", - "-o-transition-timing-function", - "transition-timing-function", - "-webkit-transition-duration", - "-moz-transition-duration", - "-ms-transition-duration", - "-o-transition-duration", - "transition-duration", - "-webkit-transition-property", - "-moz-transition-property", - "-ms-transition-property", - "-o-transition-property", - "transition-property", - "-webkit-transform", - "-moz-transform", - "-ms-transform", - "-o-transform", - "transform", - "-webkit-transform-origin", - "-moz-transform-origin", - "-ms-transform-origin", - "-o-transform-origin", - "transform-origin", - "-webkit-animation", - "-moz-animation", - "-ms-animation", - "-o-animation", - "animation", - "-webkit-animation-name", - "-moz-animation-name", - "-ms-animation-name", - "-o-animation-name", - "animation-name", - "-webkit-animation-duration", - "-moz-animation-duration", - "-ms-animation-duration", - "-o-animation-duration", - "animation-duration", - "-webkit-animation-play-state", - "-moz-animation-play-state", - "-ms-animation-play-state", - "-o-animation-play-state", - "animation-play-state", - "-webkit-animation-timing-function", - "-moz-animation-timing-function", - "-ms-animation-timing-function", - "-o-animation-timing-function", - "animation-timing-function", - "-webkit-animation-delay", - "-moz-animation-delay", - "-ms-animation-delay", - "-o-animation-delay", - "animation-delay", - "-webkit-animation-iteration-count", - "-moz-animation-iteration-count", - "-ms-animation-iteration-count", - "-o-animation-iteration-count", - "animation-iteration-count", - "-webkit-animation-direction", - "-moz-animation-direction", - "-ms-animation-direction", - "-o-animation-direction", - "animation-direction" - ] - ] -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/.csslintrc b/library/font_awesome/src/assets/less/bootstrap-3.3.5/.csslintrc deleted file mode 100644 index 005b86236..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/.csslintrc +++ /dev/null @@ -1,19 +0,0 @@ -{ - "adjoining-classes": false, - "box-sizing": false, - "box-model": false, - "compatible-vendor-prefixes": false, - "floats": false, - "font-sizes": false, - "gradients": false, - "important": false, - "known-properties": false, - "outline-none": false, - "qualified-headings": false, - "regex-selectors": false, - "shorthand": false, - "text-indent": false, - "unique-headings": false, - "universal-selector": false, - "unqualified-attributes": false -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/alerts.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/alerts.less deleted file mode 100644 index c4199db92..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/alerts.less +++ /dev/null @@ -1,73 +0,0 @@ -// -// Alerts -// -------------------------------------------------- - - -// Base styles -// ------------------------- - -.alert { - padding: @alert-padding; - margin-bottom: @line-height-computed; - border: 1px solid transparent; - border-radius: @alert-border-radius; - - // Headings for larger alerts - h4 { - margin-top: 0; - // Specified for the h4 to prevent conflicts of changing @headings-color - color: inherit; - } - - // Provide class for links that match alerts - .alert-link { - font-weight: @alert-link-font-weight; - } - - // Improve alignment and spacing of inner content - > p, - > ul { - margin-bottom: 0; - } - - > p + p { - margin-top: 5px; - } -} - -// Dismissible alerts -// -// Expand the right padding and account for the close button's positioning. - -.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0. -.alert-dismissible { - padding-right: (@alert-padding + 20); - - // Adjust close link position - .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; - } -} - -// Alternate styles -// -// Generate contextual modifier classes for colorizing the alert. - -.alert-success { - .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text); -} - -.alert-info { - .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text); -} - -.alert-warning { - .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text); -} - -.alert-danger { - .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text); -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/badges.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/badges.less deleted file mode 100644 index 6ee16dca4..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/badges.less +++ /dev/null @@ -1,66 +0,0 @@ -// -// Badges -// -------------------------------------------------- - - -// Base class -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: @font-size-small; - font-weight: @badge-font-weight; - color: @badge-color; - line-height: @badge-line-height; - vertical-align: middle; - white-space: nowrap; - text-align: center; - background-color: @badge-bg; - border-radius: @badge-border-radius; - - // Empty badges collapse automatically (not available in IE8) - &:empty { - display: none; - } - - // Quick fix for badges in buttons - .btn & { - position: relative; - top: -1px; - } - - .btn-xs &, - .btn-group-xs > .btn & { - top: 0; - padding: 1px 5px; - } - - // Hover state, but only for links - a& { - &:hover, - &:focus { - color: @badge-link-hover-color; - text-decoration: none; - cursor: pointer; - } - } - - // Account for badges in navs - .list-group-item.active > &, - .nav-pills > .active > a > & { - color: @badge-active-color; - background-color: @badge-active-bg; - } - - .list-group-item > & { - float: right; - } - - .list-group-item > & + & { - margin-right: 5px; - } - - .nav-pills > li > a > & { - margin-left: 3px; - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/bootstrap.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/bootstrap.less deleted file mode 100644 index 4b9916e6c..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/bootstrap.less +++ /dev/null @@ -1,56 +0,0 @@ -/*! - * Bootstrap v3.3.5 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ - -// Core variables and mixins -@import "variables.less"; -@import "mixins.less"; - -// Reset and dependencies -@import "normalize.less"; -@import "print.less"; -@import "glyphicons.less"; - -// Core CSS -@import "scaffolding.less"; -@import "type.less"; -@import "code.less"; -@import "grid.less"; -@import "tables.less"; -@import "forms.less"; -@import "buttons.less"; - -// Components -@import "component-animations.less"; -@import "dropdowns.less"; -@import "button-groups.less"; -@import "input-groups.less"; -@import "navs.less"; -@import "navbar.less"; -@import "breadcrumbs.less"; -@import "pagination.less"; -@import "pager.less"; -@import "labels.less"; -@import "badges.less"; -@import "jumbotron.less"; -@import "thumbnails.less"; -@import "alerts.less"; -@import "progress-bars.less"; -@import "media.less"; -@import "list-group.less"; -@import "panels.less"; -@import "responsive-embed.less"; -@import "wells.less"; -@import "close.less"; - -// Components w/ JavaScript -@import "modals.less"; -@import "tooltip.less"; -@import "popovers.less"; -@import "carousel.less"; - -// Utility classes -@import "utilities.less"; -@import "responsive-utilities.less"; diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/breadcrumbs.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/breadcrumbs.less deleted file mode 100644 index cb01d503f..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/breadcrumbs.less +++ /dev/null @@ -1,26 +0,0 @@ -// -// Breadcrumbs -// -------------------------------------------------- - - -.breadcrumb { - padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; - margin-bottom: @line-height-computed; - list-style: none; - background-color: @breadcrumb-bg; - border-radius: @border-radius-base; - - > li { - display: inline-block; - - + li:before { - content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space - padding: 0 5px; - color: @breadcrumb-color; - } - } - - > .active { - color: @breadcrumb-active-color; - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/button-groups.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/button-groups.less deleted file mode 100644 index 6a0c5a865..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/button-groups.less +++ /dev/null @@ -1,244 +0,0 @@ -// -// Button groups -// -------------------------------------------------- - -// Make the div behave like a button -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; // match .btn alignment given font-size hack above - > .btn { - position: relative; - float: left; - // Bring the "active" button to the front - &:hover, - &:focus, - &:active, - &.active { - z-index: 2; - } - } -} - -// Prevent double borders when buttons are next to each other -.btn-group { - .btn + .btn, - .btn + .btn-group, - .btn-group + .btn, - .btn-group + .btn-group { - margin-left: -1px; - } -} - -// Optional: Group multiple button groups together for a toolbar -.btn-toolbar { - margin-left: -5px; // Offset the first child's margin - &:extend(.clearfix all); - - .btn, - .btn-group, - .input-group { - float: left; - } - > .btn, - > .btn-group, - > .input-group { - margin-left: 5px; - } -} - -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; -} - -// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match -.btn-group > .btn:first-child { - margin-left: 0; - &:not(:last-child):not(.dropdown-toggle) { - .border-right-radius(0); - } -} -// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - .border-left-radius(0); -} - -// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group) -.btn-group > .btn-group { - float: left; -} -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group > .btn-group:first-child:not(:last-child) { - > .btn:last-child, - > .dropdown-toggle { - .border-right-radius(0); - } -} -.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { - .border-left-radius(0); -} - -// On active and open, don't show outline -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; -} - - -// Sizing -// -// Remix the default button sizing classes into new ones for easier manipulation. - -.btn-group-xs > .btn { &:extend(.btn-xs); } -.btn-group-sm > .btn { &:extend(.btn-sm); } -.btn-group-lg > .btn { &:extend(.btn-lg); } - - -// Split button dropdowns -// ---------------------- - -// Give the line between buttons some depth -.btn-group > .btn + .dropdown-toggle { - padding-left: 8px; - padding-right: 8px; -} -.btn-group > .btn-lg + .dropdown-toggle { - padding-left: 12px; - padding-right: 12px; -} - -// The clickable button for toggling the menu -// Remove the gradient and set the same inset shadow as the :active state -.btn-group.open .dropdown-toggle { - .box-shadow(inset 0 3px 5px rgba(0,0,0,.125)); - - // Show no shadow for `.btn-link` since it has no other button styles. - &.btn-link { - .box-shadow(none); - } -} - - -// Reposition the caret -.btn .caret { - margin-left: 0; -} -// Carets in other button sizes -.btn-lg .caret { - border-width: @caret-width-large @caret-width-large 0; - border-bottom-width: 0; -} -// Upside down carets for .dropup -.dropup .btn-lg .caret { - border-width: 0 @caret-width-large @caret-width-large; -} - - -// Vertical button groups -// ---------------------- - -.btn-group-vertical { - > .btn, - > .btn-group, - > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; - } - - // Clear floats so dropdown menus can be properly placed - > .btn-group { - &:extend(.clearfix all); - > .btn { - float: none; - } - } - - > .btn + .btn, - > .btn + .btn-group, - > .btn-group + .btn, - > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; - } -} - -.btn-group-vertical > .btn { - &:not(:first-child):not(:last-child) { - border-radius: 0; - } - &:first-child:not(:last-child) { - border-top-right-radius: @btn-border-radius-base; - .border-bottom-radius(0); - } - &:last-child:not(:first-child) { - border-bottom-left-radius: @btn-border-radius-base; - .border-top-radius(0); - } -} -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group-vertical > .btn-group:first-child:not(:last-child) { - > .btn:last-child, - > .dropdown-toggle { - .border-bottom-radius(0); - } -} -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - .border-top-radius(0); -} - - -// Justified button groups -// ---------------------- - -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; - > .btn, - > .btn-group { - float: none; - display: table-cell; - width: 1%; - } - > .btn-group .btn { - width: 100%; - } - - > .btn-group .dropdown-menu { - left: auto; - } -} - - -// Checkbox and radio options -// -// In order to support the browser's form validation feedback, powered by the -// `required` attribute, we have to "hide" the inputs via `clip`. We cannot use -// `display: none;` or `visibility: hidden;` as that also hides the popover. -// Simply visually hiding the inputs via `opacity` would leave them clickable in -// certain cases which is prevented by using `clip` and `pointer-events`. -// This way, we ensure a DOM element is visible to position the popover from. -// -// See https://github.com/twbs/bootstrap/pull/12794 and -// https://github.com/twbs/bootstrap/pull/14559 for more information. - -[data-toggle="buttons"] { - > .btn, - > .btn-group > .btn { - input[type="radio"], - input[type="checkbox"] { - position: absolute; - clip: rect(0,0,0,0); - pointer-events: none; - } - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/buttons.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/buttons.less deleted file mode 100644 index 9cbb8f416..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/buttons.less +++ /dev/null @@ -1,166 +0,0 @@ -// -// Buttons -// -------------------------------------------------- - - -// Base styles -// -------------------------------------------------- - -.btn { - display: inline-block; - margin-bottom: 0; // For input.btn - font-weight: @btn-font-weight; - text-align: center; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214 - border: 1px solid transparent; - white-space: nowrap; - .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base); - .user-select(none); - - &, - &:active, - &.active { - &:focus, - &.focus { - .tab-focus(); - } - } - - &:hover, - &:focus, - &.focus { - color: @btn-default-color; - text-decoration: none; - } - - &:active, - &.active { - outline: 0; - background-image: none; - .box-shadow(inset 0 3px 5px rgba(0,0,0,.125)); - } - - &.disabled, - &[disabled], - fieldset[disabled] & { - cursor: @cursor-disabled; - .opacity(.65); - .box-shadow(none); - } - - a& { - &.disabled, - fieldset[disabled] & { - pointer-events: none; // Future-proof disabling of clicks on `` elements - } - } -} - - -// Alternate buttons -// -------------------------------------------------- - -.btn-default { - .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border); -} -.btn-primary { - .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border); -} -// Success appears as green -.btn-success { - .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border); -} -// Info appears as blue-green -.btn-info { - .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border); -} -// Warning appears as orange -.btn-warning { - .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border); -} -// Danger and error appear as red -.btn-danger { - .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border); -} - - -// Link buttons -// ------------------------- - -// Make a button look and behave like a link -.btn-link { - color: @link-color; - font-weight: normal; - border-radius: 0; - - &, - &:active, - &.active, - &[disabled], - fieldset[disabled] & { - background-color: transparent; - .box-shadow(none); - } - &, - &:hover, - &:focus, - &:active { - border-color: transparent; - } - &:hover, - &:focus { - color: @link-hover-color; - text-decoration: @link-hover-decoration; - background-color: transparent; - } - &[disabled], - fieldset[disabled] & { - &:hover, - &:focus { - color: @btn-link-disabled-color; - text-decoration: none; - } - } -} - - -// Button Sizes -// -------------------------------------------------- - -.btn-lg { - // line-height: ensure even-numbered height of button next to large input - .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large); -} -.btn-sm { - // line-height: ensure proper height of button next to small input - .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small); -} -.btn-xs { - .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small); -} - - -// Block button -// -------------------------------------------------- - -.btn-block { - display: block; - width: 100%; -} - -// Vertically space out multiple block buttons -.btn-block + .btn-block { - margin-top: 5px; -} - -// Specificity overrides -input[type="submit"], -input[type="reset"], -input[type="button"] { - &.btn-block { - width: 100%; - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/carousel.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/carousel.less deleted file mode 100644 index 87ed6961d..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/carousel.less +++ /dev/null @@ -1,269 +0,0 @@ -// -// Carousel -// -------------------------------------------------- - - -// Wrapper for the slide container and indicators -.carousel { - position: relative; -} - -.carousel-inner { - position: relative; - overflow: hidden; - width: 100%; - - > .item { - display: none; - position: relative; - .transition(.6s ease-in-out left); - - // Account for jankitude on images - > img, - > a > img { - &:extend(.img-responsive); - line-height: 1; - } - - // WebKit CSS3 transforms for supported devices - @media all and (transform-3d), (-webkit-transform-3d) { - .transition-transform(~'0.6s ease-in-out'); - .backface-visibility(~'hidden'); - .perspective(1000px); - - &.next, - &.active.right { - .translate3d(100%, 0, 0); - left: 0; - } - &.prev, - &.active.left { - .translate3d(-100%, 0, 0); - left: 0; - } - &.next.left, - &.prev.right, - &.active { - .translate3d(0, 0, 0); - left: 0; - } - } - } - - > .active, - > .next, - > .prev { - display: block; - } - - > .active { - left: 0; - } - - > .next, - > .prev { - position: absolute; - top: 0; - width: 100%; - } - - > .next { - left: 100%; - } - > .prev { - left: -100%; - } - > .next.left, - > .prev.right { - left: 0; - } - - > .active.left { - left: -100%; - } - > .active.right { - left: 100%; - } - -} - -// Left/right controls for nav -// --------------------------- - -.carousel-control { - position: absolute; - top: 0; - left: 0; - bottom: 0; - width: @carousel-control-width; - .opacity(@carousel-control-opacity); - font-size: @carousel-control-font-size; - color: @carousel-control-color; - text-align: center; - text-shadow: @carousel-text-shadow; - // We can't have this transition here because WebKit cancels the carousel - // animation if you trip this while in the middle of another animation. - - // Set gradients for backgrounds - &.left { - #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001)); - } - &.right { - left: auto; - right: 0; - #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5)); - } - - // Hover/focus state - &:hover, - &:focus { - outline: 0; - color: @carousel-control-color; - text-decoration: none; - .opacity(.9); - } - - // Toggles - .icon-prev, - .icon-next, - .glyphicon-chevron-left, - .glyphicon-chevron-right { - position: absolute; - top: 50%; - margin-top: -10px; - z-index: 5; - display: inline-block; - } - .icon-prev, - .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; - } - .icon-next, - .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; - } - .icon-prev, - .icon-next { - width: 20px; - height: 20px; - line-height: 1; - font-family: serif; - } - - - .icon-prev { - &:before { - content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039) - } - } - .icon-next { - &:before { - content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A) - } - } -} - -// Optional indicator pips -// -// Add an unordered list with the following class and add a list item for each -// slide your carousel holds. - -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - margin-left: -30%; - padding-left: 0; - list-style: none; - text-align: center; - - li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - border: 1px solid @carousel-indicator-border-color; - border-radius: 10px; - cursor: pointer; - - // IE8-9 hack for event handling - // - // Internet Explorer 8-9 does not support clicks on elements without a set - // `background-color`. We cannot use `filter` since that's not viewed as a - // background color by the browser. Thus, a hack is needed. - // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer - // - // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we - // set alpha transparency for the best results possible. - background-color: #000 \9; // IE8 - background-color: rgba(0,0,0,0); // IE9 - } - .active { - margin: 0; - width: 12px; - height: 12px; - background-color: @carousel-indicator-active-bg; - } -} - -// Optional captions -// ----------------------------- -// Hidden by default for smaller viewports -.carousel-caption { - position: absolute; - left: 15%; - right: 15%; - bottom: 20px; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: @carousel-caption-color; - text-align: center; - text-shadow: @carousel-text-shadow; - & .btn { - text-shadow: none; // No shadow for button elements in carousel-caption - } -} - - -// Scale up controls for tablets and up -@media screen and (min-width: @screen-sm-min) { - - // Scale up the controls a smidge - .carousel-control { - .glyphicon-chevron-left, - .glyphicon-chevron-right, - .icon-prev, - .icon-next { - width: 30px; - height: 30px; - margin-top: -15px; - font-size: 30px; - } - .glyphicon-chevron-left, - .icon-prev { - margin-left: -15px; - } - .glyphicon-chevron-right, - .icon-next { - margin-right: -15px; - } - } - - // Show and left align the captions - .carousel-caption { - left: 20%; - right: 20%; - padding-bottom: 30px; - } - - // Move up the indicators - .carousel-indicators { - bottom: 20px; - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/close.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/close.less deleted file mode 100644 index 6d5bfe087..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/close.less +++ /dev/null @@ -1,34 +0,0 @@ -// -// Close icons -// -------------------------------------------------- - - -.close { - float: right; - font-size: (@font-size-base * 1.5); - font-weight: @close-font-weight; - line-height: 1; - color: @close-color; - text-shadow: @close-text-shadow; - .opacity(.2); - - &:hover, - &:focus { - color: @close-color; - text-decoration: none; - cursor: pointer; - .opacity(.5); - } - - // Additional properties for button version - // iOS requires the button element instead of an anchor tag. - // If you want the anchor version, it requires `href="#"`. - // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile - button& { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/code.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/code.less deleted file mode 100644 index a08b4d48c..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/code.less +++ /dev/null @@ -1,69 +0,0 @@ -// -// Code (inline and block) -// -------------------------------------------------- - - -// Inline and block code styles -code, -kbd, -pre, -samp { - font-family: @font-family-monospace; -} - -// Inline code -code { - padding: 2px 4px; - font-size: 90%; - color: @code-color; - background-color: @code-bg; - border-radius: @border-radius-base; -} - -// User input typically entered via keyboard -kbd { - padding: 2px 4px; - font-size: 90%; - color: @kbd-color; - background-color: @kbd-bg; - border-radius: @border-radius-small; - box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); - - kbd { - padding: 0; - font-size: 100%; - font-weight: bold; - box-shadow: none; - } -} - -// Blocks of code -pre { - display: block; - padding: ((@line-height-computed - 1) / 2); - margin: 0 0 (@line-height-computed / 2); - font-size: (@font-size-base - 1); // 14px to 13px - line-height: @line-height-base; - word-break: break-all; - word-wrap: break-word; - color: @pre-color; - background-color: @pre-bg; - border: 1px solid @pre-border-color; - border-radius: @border-radius-base; - - // Account for some code outputs that place code tags in pre tags - code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; - } -} - -// Enable scrollable blocks of code -.pre-scrollable { - max-height: @pre-scrollable-max-height; - overflow-y: scroll; -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/component-animations.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/component-animations.less deleted file mode 100644 index 0bcee910a..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/component-animations.less +++ /dev/null @@ -1,33 +0,0 @@ -// -// Component animations -// -------------------------------------------------- - -// Heads up! -// -// We don't use the `.opacity()` mixin here since it causes a bug with text -// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. - -.fade { - opacity: 0; - .transition(opacity .15s linear); - &.in { - opacity: 1; - } -} - -.collapse { - display: none; - - &.in { display: block; } - tr&.in { display: table-row; } - tbody&.in { display: table-row-group; } -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - .transition-property(~"height, visibility"); - .transition-duration(.35s); - .transition-timing-function(ease); -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/dropdowns.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/dropdowns.less deleted file mode 100644 index f6876c1a9..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/dropdowns.less +++ /dev/null @@ -1,216 +0,0 @@ -// -// Dropdown menus -// -------------------------------------------------- - - -// Dropdown arrow/caret -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: @caret-width-base dashed; - border-top: @caret-width-base solid ~"\9"; // IE8 - border-right: @caret-width-base solid transparent; - border-left: @caret-width-base solid transparent; -} - -// The dropdown wrapper (div) -.dropup, -.dropdown { - position: relative; -} - -// Prevent the focus on the dropdown toggle when closing dropdowns -.dropdown-toggle:focus { - outline: 0; -} - -// The dropdown menu (ul) -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: @zindex-dropdown; - display: none; // none by default, but block on "open" of the menu - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; // override default ul - list-style: none; - font-size: @font-size-base; - text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer) - background-color: @dropdown-bg; - border: 1px solid @dropdown-fallback-border; // IE8 fallback - border: 1px solid @dropdown-border; - border-radius: @border-radius-base; - .box-shadow(0 6px 12px rgba(0,0,0,.175)); - background-clip: padding-box; - - // Aligns the dropdown menu to right - // - // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]` - &.pull-right { - right: 0; - left: auto; - } - - // Dividers (basically an hr) within the dropdown - .divider { - .nav-divider(@dropdown-divider-bg); - } - - // Links within the dropdown menu - > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: normal; - line-height: @line-height-base; - color: @dropdown-link-color; - white-space: nowrap; // prevent links from randomly breaking onto new lines - } -} - -// Hover/Focus state -.dropdown-menu > li > a { - &:hover, - &:focus { - text-decoration: none; - color: @dropdown-link-hover-color; - background-color: @dropdown-link-hover-bg; - } -} - -// Active state -.dropdown-menu > .active > a { - &, - &:hover, - &:focus { - color: @dropdown-link-active-color; - text-decoration: none; - outline: 0; - background-color: @dropdown-link-active-bg; - } -} - -// Disabled state -// -// Gray out text and ensure the hover/focus state remains gray - -.dropdown-menu > .disabled > a { - &, - &:hover, - &:focus { - color: @dropdown-link-disabled-color; - } - - // Nuke hover/focus effects - &:hover, - &:focus { - text-decoration: none; - background-color: transparent; - background-image: none; // Remove CSS gradient - .reset-filter(); - cursor: @cursor-disabled; - } -} - -// Open state for the dropdown -.open { - // Show the menu - > .dropdown-menu { - display: block; - } - - // Remove the outline when :focus is triggered - > a { - outline: 0; - } -} - -// Menu positioning -// -// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown -// menu with the parent. -.dropdown-menu-right { - left: auto; // Reset the default from `.dropdown-menu` - right: 0; -} -// With v3, we enabled auto-flipping if you have a dropdown within a right -// aligned nav component. To enable the undoing of that, we provide an override -// to restore the default dropdown menu alignment. -// -// This is only for left-aligning a dropdown menu within a `.navbar-right` or -// `.pull-right` nav component. -.dropdown-menu-left { - left: 0; - right: auto; -} - -// Dropdown section headers -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: @font-size-small; - line-height: @line-height-base; - color: @dropdown-header-color; - white-space: nowrap; // as with > li > a -} - -// Backdrop to catch body clicks on mobile, etc. -.dropdown-backdrop { - position: fixed; - left: 0; - right: 0; - bottom: 0; - top: 0; - z-index: (@zindex-dropdown - 10); -} - -// Right aligned dropdowns -.pull-right > .dropdown-menu { - right: 0; - left: auto; -} - -// Allow for dropdowns to go bottom up (aka, dropup-menu) -// -// Just add .dropup after the standard .dropdown class and you're set, bro. -// TODO: abstract this so that the navbar fixed styles are not placed here? - -.dropup, -.navbar-fixed-bottom .dropdown { - // Reverse the caret - .caret { - border-top: 0; - border-bottom: @caret-width-base dashed; - border-bottom: @caret-width-base solid ~"\9"; // IE8 - content: ""; - } - // Different positioning for bottom up menu - .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; - } -} - - -// Component alignment -// -// Reiterate per navbar.less and the modified component alignment there. - -@media (min-width: @grid-float-breakpoint) { - .navbar-right { - .dropdown-menu { - .dropdown-menu-right(); - } - // Necessary for overrides of the default right aligned menu. - // Will remove come v4 in all likelihood. - .dropdown-menu-left { - .dropdown-menu-left(); - } - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/forms.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/forms.less deleted file mode 100644 index 910c1e13b..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/forms.less +++ /dev/null @@ -1,613 +0,0 @@ -// -// Forms -// -------------------------------------------------- - - -// Normalize non-controls -// -// Restyle and baseline non-control form elements. - -fieldset { - padding: 0; - margin: 0; - border: 0; - // Chrome and Firefox set a `min-width: min-content;` on fieldsets, - // so we reset that to ensure it behaves more like a standard block element. - // See https://github.com/twbs/bootstrap/issues/12359. - min-width: 0; -} - -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: @line-height-computed; - font-size: (@font-size-base * 1.5); - line-height: inherit; - color: @legend-color; - border: 0; - border-bottom: 1px solid @legend-border-color; -} - -label { - display: inline-block; - max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141) - margin-bottom: 5px; - font-weight: bold; -} - - -// Normalize form controls -// -// While most of our form styles require extra classes, some basic normalization -// is required to ensure optimum display with or without those classes to better -// address browser inconsistencies. - -// Override content-box in Normalize (* isn't specific enough) -input[type="search"] { - .box-sizing(border-box); -} - -// Position radios and checkboxes better -input[type="radio"], -input[type="checkbox"] { - margin: 4px 0 0; - margin-top: 1px \9; // IE8-9 - line-height: normal; -} - -input[type="file"] { - display: block; -} - -// Make range inputs behave like textual form controls -input[type="range"] { - display: block; - width: 100%; -} - -// Make multiple select elements height not fixed -select[multiple], -select[size] { - height: auto; -} - -// Focus for file, radio, and checkbox -input[type="file"]:focus, -input[type="radio"]:focus, -input[type="checkbox"]:focus { - .tab-focus(); -} - -// Adjust output element -output { - display: block; - padding-top: (@padding-base-vertical + 1); - font-size: @font-size-base; - line-height: @line-height-base; - color: @input-color; -} - - -// Common form controls -// -// Shared size and type resets for form controls. Apply `.form-control` to any -// of the following form controls: -// -// select -// textarea -// input[type="text"] -// input[type="password"] -// input[type="datetime"] -// input[type="datetime-local"] -// input[type="date"] -// input[type="month"] -// input[type="time"] -// input[type="week"] -// input[type="number"] -// input[type="email"] -// input[type="url"] -// input[type="search"] -// input[type="tel"] -// input[type="color"] - -.form-control { - display: block; - width: 100%; - height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border) - padding: @padding-base-vertical @padding-base-horizontal; - font-size: @font-size-base; - line-height: @line-height-base; - color: @input-color; - background-color: @input-bg; - background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214 - border: 1px solid @input-border; - border-radius: @input-border-radius; // Note: This has no effect on s in CSS. - .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); - .transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s"); - - // Customize the `:focus` state to imitate native WebKit styles. - .form-control-focus(); - - // Placeholder - .placeholder(); - - // Unstyle the caret on `` -// element gets special love because it's special, and that's a fact! -.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) { - height: @input-height; - padding: @padding-vertical @padding-horizontal; - font-size: @font-size; - line-height: @line-height; - border-radius: @border-radius; - - select& { - height: @input-height; - line-height: @input-height; - } - - textarea&, - select[multiple]& { - height: auto; - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/gradients.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/gradients.less deleted file mode 100644 index 0b88a89cc..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/gradients.less +++ /dev/null @@ -1,59 +0,0 @@ -// Gradients - -#gradient { - - // Horizontal gradient, from left to right - // - // Creates two color stops, start and end, by specifying a color and position for each color stop. - // Color stops are not available in IE9 and below. - .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) { - background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+ - background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12 - background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ - background-repeat: repeat-x; - filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down - } - - // Vertical gradient, from top to bottom - // - // Creates two color stops, start and end, by specifying a color and position for each color stop. - // Color stops are not available in IE9 and below. - .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) { - background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+ - background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12 - background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ - background-repeat: repeat-x; - filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down - } - - .directional(@start-color: #555; @end-color: #333; @deg: 45deg) { - background-repeat: repeat-x; - background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+ - background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12 - background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ - } - .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) { - background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color); - background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color); - background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color); - background-repeat: no-repeat; - filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback - } - .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) { - background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color); - background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color); - background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color); - background-repeat: no-repeat; - filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback - } - .radial(@inner-color: #555; @outer-color: #333) { - background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color); - background-image: radial-gradient(circle, @inner-color, @outer-color); - background-repeat: no-repeat; - } - .striped(@color: rgba(255,255,255,.15); @angle: 45deg) { - background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent); - background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent); - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/grid-framework.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/grid-framework.less deleted file mode 100644 index 8c23eed24..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/grid-framework.less +++ /dev/null @@ -1,91 +0,0 @@ -// Framework grid generation -// -// Used only by Bootstrap to generate the correct number of grid classes given -// any value of `@grid-columns`. - -.make-grid-columns() { - // Common styles for all sizes of grid columns, widths 1-12 - .col(@index) { // initial - @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}"; - .col((@index + 1), @item); - } - .col(@index, @list) when (@index =< @grid-columns) { // general; "=<" isn't a typo - @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}"; - .col((@index + 1), ~"@{list}, @{item}"); - } - .col(@index, @list) when (@index > @grid-columns) { // terminal - @{list} { - position: relative; - // Prevent columns from collapsing when empty - min-height: 1px; - // Inner gutter via padding - padding-left: ceil((@grid-gutter-width / 2)); - padding-right: floor((@grid-gutter-width / 2)); - } - } - .col(1); // kickstart it -} - -.float-grid-columns(@class) { - .col(@index) { // initial - @item: ~".col-@{class}-@{index}"; - .col((@index + 1), @item); - } - .col(@index, @list) when (@index =< @grid-columns) { // general - @item: ~".col-@{class}-@{index}"; - .col((@index + 1), ~"@{list}, @{item}"); - } - .col(@index, @list) when (@index > @grid-columns) { // terminal - @{list} { - float: left; - } - } - .col(1); // kickstart it -} - -.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) { - .col-@{class}-@{index} { - width: percentage((@index / @grid-columns)); - } -} -.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) { - .col-@{class}-push-@{index} { - left: percentage((@index / @grid-columns)); - } -} -.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) { - .col-@{class}-push-0 { - left: auto; - } -} -.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) { - .col-@{class}-pull-@{index} { - right: percentage((@index / @grid-columns)); - } -} -.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) { - .col-@{class}-pull-0 { - right: auto; - } -} -.calc-grid-column(@index, @class, @type) when (@type = offset) { - .col-@{class}-offset-@{index} { - margin-left: percentage((@index / @grid-columns)); - } -} - -// Basic looping in LESS -.loop-grid-columns(@index, @class, @type) when (@index >= 0) { - .calc-grid-column(@index, @class, @type); - // next iteration - .loop-grid-columns((@index - 1), @class, @type); -} - -// Create grid for specific class -.make-grid(@class) { - .float-grid-columns(@class); - .loop-grid-columns(@grid-columns, @class, width); - .loop-grid-columns(@grid-columns, @class, pull); - .loop-grid-columns(@grid-columns, @class, push); - .loop-grid-columns(@grid-columns, @class, offset); -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/grid.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/grid.less deleted file mode 100644 index f144c15f4..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/grid.less +++ /dev/null @@ -1,122 +0,0 @@ -// Grid system -// -// Generate semantic grid columns with these mixins. - -// Centered container element -.container-fixed(@gutter: @grid-gutter-width) { - margin-right: auto; - margin-left: auto; - padding-left: (@gutter / 2); - padding-right: (@gutter / 2); - &:extend(.clearfix all); -} - -// Creates a wrapper for a series of columns -.make-row(@gutter: @grid-gutter-width) { - margin-left: ceil((@gutter / -2)); - margin-right: floor((@gutter / -2)); - &:extend(.clearfix all); -} - -// Generate the extra small columns -.make-xs-column(@columns; @gutter: @grid-gutter-width) { - position: relative; - float: left; - width: percentage((@columns / @grid-columns)); - min-height: 1px; - padding-left: (@gutter / 2); - padding-right: (@gutter / 2); -} -.make-xs-column-offset(@columns) { - margin-left: percentage((@columns / @grid-columns)); -} -.make-xs-column-push(@columns) { - left: percentage((@columns / @grid-columns)); -} -.make-xs-column-pull(@columns) { - right: percentage((@columns / @grid-columns)); -} - -// Generate the small columns -.make-sm-column(@columns; @gutter: @grid-gutter-width) { - position: relative; - min-height: 1px; - padding-left: (@gutter / 2); - padding-right: (@gutter / 2); - - @media (min-width: @screen-sm-min) { - float: left; - width: percentage((@columns / @grid-columns)); - } -} -.make-sm-column-offset(@columns) { - @media (min-width: @screen-sm-min) { - margin-left: percentage((@columns / @grid-columns)); - } -} -.make-sm-column-push(@columns) { - @media (min-width: @screen-sm-min) { - left: percentage((@columns / @grid-columns)); - } -} -.make-sm-column-pull(@columns) { - @media (min-width: @screen-sm-min) { - right: percentage((@columns / @grid-columns)); - } -} - -// Generate the medium columns -.make-md-column(@columns; @gutter: @grid-gutter-width) { - position: relative; - min-height: 1px; - padding-left: (@gutter / 2); - padding-right: (@gutter / 2); - - @media (min-width: @screen-md-min) { - float: left; - width: percentage((@columns / @grid-columns)); - } -} -.make-md-column-offset(@columns) { - @media (min-width: @screen-md-min) { - margin-left: percentage((@columns / @grid-columns)); - } -} -.make-md-column-push(@columns) { - @media (min-width: @screen-md-min) { - left: percentage((@columns / @grid-columns)); - } -} -.make-md-column-pull(@columns) { - @media (min-width: @screen-md-min) { - right: percentage((@columns / @grid-columns)); - } -} - -// Generate the large columns -.make-lg-column(@columns; @gutter: @grid-gutter-width) { - position: relative; - min-height: 1px; - padding-left: (@gutter / 2); - padding-right: (@gutter / 2); - - @media (min-width: @screen-lg-min) { - float: left; - width: percentage((@columns / @grid-columns)); - } -} -.make-lg-column-offset(@columns) { - @media (min-width: @screen-lg-min) { - margin-left: percentage((@columns / @grid-columns)); - } -} -.make-lg-column-push(@columns) { - @media (min-width: @screen-lg-min) { - left: percentage((@columns / @grid-columns)); - } -} -.make-lg-column-pull(@columns) { - @media (min-width: @screen-lg-min) { - right: percentage((@columns / @grid-columns)); - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/hide-text.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/hide-text.less deleted file mode 100644 index bc7011850..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/hide-text.less +++ /dev/null @@ -1,21 +0,0 @@ -// CSS image replacement -// -// Heads up! v3 launched with only `.hide-text()`, but per our pattern for -// mixins being reused as classes with the same name, this doesn't hold up. As -// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. -// -// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 - -// Deprecated as of v3.0.1 (will be removed in v4) -.hide-text() { - font: ~"0/0" a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -// New mixin to use as of v3.0.1 -.text-hide() { - .hide-text(); -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/image.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/image.less deleted file mode 100644 index f233cb3e1..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/image.less +++ /dev/null @@ -1,33 +0,0 @@ -// Image Mixins -// - Responsive image -// - Retina image - - -// Responsive image -// -// Keep images from scaling beyond the width of their parents. -.img-responsive(@display: block) { - display: @display; - max-width: 100%; // Part 1: Set a maximum relative to the parent - height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching -} - - -// Retina image -// -// Short retina mixin for setting background-image and -size. Note that the -// spelling of `min--moz-device-pixel-ratio` is intentional. -.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) { - background-image: url("@{file-1x}"); - - @media - only screen and (-webkit-min-device-pixel-ratio: 2), - only screen and ( min--moz-device-pixel-ratio: 2), - only screen and ( -o-min-device-pixel-ratio: 2/1), - only screen and ( min-device-pixel-ratio: 2), - only screen and ( min-resolution: 192dpi), - only screen and ( min-resolution: 2dppx) { - background-image: url("@{file-2x}"); - background-size: @width-1x @height-1x; - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/labels.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/labels.less deleted file mode 100644 index 9f7a67ee3..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/labels.less +++ /dev/null @@ -1,12 +0,0 @@ -// Labels - -.label-variant(@color) { - background-color: @color; - - &[href] { - &:hover, - &:focus { - background-color: darken(@color, 10%); - } - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/list-group.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/list-group.less deleted file mode 100644 index 03aa19069..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/list-group.less +++ /dev/null @@ -1,30 +0,0 @@ -// List Groups - -.list-group-item-variant(@state; @background; @color) { - .list-group-item-@{state} { - color: @color; - background-color: @background; - - a&, - button& { - color: @color; - - .list-group-item-heading { - color: inherit; - } - - &:hover, - &:focus { - color: @color; - background-color: darken(@background, 5%); - } - &.active, - &.active:hover, - &.active:focus { - color: #fff; - background-color: @color; - border-color: @color; - } - } - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/nav-divider.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/nav-divider.less deleted file mode 100644 index feb1e9ed0..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/nav-divider.less +++ /dev/null @@ -1,10 +0,0 @@ -// Horizontal dividers -// -// Dividers (basically an hr) within dropdowns and nav lists - -.nav-divider(@color: #e5e5e5) { - height: 1px; - margin: ((@line-height-computed / 2) - 1) 0; - overflow: hidden; - background-color: @color; -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/nav-vertical-align.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/nav-vertical-align.less deleted file mode 100644 index d458c7861..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/nav-vertical-align.less +++ /dev/null @@ -1,9 +0,0 @@ -// Navbar vertical align -// -// Vertically center elements in the navbar. -// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. - -.navbar-vertical-align(@element-height) { - margin-top: ((@navbar-height - @element-height) / 2); - margin-bottom: ((@navbar-height - @element-height) / 2); -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/opacity.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/opacity.less deleted file mode 100644 index 33ed25ce6..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/opacity.less +++ /dev/null @@ -1,8 +0,0 @@ -// Opacity - -.opacity(@opacity) { - opacity: @opacity; - // IE8 filter - @opacity-ie: (@opacity * 100); - filter: ~"alpha(opacity=@{opacity-ie})"; -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/pagination.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/pagination.less deleted file mode 100644 index 618804f2d..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/pagination.less +++ /dev/null @@ -1,24 +0,0 @@ -// Pagination - -.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) { - > li { - > a, - > span { - padding: @padding-vertical @padding-horizontal; - font-size: @font-size; - line-height: @line-height; - } - &:first-child { - > a, - > span { - .border-left-radius(@border-radius); - } - } - &:last-child { - > a, - > span { - .border-right-radius(@border-radius); - } - } - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/panels.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/panels.less deleted file mode 100644 index 49ee10d4a..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/panels.less +++ /dev/null @@ -1,24 +0,0 @@ -// Panels - -.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { - border-color: @border; - - & > .panel-heading { - color: @heading-text-color; - background-color: @heading-bg-color; - border-color: @heading-border; - - + .panel-collapse > .panel-body { - border-top-color: @border; - } - .badge { - color: @heading-bg-color; - background-color: @heading-text-color; - } - } - & > .panel-footer { - + .panel-collapse > .panel-body { - border-bottom-color: @border; - } - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/progress-bar.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/progress-bar.less deleted file mode 100644 index f07996a34..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/progress-bar.less +++ /dev/null @@ -1,10 +0,0 @@ -// Progress bars - -.progress-bar-variant(@color) { - background-color: @color; - - // Deprecated parent class requirement as of v3.2.0 - .progress-striped & { - #gradient > .striped(); - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/reset-filter.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/reset-filter.less deleted file mode 100644 index 68cdb5e18..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/reset-filter.less +++ /dev/null @@ -1,8 +0,0 @@ -// Reset filters for IE -// -// When you need to remove a gradient background, do not forget to use this to reset -// the IE filter for IE9 and below. - -.reset-filter() { - filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/reset-text.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/reset-text.less deleted file mode 100644 index 58dd4d19b..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/reset-text.less +++ /dev/null @@ -1,18 +0,0 @@ -.reset-text() { - font-family: @font-family-base; - // We deliberately do NOT reset font-size. - font-style: normal; - font-weight: normal; - letter-spacing: normal; - line-break: auto; - line-height: @line-height-base; - text-align: left; // Fallback for where `start` is not supported - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - white-space: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/resize.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/resize.less deleted file mode 100644 index 3acd3afdb..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/resize.less +++ /dev/null @@ -1,6 +0,0 @@ -// Resize anything - -.resizable(@direction) { - resize: @direction; // Options: horizontal, vertical, both - overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/responsive-visibility.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/responsive-visibility.less deleted file mode 100644 index ecf1e979f..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/responsive-visibility.less +++ /dev/null @@ -1,15 +0,0 @@ -// Responsive utilities - -// -// More easily include all the states for responsive-utilities.less. -.responsive-visibility() { - display: block !important; - table& { display: table !important; } - tr& { display: table-row !important; } - th&, - td& { display: table-cell !important; } -} - -.responsive-invisibility() { - display: none !important; -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/size.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/size.less deleted file mode 100644 index a8be65089..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/size.less +++ /dev/null @@ -1,10 +0,0 @@ -// Sizing shortcuts - -.size(@width; @height) { - width: @width; - height: @height; -} - -.square(@size) { - .size(@size; @size); -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/tab-focus.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/tab-focus.less deleted file mode 100644 index 1f1f05ab0..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/tab-focus.less +++ /dev/null @@ -1,9 +0,0 @@ -// WebKit-style focus - -.tab-focus() { - // Default - outline: thin dotted; - // WebKit - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/table-row.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/table-row.less deleted file mode 100644 index 0f287f1a8..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/table-row.less +++ /dev/null @@ -1,28 +0,0 @@ -// Tables - -.table-row-variant(@state; @background) { - // Exact selectors below required to override `.table-striped` and prevent - // inheritance to nested tables. - .table > thead > tr, - .table > tbody > tr, - .table > tfoot > tr { - > td.@{state}, - > th.@{state}, - &.@{state} > td, - &.@{state} > th { - background-color: @background; - } - } - - // Hover states for `.table-hover` - // Note: this is not available for cells or rows within `thead` or `tfoot`. - .table-hover > tbody > tr { - > td.@{state}:hover, - > th.@{state}:hover, - &.@{state}:hover > td, - &:hover > .@{state}, - &.@{state}:hover > th { - background-color: darken(@background, 5%); - } - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/text-emphasis.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/text-emphasis.less deleted file mode 100644 index 9e8a77a69..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/text-emphasis.less +++ /dev/null @@ -1,9 +0,0 @@ -// Typography - -.text-emphasis-variant(@color) { - color: @color; - a&:hover, - a&:focus { - color: darken(@color, 10%); - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/text-overflow.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/text-overflow.less deleted file mode 100644 index c11ad2fb7..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/text-overflow.less +++ /dev/null @@ -1,8 +0,0 @@ -// Text overflow -// Requires inline-block or block for proper styling - -.text-overflow() { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/vendor-prefixes.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/vendor-prefixes.less deleted file mode 100644 index afd3331c3..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/mixins/vendor-prefixes.less +++ /dev/null @@ -1,227 +0,0 @@ -// Vendor Prefixes -// -// All vendor mixins are deprecated as of v3.2.0 due to the introduction of -// Autoprefixer in our Gruntfile. They will be removed in v4. - -// - Animations -// - Backface visibility -// - Box shadow -// - Box sizing -// - Content columns -// - Hyphens -// - Placeholder text -// - Transformations -// - Transitions -// - User Select - - -// Animations -.animation(@animation) { - -webkit-animation: @animation; - -o-animation: @animation; - animation: @animation; -} -.animation-name(@name) { - -webkit-animation-name: @name; - animation-name: @name; -} -.animation-duration(@duration) { - -webkit-animation-duration: @duration; - animation-duration: @duration; -} -.animation-timing-function(@timing-function) { - -webkit-animation-timing-function: @timing-function; - animation-timing-function: @timing-function; -} -.animation-delay(@delay) { - -webkit-animation-delay: @delay; - animation-delay: @delay; -} -.animation-iteration-count(@iteration-count) { - -webkit-animation-iteration-count: @iteration-count; - animation-iteration-count: @iteration-count; -} -.animation-direction(@direction) { - -webkit-animation-direction: @direction; - animation-direction: @direction; -} -.animation-fill-mode(@fill-mode) { - -webkit-animation-fill-mode: @fill-mode; - animation-fill-mode: @fill-mode; -} - -// Backface visibility -// Prevent browsers from flickering when using CSS 3D transforms. -// Default value is `visible`, but can be changed to `hidden` - -.backface-visibility(@visibility){ - -webkit-backface-visibility: @visibility; - -moz-backface-visibility: @visibility; - backface-visibility: @visibility; -} - -// Drop shadows -// -// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's -// supported browsers that have box shadow capabilities now support it. - -.box-shadow(@shadow) { - -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1 - box-shadow: @shadow; -} - -// Box sizing -.box-sizing(@boxmodel) { - -webkit-box-sizing: @boxmodel; - -moz-box-sizing: @boxmodel; - box-sizing: @boxmodel; -} - -// CSS3 Content Columns -.content-columns(@column-count; @column-gap: @grid-gutter-width) { - -webkit-column-count: @column-count; - -moz-column-count: @column-count; - column-count: @column-count; - -webkit-column-gap: @column-gap; - -moz-column-gap: @column-gap; - column-gap: @column-gap; -} - -// Optional hyphenation -.hyphens(@mode: auto) { - word-wrap: break-word; - -webkit-hyphens: @mode; - -moz-hyphens: @mode; - -ms-hyphens: @mode; // IE10+ - -o-hyphens: @mode; - hyphens: @mode; -} - -// Placeholder text -.placeholder(@color: @input-color-placeholder) { - // Firefox - &::-moz-placeholder { - color: @color; - opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526 - } - &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+ - &::-webkit-input-placeholder { color: @color; } // Safari and Chrome -} - -// Transformations -.scale(@ratio) { - -webkit-transform: scale(@ratio); - -ms-transform: scale(@ratio); // IE9 only - -o-transform: scale(@ratio); - transform: scale(@ratio); -} -.scale(@ratioX; @ratioY) { - -webkit-transform: scale(@ratioX, @ratioY); - -ms-transform: scale(@ratioX, @ratioY); // IE9 only - -o-transform: scale(@ratioX, @ratioY); - transform: scale(@ratioX, @ratioY); -} -.scaleX(@ratio) { - -webkit-transform: scaleX(@ratio); - -ms-transform: scaleX(@ratio); // IE9 only - -o-transform: scaleX(@ratio); - transform: scaleX(@ratio); -} -.scaleY(@ratio) { - -webkit-transform: scaleY(@ratio); - -ms-transform: scaleY(@ratio); // IE9 only - -o-transform: scaleY(@ratio); - transform: scaleY(@ratio); -} -.skew(@x; @y) { - -webkit-transform: skewX(@x) skewY(@y); - -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+ - -o-transform: skewX(@x) skewY(@y); - transform: skewX(@x) skewY(@y); -} -.translate(@x; @y) { - -webkit-transform: translate(@x, @y); - -ms-transform: translate(@x, @y); // IE9 only - -o-transform: translate(@x, @y); - transform: translate(@x, @y); -} -.translate3d(@x; @y; @z) { - -webkit-transform: translate3d(@x, @y, @z); - transform: translate3d(@x, @y, @z); -} -.rotate(@degrees) { - -webkit-transform: rotate(@degrees); - -ms-transform: rotate(@degrees); // IE9 only - -o-transform: rotate(@degrees); - transform: rotate(@degrees); -} -.rotateX(@degrees) { - -webkit-transform: rotateX(@degrees); - -ms-transform: rotateX(@degrees); // IE9 only - -o-transform: rotateX(@degrees); - transform: rotateX(@degrees); -} -.rotateY(@degrees) { - -webkit-transform: rotateY(@degrees); - -ms-transform: rotateY(@degrees); // IE9 only - -o-transform: rotateY(@degrees); - transform: rotateY(@degrees); -} -.perspective(@perspective) { - -webkit-perspective: @perspective; - -moz-perspective: @perspective; - perspective: @perspective; -} -.perspective-origin(@perspective) { - -webkit-perspective-origin: @perspective; - -moz-perspective-origin: @perspective; - perspective-origin: @perspective; -} -.transform-origin(@origin) { - -webkit-transform-origin: @origin; - -moz-transform-origin: @origin; - -ms-transform-origin: @origin; // IE9 only - transform-origin: @origin; -} - - -// Transitions - -.transition(@transition) { - -webkit-transition: @transition; - -o-transition: @transition; - transition: @transition; -} -.transition-property(@transition-property) { - -webkit-transition-property: @transition-property; - transition-property: @transition-property; -} -.transition-delay(@transition-delay) { - -webkit-transition-delay: @transition-delay; - transition-delay: @transition-delay; -} -.transition-duration(@transition-duration) { - -webkit-transition-duration: @transition-duration; - transition-duration: @transition-duration; -} -.transition-timing-function(@timing-function) { - -webkit-transition-timing-function: @timing-function; - transition-timing-function: @timing-function; -} -.transition-transform(@transition) { - -webkit-transition: -webkit-transform @transition; - -moz-transition: -moz-transform @transition; - -o-transition: -o-transform @transition; - transition: transform @transition; -} - - -// User select -// For selecting text on the page - -.user-select(@select) { - -webkit-user-select: @select; - -moz-user-select: @select; - -ms-user-select: @select; // IE10+ - user-select: @select; -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/modals.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/modals.less deleted file mode 100644 index 1de622050..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/modals.less +++ /dev/null @@ -1,150 +0,0 @@ -// -// Modals -// -------------------------------------------------- - -// .modal-open - body class for killing the scroll -// .modal - container to scroll within -// .modal-dialog - positioning shell for the actual modal -// .modal-content - actual modal w/ bg and corners and shit - -// Kill the scroll on the body -.modal-open { - overflow: hidden; -} - -// Container that the modal scrolls within -.modal { - display: none; - overflow: hidden; - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: @zindex-modal; - -webkit-overflow-scrolling: touch; - - // Prevent Chrome on Windows from adding a focus outline. For details, see - // https://github.com/twbs/bootstrap/pull/10951. - outline: 0; - - // When fading in the modal, animate it to slide down - &.fade .modal-dialog { - .translate(0, -25%); - .transition-transform(~"0.3s ease-out"); - } - &.in .modal-dialog { .translate(0, 0) } -} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} - -// Shell div to position the modal with bottom padding -.modal-dialog { - position: relative; - width: auto; - margin: 10px; -} - -// Actual modal -.modal-content { - position: relative; - background-color: @modal-content-bg; - border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc) - border: 1px solid @modal-content-border-color; - border-radius: @border-radius-large; - .box-shadow(0 3px 9px rgba(0,0,0,.5)); - background-clip: padding-box; - // Remove focus outline from opened modal - outline: 0; -} - -// Modal background -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: @zindex-modal-background; - background-color: @modal-backdrop-bg; - // Fade for backdrop - &.fade { .opacity(0); } - &.in { .opacity(@modal-backdrop-opacity); } -} - -// Modal header -// Top section of the modal w/ title and dismiss -.modal-header { - padding: @modal-title-padding; - border-bottom: 1px solid @modal-header-border-color; - min-height: (@modal-title-padding + @modal-title-line-height); -} -// Close icon -.modal-header .close { - margin-top: -2px; -} - -// Title text within header -.modal-title { - margin: 0; - line-height: @modal-title-line-height; -} - -// Modal body -// Where all modal content resides (sibling of .modal-header and .modal-footer) -.modal-body { - position: relative; - padding: @modal-inner-padding; -} - -// Footer (for actions) -.modal-footer { - padding: @modal-inner-padding; - text-align: right; // right align buttons - border-top: 1px solid @modal-footer-border-color; - &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons - - // Properly space out buttons - .btn + .btn { - margin-left: 5px; - margin-bottom: 0; // account for input[type="submit"] which gets the bottom margin like all other inputs - } - // but override that for button groups - .btn-group .btn + .btn { - margin-left: -1px; - } - // and override it for block buttons as well - .btn-block + .btn-block { - margin-left: 0; - } -} - -// Measure scrollbar width for padding body during modal show/hide -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} - -// Scale up the modal -@media (min-width: @screen-sm-min) { - // Automatically set modal's width for larger viewports - .modal-dialog { - width: @modal-md; - margin: 30px auto; - } - .modal-content { - .box-shadow(0 5px 15px rgba(0,0,0,.5)); - } - - // Modal sizes - .modal-sm { width: @modal-sm; } -} - -@media (min-width: @screen-md-min) { - .modal-lg { width: @modal-lg; } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/navbar.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/navbar.less deleted file mode 100644 index 6d751bb9c..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/navbar.less +++ /dev/null @@ -1,660 +0,0 @@ -// -// Navbars -// -------------------------------------------------- - - -// Wrapper and base class -// -// Provide a static navbar from which we expand to create full-width, fixed, and -// other navbar variations. - -.navbar { - position: relative; - min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode) - margin-bottom: @navbar-margin-bottom; - border: 1px solid transparent; - - // Prevent floats from breaking the navbar - &:extend(.clearfix all); - - @media (min-width: @grid-float-breakpoint) { - border-radius: @navbar-border-radius; - } -} - - -// Navbar heading -// -// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy -// styling of responsive aspects. - -.navbar-header { - &:extend(.clearfix all); - - @media (min-width: @grid-float-breakpoint) { - float: left; - } -} - - -// Navbar collapse (body) -// -// Group your navbar content into this for easy collapsing and expanding across -// various device sizes. By default, this content is collapsed when <768px, but -// will expand past that for a horizontal display. -// -// To start (on mobile devices) the navbar links, forms, and buttons are stacked -// vertically and include a `max-height` to overflow in case you have too much -// content for the user's viewport. - -.navbar-collapse { - overflow-x: visible; - padding-right: @navbar-padding-horizontal; - padding-left: @navbar-padding-horizontal; - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255,255,255,.1); - &:extend(.clearfix all); - -webkit-overflow-scrolling: touch; - - &.in { - overflow-y: auto; - } - - @media (min-width: @grid-float-breakpoint) { - width: auto; - border-top: 0; - box-shadow: none; - - &.collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; // Override default setting - overflow: visible !important; - } - - &.in { - overflow-y: visible; - } - - // Undo the collapse side padding for navbars with containers to ensure - // alignment of right-aligned contents. - .navbar-fixed-top &, - .navbar-static-top &, - .navbar-fixed-bottom & { - padding-left: 0; - padding-right: 0; - } - } -} - -.navbar-fixed-top, -.navbar-fixed-bottom { - .navbar-collapse { - max-height: @navbar-collapse-max-height; - - @media (max-device-width: @screen-xs-min) and (orientation: landscape) { - max-height: 200px; - } - } -} - - -// Both navbar header and collapse -// -// When a container is present, change the behavior of the header and collapse. - -.container, -.container-fluid { - > .navbar-header, - > .navbar-collapse { - margin-right: -@navbar-padding-horizontal; - margin-left: -@navbar-padding-horizontal; - - @media (min-width: @grid-float-breakpoint) { - margin-right: 0; - margin-left: 0; - } - } -} - - -// -// Navbar alignment options -// -// Display the navbar across the entirety of the page or fixed it to the top or -// bottom of the page. - -// Static top (unfixed, but 100% wide) navbar -.navbar-static-top { - z-index: @zindex-navbar; - border-width: 0 0 1px; - - @media (min-width: @grid-float-breakpoint) { - border-radius: 0; - } -} - -// Fix the top/bottom navbars when screen real estate supports it -.navbar-fixed-top, -.navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: @zindex-navbar-fixed; - - // Undo the rounded corners - @media (min-width: @grid-float-breakpoint) { - border-radius: 0; - } -} -.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; -} -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; // override .navbar defaults - border-width: 1px 0 0; -} - - -// Brand/project name - -.navbar-brand { - float: left; - padding: @navbar-padding-vertical @navbar-padding-horizontal; - font-size: @font-size-large; - line-height: @line-height-computed; - height: @navbar-height; - - &:hover, - &:focus { - text-decoration: none; - } - - > img { - display: block; - } - - @media (min-width: @grid-float-breakpoint) { - .navbar > .container &, - .navbar > .container-fluid & { - margin-left: -@navbar-padding-horizontal; - } - } -} - - -// Navbar toggle -// -// Custom button for toggling the `.navbar-collapse`, powered by the collapse -// JavaScript plugin. - -.navbar-toggle { - position: relative; - float: right; - margin-right: @navbar-padding-horizontal; - padding: 9px 10px; - .navbar-vertical-align(34px); - background-color: transparent; - background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214 - border: 1px solid transparent; - border-radius: @border-radius-base; - - // We remove the `outline` here, but later compensate by attaching `:hover` - // styles to `:focus`. - &:focus { - outline: 0; - } - - // Bars - .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; - } - .icon-bar + .icon-bar { - margin-top: 4px; - } - - @media (min-width: @grid-float-breakpoint) { - display: none; - } -} - - -// Navbar nav links -// -// Builds on top of the `.nav` components with its own modifier class to make -// the nav the full height of the horizontal nav (above 768px). - -.navbar-nav { - margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal; - - > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: @line-height-computed; - } - - @media (max-width: @grid-float-breakpoint-max) { - // Dropdowns get custom display when collapsed - .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - box-shadow: none; - > li > a, - .dropdown-header { - padding: 5px 15px 5px 25px; - } - > li > a { - line-height: @line-height-computed; - &:hover, - &:focus { - background-image: none; - } - } - } - } - - // Uncollapse the nav - @media (min-width: @grid-float-breakpoint) { - float: left; - margin: 0; - - > li { - float: left; - > a { - padding-top: @navbar-padding-vertical; - padding-bottom: @navbar-padding-vertical; - } - } - } -} - - -// Navbar form -// -// Extension of the `.form-inline` with some extra flavor for optimum display in -// our navbars. - -.navbar-form { - margin-left: -@navbar-padding-horizontal; - margin-right: -@navbar-padding-horizontal; - padding: 10px @navbar-padding-horizontal; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1); - .box-shadow(@shadow); - - // Mixin behavior for optimum display - .form-inline(); - - .form-group { - @media (max-width: @grid-float-breakpoint-max) { - margin-bottom: 5px; - - &:last-child { - margin-bottom: 0; - } - } - } - - // Vertically center in expanded, horizontal navbar - .navbar-vertical-align(@input-height-base); - - // Undo 100% width for pull classes - @media (min-width: @grid-float-breakpoint) { - width: auto; - border: 0; - margin-left: 0; - margin-right: 0; - padding-top: 0; - padding-bottom: 0; - .box-shadow(none); - } -} - - -// Dropdown menus - -// Menu position and menu carets -.navbar-nav > li > .dropdown-menu { - margin-top: 0; - .border-top-radius(0); -} -// Menu position and menu caret support for dropups via extra dropup class -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { - margin-bottom: 0; - .border-top-radius(@navbar-border-radius); - .border-bottom-radius(0); -} - - -// Buttons in navbars -// -// Vertically center a button within a navbar (when *not* in a form). - -.navbar-btn { - .navbar-vertical-align(@input-height-base); - - &.btn-sm { - .navbar-vertical-align(@input-height-small); - } - &.btn-xs { - .navbar-vertical-align(22); - } -} - - -// Text in navbars -// -// Add a class to make any element properly align itself vertically within the navbars. - -.navbar-text { - .navbar-vertical-align(@line-height-computed); - - @media (min-width: @grid-float-breakpoint) { - float: left; - margin-left: @navbar-padding-horizontal; - margin-right: @navbar-padding-horizontal; - } -} - - -// Component alignment -// -// Repurpose the pull utilities as their own navbar utilities to avoid specificity -// issues with parents and chaining. Only do this when the navbar is uncollapsed -// though so that navbar contents properly stack and align in mobile. -// -// Declared after the navbar components to ensure more specificity on the margins. - -@media (min-width: @grid-float-breakpoint) { - .navbar-left { .pull-left(); } - .navbar-right { - .pull-right(); - margin-right: -@navbar-padding-horizontal; - - ~ .navbar-right { - margin-right: 0; - } - } -} - - -// Alternate navbars -// -------------------------------------------------- - -// Default navbar -.navbar-default { - background-color: @navbar-default-bg; - border-color: @navbar-default-border; - - .navbar-brand { - color: @navbar-default-brand-color; - &:hover, - &:focus { - color: @navbar-default-brand-hover-color; - background-color: @navbar-default-brand-hover-bg; - } - } - - .navbar-text { - color: @navbar-default-color; - } - - .navbar-nav { - > li > a { - color: @navbar-default-link-color; - - &:hover, - &:focus { - color: @navbar-default-link-hover-color; - background-color: @navbar-default-link-hover-bg; - } - } - > .active > a { - &, - &:hover, - &:focus { - color: @navbar-default-link-active-color; - background-color: @navbar-default-link-active-bg; - } - } - > .disabled > a { - &, - &:hover, - &:focus { - color: @navbar-default-link-disabled-color; - background-color: @navbar-default-link-disabled-bg; - } - } - } - - .navbar-toggle { - border-color: @navbar-default-toggle-border-color; - &:hover, - &:focus { - background-color: @navbar-default-toggle-hover-bg; - } - .icon-bar { - background-color: @navbar-default-toggle-icon-bar-bg; - } - } - - .navbar-collapse, - .navbar-form { - border-color: @navbar-default-border; - } - - // Dropdown menu items - .navbar-nav { - // Remove background color from open dropdown - > .open > a { - &, - &:hover, - &:focus { - background-color: @navbar-default-link-active-bg; - color: @navbar-default-link-active-color; - } - } - - @media (max-width: @grid-float-breakpoint-max) { - // Dropdowns get custom display when collapsed - .open .dropdown-menu { - > li > a { - color: @navbar-default-link-color; - &:hover, - &:focus { - color: @navbar-default-link-hover-color; - background-color: @navbar-default-link-hover-bg; - } - } - > .active > a { - &, - &:hover, - &:focus { - color: @navbar-default-link-active-color; - background-color: @navbar-default-link-active-bg; - } - } - > .disabled > a { - &, - &:hover, - &:focus { - color: @navbar-default-link-disabled-color; - background-color: @navbar-default-link-disabled-bg; - } - } - } - } - } - - - // Links in navbars - // - // Add a class to ensure links outside the navbar nav are colored correctly. - - .navbar-link { - color: @navbar-default-link-color; - &:hover { - color: @navbar-default-link-hover-color; - } - } - - .btn-link { - color: @navbar-default-link-color; - &:hover, - &:focus { - color: @navbar-default-link-hover-color; - } - &[disabled], - fieldset[disabled] & { - &:hover, - &:focus { - color: @navbar-default-link-disabled-color; - } - } - } -} - -// Inverse navbar - -.navbar-inverse { - background-color: @navbar-inverse-bg; - border-color: @navbar-inverse-border; - - .navbar-brand { - color: @navbar-inverse-brand-color; - &:hover, - &:focus { - color: @navbar-inverse-brand-hover-color; - background-color: @navbar-inverse-brand-hover-bg; - } - } - - .navbar-text { - color: @navbar-inverse-color; - } - - .navbar-nav { - > li > a { - color: @navbar-inverse-link-color; - - &:hover, - &:focus { - color: @navbar-inverse-link-hover-color; - background-color: @navbar-inverse-link-hover-bg; - } - } - > .active > a { - &, - &:hover, - &:focus { - color: @navbar-inverse-link-active-color; - background-color: @navbar-inverse-link-active-bg; - } - } - > .disabled > a { - &, - &:hover, - &:focus { - color: @navbar-inverse-link-disabled-color; - background-color: @navbar-inverse-link-disabled-bg; - } - } - } - - // Darken the responsive nav toggle - .navbar-toggle { - border-color: @navbar-inverse-toggle-border-color; - &:hover, - &:focus { - background-color: @navbar-inverse-toggle-hover-bg; - } - .icon-bar { - background-color: @navbar-inverse-toggle-icon-bar-bg; - } - } - - .navbar-collapse, - .navbar-form { - border-color: darken(@navbar-inverse-bg, 7%); - } - - // Dropdowns - .navbar-nav { - > .open > a { - &, - &:hover, - &:focus { - background-color: @navbar-inverse-link-active-bg; - color: @navbar-inverse-link-active-color; - } - } - - @media (max-width: @grid-float-breakpoint-max) { - // Dropdowns get custom display - .open .dropdown-menu { - > .dropdown-header { - border-color: @navbar-inverse-border; - } - .divider { - background-color: @navbar-inverse-border; - } - > li > a { - color: @navbar-inverse-link-color; - &:hover, - &:focus { - color: @navbar-inverse-link-hover-color; - background-color: @navbar-inverse-link-hover-bg; - } - } - > .active > a { - &, - &:hover, - &:focus { - color: @navbar-inverse-link-active-color; - background-color: @navbar-inverse-link-active-bg; - } - } - > .disabled > a { - &, - &:hover, - &:focus { - color: @navbar-inverse-link-disabled-color; - background-color: @navbar-inverse-link-disabled-bg; - } - } - } - } - } - - .navbar-link { - color: @navbar-inverse-link-color; - &:hover { - color: @navbar-inverse-link-hover-color; - } - } - - .btn-link { - color: @navbar-inverse-link-color; - &:hover, - &:focus { - color: @navbar-inverse-link-hover-color; - } - &[disabled], - fieldset[disabled] & { - &:hover, - &:focus { - color: @navbar-inverse-link-disabled-color; - } - } - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/navs.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/navs.less deleted file mode 100644 index a3d11b136..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/navs.less +++ /dev/null @@ -1,242 +0,0 @@ -// -// Navs -// -------------------------------------------------- - - -// Base class -// -------------------------------------------------- - -.nav { - margin-bottom: 0; - padding-left: 0; // Override default ul/ol - list-style: none; - &:extend(.clearfix all); - - > li { - position: relative; - display: block; - - > a { - position: relative; - display: block; - padding: @nav-link-padding; - &:hover, - &:focus { - text-decoration: none; - background-color: @nav-link-hover-bg; - } - } - - // Disabled state sets text to gray and nukes hover/tab effects - &.disabled > a { - color: @nav-disabled-link-color; - - &:hover, - &:focus { - color: @nav-disabled-link-hover-color; - text-decoration: none; - background-color: transparent; - cursor: @cursor-disabled; - } - } - } - - // Open dropdowns - .open > a { - &, - &:hover, - &:focus { - background-color: @nav-link-hover-bg; - border-color: @link-color; - } - } - - // Nav dividers (deprecated with v3.0.1) - // - // This should have been removed in v3 with the dropping of `.nav-list`, but - // we missed it. We don't currently support this anywhere, but in the interest - // of maintaining backward compatibility in case you use it, it's deprecated. - .nav-divider { - .nav-divider(); - } - - // Prevent IE8 from misplacing imgs - // - // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989 - > li > a > img { - max-width: none; - } -} - - -// Tabs -// ------------------------- - -// Give the tabs something to sit on -.nav-tabs { - border-bottom: 1px solid @nav-tabs-border-color; - > li { - float: left; - // Make the list-items overlay the bottom border - margin-bottom: -1px; - - // Actual tabs (as links) - > a { - margin-right: 2px; - line-height: @line-height-base; - border: 1px solid transparent; - border-radius: @border-radius-base @border-radius-base 0 0; - &:hover { - border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color; - } - } - - // Active state, and its :hover to override normal :hover - &.active > a { - &, - &:hover, - &:focus { - color: @nav-tabs-active-link-hover-color; - background-color: @nav-tabs-active-link-hover-bg; - border: 1px solid @nav-tabs-active-link-hover-border-color; - border-bottom-color: transparent; - cursor: default; - } - } - } - // pulling this in mainly for less shorthand - &.nav-justified { - .nav-justified(); - .nav-tabs-justified(); - } -} - - -// Pills -// ------------------------- -.nav-pills { - > li { - float: left; - - // Links rendered as pills - > a { - border-radius: @nav-pills-border-radius; - } - + li { - margin-left: 2px; - } - - // Active state - &.active > a { - &, - &:hover, - &:focus { - color: @nav-pills-active-link-hover-color; - background-color: @nav-pills-active-link-hover-bg; - } - } - } -} - - -// Stacked pills -.nav-stacked { - > li { - float: none; - + li { - margin-top: 2px; - margin-left: 0; // no need for this gap between nav items - } - } -} - - -// Nav variations -// -------------------------------------------------- - -// Justified nav links -// ------------------------- - -.nav-justified { - width: 100%; - - > li { - float: none; - > a { - text-align: center; - margin-bottom: 5px; - } - } - - > .dropdown .dropdown-menu { - top: auto; - left: auto; - } - - @media (min-width: @screen-sm-min) { - > li { - display: table-cell; - width: 1%; - > a { - margin-bottom: 0; - } - } - } -} - -// Move borders to anchors instead of bottom of list -// -// Mixin for adding on top the shared `.nav-justified` styles for our tabs -.nav-tabs-justified { - border-bottom: 0; - - > li > a { - // Override margin from .nav-tabs - margin-right: 0; - border-radius: @border-radius-base; - } - - > .active > a, - > .active > a:hover, - > .active > a:focus { - border: 1px solid @nav-tabs-justified-link-border-color; - } - - @media (min-width: @screen-sm-min) { - > li > a { - border-bottom: 1px solid @nav-tabs-justified-link-border-color; - border-radius: @border-radius-base @border-radius-base 0 0; - } - > .active > a, - > .active > a:hover, - > .active > a:focus { - border-bottom-color: @nav-tabs-justified-active-link-border-color; - } - } -} - - -// Tabbable tabs -// ------------------------- - -// Hide tabbable panes to start, show them when `.active` -.tab-content { - > .tab-pane { - display: none; - } - > .active { - display: block; - } -} - - -// Dropdowns -// ------------------------- - -// Specific dropdowns -.nav-tabs .dropdown-menu { - // make dropdown border overlap tab border - margin-top: -1px; - // Remove the top rounded corners here since there is a hard edge above the menu - .border-top-radius(0); -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/normalize.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/normalize.less deleted file mode 100644 index 9dddf73ad..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/normalize.less +++ /dev/null @@ -1,424 +0,0 @@ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ - -// -// 1. Set default font family to sans-serif. -// 2. Prevent iOS and IE text size adjust after device orientation change, -// without disabling user zoom. -// - -html { - font-family: sans-serif; // 1 - -ms-text-size-adjust: 100%; // 2 - -webkit-text-size-adjust: 100%; // 2 -} - -// -// Remove default margin. -// - -body { - margin: 0; -} - -// HTML5 display definitions -// ========================================================================== - -// -// Correct `block` display not defined for any HTML5 element in IE 8/9. -// Correct `block` display not defined for `details` or `summary` in IE 10/11 -// and Firefox. -// Correct `block` display not defined for `main` in IE 11. -// - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; -} - -// -// 1. Correct `inline-block` display not defined in IE 8/9. -// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. -// - -audio, -canvas, -progress, -video { - display: inline-block; // 1 - vertical-align: baseline; // 2 -} - -// -// Prevent modern browsers from displaying `audio` without controls. -// Remove excess height in iOS 5 devices. -// - -audio:not([controls]) { - display: none; - height: 0; -} - -// -// Address `[hidden]` styling not present in IE 8/9/10. -// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. -// - -[hidden], -template { - display: none; -} - -// Links -// ========================================================================== - -// -// Remove the gray background color from active links in IE 10. -// - -a { - background-color: transparent; -} - -// -// Improve readability of focused elements when they are also in an -// active/hover state. -// - -a:active, -a:hover { - outline: 0; -} - -// Text-level semantics -// ========================================================================== - -// -// Address styling not present in IE 8/9/10/11, Safari, and Chrome. -// - -abbr[title] { - border-bottom: 1px dotted; -} - -// -// Address style set to `bolder` in Firefox 4+, Safari, and Chrome. -// - -b, -strong { - font-weight: bold; -} - -// -// Address styling not present in Safari and Chrome. -// - -dfn { - font-style: italic; -} - -// -// Address variable `h1` font-size and margin within `section` and `article` -// contexts in Firefox 4+, Safari, and Chrome. -// - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -// -// Address styling not present in IE 8/9. -// - -mark { - background: #ff0; - color: #000; -} - -// -// Address inconsistent and variable font size in all browsers. -// - -small { - font-size: 80%; -} - -// -// Prevent `sub` and `sup` affecting `line-height` in all browsers. -// - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sup { - top: -0.5em; -} - -sub { - bottom: -0.25em; -} - -// Embedded content -// ========================================================================== - -// -// Remove border when inside `a` element in IE 8/9/10. -// - -img { - border: 0; -} - -// -// Correct overflow not hidden in IE 9/10/11. -// - -svg:not(:root) { - overflow: hidden; -} - -// Grouping content -// ========================================================================== - -// -// Address margin not present in IE 8/9 and Safari. -// - -figure { - margin: 1em 40px; -} - -// -// Address differences between Firefox and other browsers. -// - -hr { - box-sizing: content-box; - height: 0; -} - -// -// Contain overflow in all browsers. -// - -pre { - overflow: auto; -} - -// -// Address odd `em`-unit font size rendering in all browsers. -// - -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; -} - -// Forms -// ========================================================================== - -// -// Known limitation: by default, Chrome and Safari on OS X allow very limited -// styling of `select`, unless a `border` property is set. -// - -// -// 1. Correct color not being inherited. -// Known issue: affects color of disabled elements. -// 2. Correct font properties not being inherited. -// 3. Address margins set differently in Firefox 4+, Safari, and Chrome. -// - -button, -input, -optgroup, -select, -textarea { - color: inherit; // 1 - font: inherit; // 2 - margin: 0; // 3 -} - -// -// Address `overflow` set to `hidden` in IE 8/9/10/11. -// - -button { - overflow: visible; -} - -// -// Address inconsistent `text-transform` inheritance for `button` and `select`. -// All other form control elements do not inherit `text-transform` values. -// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. -// Correct `select` style inheritance in Firefox. -// - -button, -select { - text-transform: none; -} - -// -// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` -// and `video` controls. -// 2. Correct inability to style clickable `input` types in iOS. -// 3. Improve usability and consistency of cursor style between image-type -// `input` and others. -// - -button, -html input[type="button"], // 1 -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; // 2 - cursor: pointer; // 3 -} - -// -// Re-set default cursor for disabled elements. -// - -button[disabled], -html input[disabled] { - cursor: default; -} - -// -// Remove inner padding and border in Firefox 4+. -// - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} - -// -// Address Firefox 4+ setting `line-height` on `input` using `!important` in -// the UA stylesheet. -// - -input { - line-height: normal; -} - -// -// It's recommended that you don't attempt to style these elements. -// Firefox's implementation doesn't respect box-sizing, padding, or width. -// -// 1. Address box sizing set to `content-box` in IE 8/9/10. -// 2. Remove excess padding in IE 8/9/10. -// - -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; // 1 - padding: 0; // 2 -} - -// -// Fix the cursor style for Chrome's increment/decrement buttons. For certain -// `font-size` values of the `input`, it causes the cursor style of the -// decrement button to change from `default` to `text`. -// - -input[type="number"]::-webkit-inner-spin-button, -input[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -// -// 1. Address `appearance` set to `searchfield` in Safari and Chrome. -// 2. Address `box-sizing` set to `border-box` in Safari and Chrome. -// - -input[type="search"] { - -webkit-appearance: textfield; // 1 - box-sizing: content-box; //2 -} - -// -// Remove inner padding and search cancel button in Safari and Chrome on OS X. -// Safari (but not Chrome) clips the cancel button when the search input has -// padding (and `textfield` appearance). -// - -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -// -// Define consistent border, margin, and padding. -// - -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} - -// -// 1. Correct `color` not being inherited in IE 8/9/10/11. -// 2. Remove padding so people aren't caught out if they zero out fieldsets. -// - -legend { - border: 0; // 1 - padding: 0; // 2 -} - -// -// Remove default vertical scrollbar in IE 8/9/10/11. -// - -textarea { - overflow: auto; -} - -// -// Don't inherit the `font-weight` (applied by a rule above). -// NOTE: the default cannot safely be changed in Chrome and Safari on OS X. -// - -optgroup { - font-weight: bold; -} - -// Tables -// ========================================================================== - -// -// Remove most spacing between table cells. -// - -table { - border-collapse: collapse; - border-spacing: 0; -} - -td, -th { - padding: 0; -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/pager.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/pager.less deleted file mode 100644 index 41abaaadc..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/pager.less +++ /dev/null @@ -1,54 +0,0 @@ -// -// Pager pagination -// -------------------------------------------------- - - -.pager { - padding-left: 0; - margin: @line-height-computed 0; - list-style: none; - text-align: center; - &:extend(.clearfix all); - li { - display: inline; - > a, - > span { - display: inline-block; - padding: 5px 14px; - background-color: @pager-bg; - border: 1px solid @pager-border; - border-radius: @pager-border-radius; - } - - > a:hover, - > a:focus { - text-decoration: none; - background-color: @pager-hover-bg; - } - } - - .next { - > a, - > span { - float: right; - } - } - - .previous { - > a, - > span { - float: left; - } - } - - .disabled { - > a, - > a:hover, - > a:focus, - > span { - color: @pager-disabled-color; - background-color: @pager-bg; - cursor: @cursor-disabled; - } - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/pagination.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/pagination.less deleted file mode 100644 index 31f77aae4..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/pagination.less +++ /dev/null @@ -1,89 +0,0 @@ -// -// Pagination (multiple pages) -// -------------------------------------------------- -.pagination { - display: inline-block; - padding-left: 0; - margin: @line-height-computed 0; - border-radius: @border-radius-base; - - > li { - display: inline; // Remove list-style and block-level defaults - > a, - > span { - position: relative; - float: left; // Collapse white-space - padding: @padding-base-vertical @padding-base-horizontal; - line-height: @line-height-base; - text-decoration: none; - color: @pagination-color; - background-color: @pagination-bg; - border: 1px solid @pagination-border; - margin-left: -1px; - } - &:first-child { - > a, - > span { - margin-left: 0; - .border-left-radius(@border-radius-base); - } - } - &:last-child { - > a, - > span { - .border-right-radius(@border-radius-base); - } - } - } - - > li > a, - > li > span { - &:hover, - &:focus { - z-index: 2; - color: @pagination-hover-color; - background-color: @pagination-hover-bg; - border-color: @pagination-hover-border; - } - } - - > .active > a, - > .active > span { - &, - &:hover, - &:focus { - z-index: 3; - color: @pagination-active-color; - background-color: @pagination-active-bg; - border-color: @pagination-active-border; - cursor: default; - } - } - - > .disabled { - > span, - > span:hover, - > span:focus, - > a, - > a:hover, - > a:focus { - color: @pagination-disabled-color; - background-color: @pagination-disabled-bg; - border-color: @pagination-disabled-border; - cursor: @cursor-disabled; - } - } -} - -// Sizing -// -------------------------------------------------- - -// Large -.pagination-lg { - .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large); -} - -// Small -.pagination-sm { - .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small); -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/panels.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/panels.less deleted file mode 100644 index 425eb5e64..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/panels.less +++ /dev/null @@ -1,271 +0,0 @@ -// -// Panels -// -------------------------------------------------- - - -// Base class -.panel { - margin-bottom: @line-height-computed; - background-color: @panel-bg; - border: 1px solid transparent; - border-radius: @panel-border-radius; - .box-shadow(0 1px 1px rgba(0,0,0,.05)); -} - -// Panel contents -.panel-body { - padding: @panel-body-padding; - &:extend(.clearfix all); -} - -// Optional heading -.panel-heading { - padding: @panel-heading-padding; - border-bottom: 1px solid transparent; - .border-top-radius((@panel-border-radius - 1)); - - > .dropdown .dropdown-toggle { - color: inherit; - } -} - -// Within heading, strip any `h*` tag of its default margins for spacing. -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: ceil((@font-size-base * 1.125)); - color: inherit; - - > a, - > small, - > .small, - > small > a, - > .small > a { - color: inherit; - } -} - -// Optional footer (stays gray in every modifier class) -.panel-footer { - padding: @panel-footer-padding; - background-color: @panel-footer-bg; - border-top: 1px solid @panel-inner-border; - .border-bottom-radius((@panel-border-radius - 1)); -} - - -// List groups in panels -// -// By default, space out list group content from panel headings to account for -// any kind of custom content between the two. - -.panel { - > .list-group, - > .panel-collapse > .list-group { - margin-bottom: 0; - - .list-group-item { - border-width: 1px 0; - border-radius: 0; - } - - // Add border top radius for first one - &:first-child { - .list-group-item:first-child { - border-top: 0; - .border-top-radius((@panel-border-radius - 1)); - } - } - - // Add border bottom radius for last one - &:last-child { - .list-group-item:last-child { - border-bottom: 0; - .border-bottom-radius((@panel-border-radius - 1)); - } - } - } - > .panel-heading + .panel-collapse > .list-group { - .list-group-item:first-child { - .border-top-radius(0); - } - } -} -// Collapse space between when there's no additional content. -.panel-heading + .list-group { - .list-group-item:first-child { - border-top-width: 0; - } -} -.list-group + .panel-footer { - border-top-width: 0; -} - -// Tables in panels -// -// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and -// watch it go full width. - -.panel { - > .table, - > .table-responsive > .table, - > .panel-collapse > .table { - margin-bottom: 0; - - caption { - padding-left: @panel-body-padding; - padding-right: @panel-body-padding; - } - } - // Add border top radius for first one - > .table:first-child, - > .table-responsive:first-child > .table:first-child { - .border-top-radius((@panel-border-radius - 1)); - - > thead:first-child, - > tbody:first-child { - > tr:first-child { - border-top-left-radius: (@panel-border-radius - 1); - border-top-right-radius: (@panel-border-radius - 1); - - td:first-child, - th:first-child { - border-top-left-radius: (@panel-border-radius - 1); - } - td:last-child, - th:last-child { - border-top-right-radius: (@panel-border-radius - 1); - } - } - } - } - // Add border bottom radius for last one - > .table:last-child, - > .table-responsive:last-child > .table:last-child { - .border-bottom-radius((@panel-border-radius - 1)); - - > tbody:last-child, - > tfoot:last-child { - > tr:last-child { - border-bottom-left-radius: (@panel-border-radius - 1); - border-bottom-right-radius: (@panel-border-radius - 1); - - td:first-child, - th:first-child { - border-bottom-left-radius: (@panel-border-radius - 1); - } - td:last-child, - th:last-child { - border-bottom-right-radius: (@panel-border-radius - 1); - } - } - } - } - > .panel-body + .table, - > .panel-body + .table-responsive, - > .table + .panel-body, - > .table-responsive + .panel-body { - border-top: 1px solid @table-border-color; - } - > .table > tbody:first-child > tr:first-child th, - > .table > tbody:first-child > tr:first-child td { - border-top: 0; - } - > .table-bordered, - > .table-responsive > .table-bordered { - border: 0; - > thead, - > tbody, - > tfoot { - > tr { - > th:first-child, - > td:first-child { - border-left: 0; - } - > th:last-child, - > td:last-child { - border-right: 0; - } - } - } - > thead, - > tbody { - > tr:first-child { - > td, - > th { - border-bottom: 0; - } - } - } - > tbody, - > tfoot { - > tr:last-child { - > td, - > th { - border-bottom: 0; - } - } - } - } - > .table-responsive { - border: 0; - margin-bottom: 0; - } -} - - -// Collapsable panels (aka, accordion) -// -// Wrap a series of panels in `.panel-group` to turn them into an accordion with -// the help of our collapse JavaScript plugin. - -.panel-group { - margin-bottom: @line-height-computed; - - // Tighten up margin so it's only between panels - .panel { - margin-bottom: 0; - border-radius: @panel-border-radius; - - + .panel { - margin-top: 5px; - } - } - - .panel-heading { - border-bottom: 0; - - + .panel-collapse > .panel-body, - + .panel-collapse > .list-group { - border-top: 1px solid @panel-inner-border; - } - } - - .panel-footer { - border-top: 0; - + .panel-collapse .panel-body { - border-bottom: 1px solid @panel-inner-border; - } - } -} - - -// Contextual variations -.panel-default { - .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border); -} -.panel-primary { - .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border); -} -.panel-success { - .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border); -} -.panel-info { - .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border); -} -.panel-warning { - .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border); -} -.panel-danger { - .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border); -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/popovers.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/popovers.less deleted file mode 100644 index 3a62a6455..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/popovers.less +++ /dev/null @@ -1,131 +0,0 @@ -// -// Popovers -// -------------------------------------------------- - - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: @zindex-popover; - display: none; - max-width: @popover-max-width; - padding: 1px; - // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element. - // So reset our font and text properties to avoid inheriting weird values. - .reset-text(); - font-size: @font-size-base; - - background-color: @popover-bg; - background-clip: padding-box; - border: 1px solid @popover-fallback-border-color; - border: 1px solid @popover-border-color; - border-radius: @border-radius-large; - .box-shadow(0 5px 10px rgba(0,0,0,.2)); - - // Offset the popover to account for the popover arrow - &.top { margin-top: -@popover-arrow-width; } - &.right { margin-left: @popover-arrow-width; } - &.bottom { margin-top: @popover-arrow-width; } - &.left { margin-left: -@popover-arrow-width; } -} - -.popover-title { - margin: 0; // reset heading margin - padding: 8px 14px; - font-size: @font-size-base; - background-color: @popover-title-bg; - border-bottom: 1px solid darken(@popover-title-bg, 5%); - border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0; -} - -.popover-content { - padding: 9px 14px; -} - -// Arrows -// -// .arrow is outer, .arrow:after is inner - -.popover > .arrow { - &, - &:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; - } -} -.popover > .arrow { - border-width: @popover-arrow-outer-width; -} -.popover > .arrow:after { - border-width: @popover-arrow-width; - content: ""; -} - -.popover { - &.top > .arrow { - left: 50%; - margin-left: -@popover-arrow-outer-width; - border-bottom-width: 0; - border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback - border-top-color: @popover-arrow-outer-color; - bottom: -@popover-arrow-outer-width; - &:after { - content: " "; - bottom: 1px; - margin-left: -@popover-arrow-width; - border-bottom-width: 0; - border-top-color: @popover-arrow-color; - } - } - &.right > .arrow { - top: 50%; - left: -@popover-arrow-outer-width; - margin-top: -@popover-arrow-outer-width; - border-left-width: 0; - border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback - border-right-color: @popover-arrow-outer-color; - &:after { - content: " "; - left: 1px; - bottom: -@popover-arrow-width; - border-left-width: 0; - border-right-color: @popover-arrow-color; - } - } - &.bottom > .arrow { - left: 50%; - margin-left: -@popover-arrow-outer-width; - border-top-width: 0; - border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback - border-bottom-color: @popover-arrow-outer-color; - top: -@popover-arrow-outer-width; - &:after { - content: " "; - top: 1px; - margin-left: -@popover-arrow-width; - border-top-width: 0; - border-bottom-color: @popover-arrow-color; - } - } - - &.left > .arrow { - top: 50%; - right: -@popover-arrow-outer-width; - margin-top: -@popover-arrow-outer-width; - border-right-width: 0; - border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback - border-left-color: @popover-arrow-outer-color; - &:after { - content: " "; - right: 1px; - border-right-width: 0; - border-left-color: @popover-arrow-color; - bottom: -@popover-arrow-width; - } - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/print.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/print.less deleted file mode 100644 index 66e54ab48..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/print.less +++ /dev/null @@ -1,101 +0,0 @@ -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ - -// ========================================================================== -// Print styles. -// Inlined to avoid the additional HTTP request: h5bp.com/r -// ========================================================================== - -@media print { - *, - *:before, - *:after { - background: transparent !important; - color: #000 !important; // Black prints faster: h5bp.com/s - box-shadow: none !important; - text-shadow: none !important; - } - - a, - a:visited { - text-decoration: underline; - } - - a[href]:after { - content: " (" attr(href) ")"; - } - - abbr[title]:after { - content: " (" attr(title) ")"; - } - - // Don't show links that are fragment identifiers, - // or use the `javascript:` pseudo protocol - a[href^="#"]:after, - a[href^="javascript:"]:after { - content: ""; - } - - pre, - blockquote { - border: 1px solid #999; - page-break-inside: avoid; - } - - thead { - display: table-header-group; // h5bp.com/t - } - - tr, - img { - page-break-inside: avoid; - } - - img { - max-width: 100% !important; - } - - p, - h2, - h3 { - orphans: 3; - widows: 3; - } - - h2, - h3 { - page-break-after: avoid; - } - - // Bootstrap specific changes start - - // Bootstrap components - .navbar { - display: none; - } - .btn, - .dropup > .btn { - > .caret { - border-top-color: #000 !important; - } - } - .label { - border: 1px solid #000; - } - - .table { - border-collapse: collapse !important; - - td, - th { - background-color: #fff !important; - } - } - .table-bordered { - th, - td { - border: 1px solid #ddd !important; - } - } - - // Bootstrap specific changes end -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/progress-bars.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/progress-bars.less deleted file mode 100644 index 8868a1fee..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/progress-bars.less +++ /dev/null @@ -1,87 +0,0 @@ -// -// Progress bars -// -------------------------------------------------- - - -// Bar animations -// ------------------------- - -// WebKit -@-webkit-keyframes progress-bar-stripes { - from { background-position: 40px 0; } - to { background-position: 0 0; } -} - -// Spec and IE10+ -@keyframes progress-bar-stripes { - from { background-position: 40px 0; } - to { background-position: 0 0; } -} - - -// Bar itself -// ------------------------- - -// Outer container -.progress { - overflow: hidden; - height: @line-height-computed; - margin-bottom: @line-height-computed; - background-color: @progress-bg; - border-radius: @progress-border-radius; - .box-shadow(inset 0 1px 2px rgba(0,0,0,.1)); -} - -// Bar of progress -.progress-bar { - float: left; - width: 0%; - height: 100%; - font-size: @font-size-small; - line-height: @line-height-computed; - color: @progress-bar-color; - text-align: center; - background-color: @progress-bar-bg; - .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15)); - .transition(width .6s ease); -} - -// Striped bars -// -// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the -// `.progress-bar-striped` class, which you just add to an existing -// `.progress-bar`. -.progress-striped .progress-bar, -.progress-bar-striped { - #gradient > .striped(); - background-size: 40px 40px; -} - -// Call animation for the active one -// -// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the -// `.progress-bar.active` approach. -.progress.active .progress-bar, -.progress-bar.active { - .animation(progress-bar-stripes 2s linear infinite); -} - - -// Variations -// ------------------------- - -.progress-bar-success { - .progress-bar-variant(@progress-bar-success-bg); -} - -.progress-bar-info { - .progress-bar-variant(@progress-bar-info-bg); -} - -.progress-bar-warning { - .progress-bar-variant(@progress-bar-warning-bg); -} - -.progress-bar-danger { - .progress-bar-variant(@progress-bar-danger-bg); -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/responsive-embed.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/responsive-embed.less deleted file mode 100644 index 080a5118f..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/responsive-embed.less +++ /dev/null @@ -1,35 +0,0 @@ -// Embeds responsive -// -// Credit: Nicolas Gallagher and SUIT CSS. - -.embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden; - - .embed-responsive-item, - iframe, - embed, - object, - video { - position: absolute; - top: 0; - left: 0; - bottom: 0; - height: 100%; - width: 100%; - border: 0; - } -} - -// Modifier class for 16:9 aspect ratio -.embed-responsive-16by9 { - padding-bottom: 56.25%; -} - -// Modifier class for 4:3 aspect ratio -.embed-responsive-4by3 { - padding-bottom: 75%; -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/responsive-utilities.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/responsive-utilities.less deleted file mode 100644 index b1db31d7b..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/responsive-utilities.less +++ /dev/null @@ -1,194 +0,0 @@ -// -// Responsive: Utility classes -// -------------------------------------------------- - - -// IE10 in Windows (Phone) 8 -// -// Support for responsive views via media queries is kind of borked in IE10, for -// Surface/desktop in split view and for Windows Phone 8. This particular fix -// must be accompanied by a snippet of JavaScript to sniff the user agent and -// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at -// our Getting Started page for more information on this bug. -// -// For more information, see the following: -// -// Issue: https://github.com/twbs/bootstrap/issues/10497 -// Docs: http://getbootstrap.com/getting-started/#support-ie10-width -// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/ -// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/ - -@-ms-viewport { - width: device-width; -} - - -// Visibility utilities -// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0 -.visible-xs, -.visible-sm, -.visible-md, -.visible-lg { - .responsive-invisibility(); -} - -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; -} - -.visible-xs { - @media (max-width: @screen-xs-max) { - .responsive-visibility(); - } -} -.visible-xs-block { - @media (max-width: @screen-xs-max) { - display: block !important; - } -} -.visible-xs-inline { - @media (max-width: @screen-xs-max) { - display: inline !important; - } -} -.visible-xs-inline-block { - @media (max-width: @screen-xs-max) { - display: inline-block !important; - } -} - -.visible-sm { - @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) { - .responsive-visibility(); - } -} -.visible-sm-block { - @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) { - display: block !important; - } -} -.visible-sm-inline { - @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) { - display: inline !important; - } -} -.visible-sm-inline-block { - @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) { - display: inline-block !important; - } -} - -.visible-md { - @media (min-width: @screen-md-min) and (max-width: @screen-md-max) { - .responsive-visibility(); - } -} -.visible-md-block { - @media (min-width: @screen-md-min) and (max-width: @screen-md-max) { - display: block !important; - } -} -.visible-md-inline { - @media (min-width: @screen-md-min) and (max-width: @screen-md-max) { - display: inline !important; - } -} -.visible-md-inline-block { - @media (min-width: @screen-md-min) and (max-width: @screen-md-max) { - display: inline-block !important; - } -} - -.visible-lg { - @media (min-width: @screen-lg-min) { - .responsive-visibility(); - } -} -.visible-lg-block { - @media (min-width: @screen-lg-min) { - display: block !important; - } -} -.visible-lg-inline { - @media (min-width: @screen-lg-min) { - display: inline !important; - } -} -.visible-lg-inline-block { - @media (min-width: @screen-lg-min) { - display: inline-block !important; - } -} - -.hidden-xs { - @media (max-width: @screen-xs-max) { - .responsive-invisibility(); - } -} -.hidden-sm { - @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) { - .responsive-invisibility(); - } -} -.hidden-md { - @media (min-width: @screen-md-min) and (max-width: @screen-md-max) { - .responsive-invisibility(); - } -} -.hidden-lg { - @media (min-width: @screen-lg-min) { - .responsive-invisibility(); - } -} - - -// Print utilities -// -// Media queries are placed on the inside to be mixin-friendly. - -// Note: Deprecated .visible-print as of v3.2.0 -.visible-print { - .responsive-invisibility(); - - @media print { - .responsive-visibility(); - } -} -.visible-print-block { - display: none !important; - - @media print { - display: block !important; - } -} -.visible-print-inline { - display: none !important; - - @media print { - display: inline !important; - } -} -.visible-print-inline-block { - display: none !important; - - @media print { - display: inline-block !important; - } -} - -.hidden-print { - @media print { - .responsive-invisibility(); - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/scaffolding.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/scaffolding.less deleted file mode 100644 index 1929bfc5c..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/scaffolding.less +++ /dev/null @@ -1,161 +0,0 @@ -// -// Scaffolding -// -------------------------------------------------- - - -// Reset the box-sizing -// -// Heads up! This reset may cause conflicts with some third-party widgets. -// For recommendations on resolving such conflicts, see -// http://getbootstrap.com/getting-started/#third-box-sizing -* { - .box-sizing(border-box); -} -*:before, -*:after { - .box-sizing(border-box); -} - - -// Body reset - -html { - font-size: 10px; - -webkit-tap-highlight-color: rgba(0,0,0,0); -} - -body { - font-family: @font-family-base; - font-size: @font-size-base; - line-height: @line-height-base; - color: @text-color; - background-color: @body-bg; -} - -// Reset fonts for relevant elements -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - - -// Links - -a { - color: @link-color; - text-decoration: none; - - &:hover, - &:focus { - color: @link-hover-color; - text-decoration: @link-hover-decoration; - } - - &:focus { - .tab-focus(); - } -} - - -// Figures -// -// We reset this here because previously Normalize had no `figure` margins. This -// ensures we don't break anyone's use of the element. - -figure { - margin: 0; -} - - -// Images - -img { - vertical-align: middle; -} - -// Responsive images (ensure images don't scale beyond their parents) -.img-responsive { - .img-responsive(); -} - -// Rounded corners -.img-rounded { - border-radius: @border-radius-large; -} - -// Image thumbnails -// -// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`. -.img-thumbnail { - padding: @thumbnail-padding; - line-height: @line-height-base; - background-color: @thumbnail-bg; - border: 1px solid @thumbnail-border; - border-radius: @thumbnail-border-radius; - .transition(all .2s ease-in-out); - - // Keep them at most 100% wide - .img-responsive(inline-block); -} - -// Perfect circle -.img-circle { - border-radius: 50%; // set radius in percents -} - - -// Horizontal rules - -hr { - margin-top: @line-height-computed; - margin-bottom: @line-height-computed; - border: 0; - border-top: 1px solid @hr-border; -} - - -// Only display content to screen readers -// -// See: http://a11yproject.com/posts/how-to-hide-content/ - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - margin: -1px; - padding: 0; - overflow: hidden; - clip: rect(0,0,0,0); - border: 0; -} - -// Use in conjunction with .sr-only to only display content when it's focused. -// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 -// Credit: HTML5 Boilerplate - -.sr-only-focusable { - &:active, - &:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; - } -} - - -// iOS "clickable elements" fix for role="button" -// -// Fixes "clickability" issue (and more generally, the firing of events such as focus as well) -// for traditionally non-focusable elements with role="button" -// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile - -[role="button"] { - cursor: pointer; -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/tables.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/tables.less deleted file mode 100644 index 2242c0368..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/tables.less +++ /dev/null @@ -1,234 +0,0 @@ -// -// Tables -// -------------------------------------------------- - - -table { - background-color: @table-bg; -} -caption { - padding-top: @table-cell-padding; - padding-bottom: @table-cell-padding; - color: @text-muted; - text-align: left; -} -th { - text-align: left; -} - - -// Baseline styles - -.table { - width: 100%; - max-width: 100%; - margin-bottom: @line-height-computed; - // Cells - > thead, - > tbody, - > tfoot { - > tr { - > th, - > td { - padding: @table-cell-padding; - line-height: @line-height-base; - vertical-align: top; - border-top: 1px solid @table-border-color; - } - } - } - // Bottom align for column headings - > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid @table-border-color; - } - // Remove top border from thead by default - > caption + thead, - > colgroup + thead, - > thead:first-child { - > tr:first-child { - > th, - > td { - border-top: 0; - } - } - } - // Account for multiple tbody instances - > tbody + tbody { - border-top: 2px solid @table-border-color; - } - - // Nesting - .table { - background-color: @body-bg; - } -} - - -// Condensed table w/ half padding - -.table-condensed { - > thead, - > tbody, - > tfoot { - > tr { - > th, - > td { - padding: @table-condensed-cell-padding; - } - } - } -} - - -// Bordered version -// -// Add borders all around the table and between all the columns. - -.table-bordered { - border: 1px solid @table-border-color; - > thead, - > tbody, - > tfoot { - > tr { - > th, - > td { - border: 1px solid @table-border-color; - } - } - } - > thead > tr { - > th, - > td { - border-bottom-width: 2px; - } - } -} - - -// Zebra-striping -// -// Default zebra-stripe styles (alternating gray and transparent backgrounds) - -.table-striped { - > tbody > tr:nth-of-type(odd) { - background-color: @table-bg-accent; - } -} - - -// Hover effect -// -// Placed here since it has to come after the potential zebra striping - -.table-hover { - > tbody > tr:hover { - background-color: @table-bg-hover; - } -} - - -// Table cell sizing -// -// Reset default table behavior - -table col[class*="col-"] { - position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623) - float: none; - display: table-column; -} -table { - td, - th { - &[class*="col-"] { - position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623) - float: none; - display: table-cell; - } - } -} - - -// Table backgrounds -// -// Exact selectors below required to override `.table-striped` and prevent -// inheritance to nested tables. - -// Generate the contextual variants -.table-row-variant(active; @table-bg-active); -.table-row-variant(success; @state-success-bg); -.table-row-variant(info; @state-info-bg); -.table-row-variant(warning; @state-warning-bg); -.table-row-variant(danger; @state-danger-bg); - - -// Responsive tables -// -// Wrap your tables in `.table-responsive` and we'll make them mobile friendly -// by enabling horizontal scrolling. Only applies <768px. Everything above that -// will display normally. - -.table-responsive { - overflow-x: auto; - min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837) - - @media screen and (max-width: @screen-xs-max) { - width: 100%; - margin-bottom: (@line-height-computed * 0.75); - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid @table-border-color; - - // Tighten up spacing - > .table { - margin-bottom: 0; - - // Ensure the content doesn't wrap - > thead, - > tbody, - > tfoot { - > tr { - > th, - > td { - white-space: nowrap; - } - } - } - } - - // Special overrides for the bordered tables - > .table-bordered { - border: 0; - - // Nuke the appropriate borders so that the parent can handle them - > thead, - > tbody, - > tfoot { - > tr { - > th:first-child, - > td:first-child { - border-left: 0; - } - > th:last-child, - > td:last-child { - border-right: 0; - } - } - } - - // Only nuke the last row's bottom-border in `tbody` and `tfoot` since - // chances are there will be only one `tr` in a `thead` and that would - // remove the border altogether. - > tbody, - > tfoot { - > tr:last-child { - > th, - > td { - border-bottom: 0; - } - } - } - - } - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/theme.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/theme.less deleted file mode 100644 index 8371872b0..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/theme.less +++ /dev/null @@ -1,291 +0,0 @@ -/*! - * Bootstrap v3.3.5 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ - -// -// Load core variables and mixins -// -------------------------------------------------- - -@import "variables.less"; -@import "mixins.less"; - - -// -// Buttons -// -------------------------------------------------- - -// Common styles -.btn-default, -.btn-primary, -.btn-success, -.btn-info, -.btn-warning, -.btn-danger { - text-shadow: 0 -1px 0 rgba(0,0,0,.2); - @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075); - .box-shadow(@shadow); - - // Reset the shadow - &:active, - &.active { - .box-shadow(inset 0 3px 5px rgba(0,0,0,.125)); - } - - &.disabled, - &[disabled], - fieldset[disabled] & { - .box-shadow(none); - } - - .badge { - text-shadow: none; - } -} - -// Mixin for generating new styles -.btn-styles(@btn-color: #555) { - #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%)); - .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620 - background-repeat: repeat-x; - border-color: darken(@btn-color, 14%); - - &:hover, - &:focus { - background-color: darken(@btn-color, 12%); - background-position: 0 -15px; - } - - &:active, - &.active { - background-color: darken(@btn-color, 12%); - border-color: darken(@btn-color, 14%); - } - - &.disabled, - &[disabled], - fieldset[disabled] & { - &, - &:hover, - &:focus, - &.focus, - &:active, - &.active { - background-color: darken(@btn-color, 12%); - background-image: none; - } - } -} - -// Common styles -.btn { - // Remove the gradient for the pressed/active state - &:active, - &.active { - background-image: none; - } -} - -// Apply the mixin to the buttons -.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; } -.btn-primary { .btn-styles(@btn-primary-bg); } -.btn-success { .btn-styles(@btn-success-bg); } -.btn-info { .btn-styles(@btn-info-bg); } -.btn-warning { .btn-styles(@btn-warning-bg); } -.btn-danger { .btn-styles(@btn-danger-bg); } - - -// -// Images -// -------------------------------------------------- - -.thumbnail, -.img-thumbnail { - .box-shadow(0 1px 2px rgba(0,0,0,.075)); -} - - -// -// Dropdowns -// -------------------------------------------------- - -.dropdown-menu > li > a:hover, -.dropdown-menu > li > a:focus { - #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%)); - background-color: darken(@dropdown-link-hover-bg, 5%); -} -.dropdown-menu > .active > a, -.dropdown-menu > .active > a:hover, -.dropdown-menu > .active > a:focus { - #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%)); - background-color: darken(@dropdown-link-active-bg, 5%); -} - - -// -// Navbar -// -------------------------------------------------- - -// Default navbar -.navbar-default { - #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg); - .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered - border-radius: @navbar-border-radius; - @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075); - .box-shadow(@shadow); - - .navbar-nav > .open > a, - .navbar-nav > .active > a { - #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%)); - .box-shadow(inset 0 3px 9px rgba(0,0,0,.075)); - } -} -.navbar-brand, -.navbar-nav > li > a { - text-shadow: 0 1px 0 rgba(255,255,255,.25); -} - -// Inverted navbar -.navbar-inverse { - #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg); - .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257 - border-radius: @navbar-border-radius; - .navbar-nav > .open > a, - .navbar-nav > .active > a { - #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%)); - .box-shadow(inset 0 3px 9px rgba(0,0,0,.25)); - } - - .navbar-brand, - .navbar-nav > li > a { - text-shadow: 0 -1px 0 rgba(0,0,0,.25); - } -} - -// Undo rounded corners in static and fixed navbars -.navbar-static-top, -.navbar-fixed-top, -.navbar-fixed-bottom { - border-radius: 0; -} - -// Fix active state of dropdown items in collapsed mode -@media (max-width: @grid-float-breakpoint-max) { - .navbar .navbar-nav .open .dropdown-menu > .active > a { - &, - &:hover, - &:focus { - color: #fff; - #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%)); - } - } -} - - -// -// Alerts -// -------------------------------------------------- - -// Common styles -.alert { - text-shadow: 0 1px 0 rgba(255,255,255,.2); - @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05); - .box-shadow(@shadow); -} - -// Mixin for generating new styles -.alert-styles(@color) { - #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%)); - border-color: darken(@color, 15%); -} - -// Apply the mixin to the alerts -.alert-success { .alert-styles(@alert-success-bg); } -.alert-info { .alert-styles(@alert-info-bg); } -.alert-warning { .alert-styles(@alert-warning-bg); } -.alert-danger { .alert-styles(@alert-danger-bg); } - - -// -// Progress bars -// -------------------------------------------------- - -// Give the progress background some depth -.progress { - #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg) -} - -// Mixin for generating new styles -.progress-bar-styles(@color) { - #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%)); -} - -// Apply the mixin to the progress bars -.progress-bar { .progress-bar-styles(@progress-bar-bg); } -.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); } -.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); } -.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); } -.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); } - -// Reset the striped class because our mixins don't do multiple gradients and -// the above custom styles override the new `.progress-bar-striped` in v3.2.0. -.progress-bar-striped { - #gradient > .striped(); -} - - -// -// List groups -// -------------------------------------------------- - -.list-group { - border-radius: @border-radius-base; - .box-shadow(0 1px 2px rgba(0,0,0,.075)); -} -.list-group-item.active, -.list-group-item.active:hover, -.list-group-item.active:focus { - text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%); - #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%)); - border-color: darken(@list-group-active-border, 7.5%); - - .badge { - text-shadow: none; - } -} - - -// -// Panels -// -------------------------------------------------- - -// Common styles -.panel { - .box-shadow(0 1px 2px rgba(0,0,0,.05)); -} - -// Mixin for generating new styles -.panel-heading-styles(@color) { - #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%)); -} - -// Apply the mixin to the panel headings only -.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); } -.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); } -.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); } -.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); } -.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); } -.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); } - - -// -// Wells -// -------------------------------------------------- - -.well { - #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg); - border-color: darken(@well-bg, 10%); - @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1); - .box-shadow(@shadow); -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/thumbnails.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/thumbnails.less deleted file mode 100644 index 0713e67d0..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/thumbnails.less +++ /dev/null @@ -1,36 +0,0 @@ -// -// Thumbnails -// -------------------------------------------------- - - -// Mixin and adjust the regular image class -.thumbnail { - display: block; - padding: @thumbnail-padding; - margin-bottom: @line-height-computed; - line-height: @line-height-base; - background-color: @thumbnail-bg; - border: 1px solid @thumbnail-border; - border-radius: @thumbnail-border-radius; - .transition(border .2s ease-in-out); - - > img, - a > img { - &:extend(.img-responsive); - margin-left: auto; - margin-right: auto; - } - - // Add a hover state for linked versions only - a&:hover, - a&:focus, - a&.active { - border-color: @link-color; - } - - // Image captions - .caption { - padding: @thumbnail-caption-padding; - color: @thumbnail-caption-color; - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/tooltip.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/tooltip.less deleted file mode 100644 index b48d63e07..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/tooltip.less +++ /dev/null @@ -1,101 +0,0 @@ -// -// Tooltips -// -------------------------------------------------- - - -// Base class -.tooltip { - position: absolute; - z-index: @zindex-tooltip; - display: block; - // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element. - // So reset our font and text properties to avoid inheriting weird values. - .reset-text(); - font-size: @font-size-small; - - .opacity(0); - - &.in { .opacity(@tooltip-opacity); } - &.top { margin-top: -3px; padding: @tooltip-arrow-width 0; } - &.right { margin-left: 3px; padding: 0 @tooltip-arrow-width; } - &.bottom { margin-top: 3px; padding: @tooltip-arrow-width 0; } - &.left { margin-left: -3px; padding: 0 @tooltip-arrow-width; } -} - -// Wrapper for the tooltip content -.tooltip-inner { - max-width: @tooltip-max-width; - padding: 3px 8px; - color: @tooltip-color; - text-align: center; - background-color: @tooltip-bg; - border-radius: @border-radius-base; -} - -// Arrows -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1 -.tooltip { - &.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -@tooltip-arrow-width; - border-width: @tooltip-arrow-width @tooltip-arrow-width 0; - border-top-color: @tooltip-arrow-color; - } - &.top-left .tooltip-arrow { - bottom: 0; - right: @tooltip-arrow-width; - margin-bottom: -@tooltip-arrow-width; - border-width: @tooltip-arrow-width @tooltip-arrow-width 0; - border-top-color: @tooltip-arrow-color; - } - &.top-right .tooltip-arrow { - bottom: 0; - left: @tooltip-arrow-width; - margin-bottom: -@tooltip-arrow-width; - border-width: @tooltip-arrow-width @tooltip-arrow-width 0; - border-top-color: @tooltip-arrow-color; - } - &.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -@tooltip-arrow-width; - border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0; - border-right-color: @tooltip-arrow-color; - } - &.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -@tooltip-arrow-width; - border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width; - border-left-color: @tooltip-arrow-color; - } - &.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -@tooltip-arrow-width; - border-width: 0 @tooltip-arrow-width @tooltip-arrow-width; - border-bottom-color: @tooltip-arrow-color; - } - &.bottom-left .tooltip-arrow { - top: 0; - right: @tooltip-arrow-width; - margin-top: -@tooltip-arrow-width; - border-width: 0 @tooltip-arrow-width @tooltip-arrow-width; - border-bottom-color: @tooltip-arrow-color; - } - &.bottom-right .tooltip-arrow { - top: 0; - left: @tooltip-arrow-width; - margin-top: -@tooltip-arrow-width; - border-width: 0 @tooltip-arrow-width @tooltip-arrow-width; - border-bottom-color: @tooltip-arrow-color; - } -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/type.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/type.less deleted file mode 100644 index 0d4fee484..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/type.less +++ /dev/null @@ -1,302 +0,0 @@ -// -// Typography -// -------------------------------------------------- - - -// Headings -// ------------------------- - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - font-family: @headings-font-family; - font-weight: @headings-font-weight; - line-height: @headings-line-height; - color: @headings-color; - - small, - .small { - font-weight: normal; - line-height: 1; - color: @headings-small-color; - } -} - -h1, .h1, -h2, .h2, -h3, .h3 { - margin-top: @line-height-computed; - margin-bottom: (@line-height-computed / 2); - - small, - .small { - font-size: 65%; - } -} -h4, .h4, -h5, .h5, -h6, .h6 { - margin-top: (@line-height-computed / 2); - margin-bottom: (@line-height-computed / 2); - - small, - .small { - font-size: 75%; - } -} - -h1, .h1 { font-size: @font-size-h1; } -h2, .h2 { font-size: @font-size-h2; } -h3, .h3 { font-size: @font-size-h3; } -h4, .h4 { font-size: @font-size-h4; } -h5, .h5 { font-size: @font-size-h5; } -h6, .h6 { font-size: @font-size-h6; } - - -// Body text -// ------------------------- - -p { - margin: 0 0 (@line-height-computed / 2); -} - -.lead { - margin-bottom: @line-height-computed; - font-size: floor((@font-size-base * 1.15)); - font-weight: 300; - line-height: 1.4; - - @media (min-width: @screen-sm-min) { - font-size: (@font-size-base * 1.5); - } -} - - -// Emphasis & misc -// ------------------------- - -// Ex: (12px small font / 14px base font) * 100% = about 85% -small, -.small { - font-size: floor((100% * @font-size-small / @font-size-base)); -} - -mark, -.mark { - background-color: @state-warning-bg; - padding: .2em; -} - -// Alignment -.text-left { text-align: left; } -.text-right { text-align: right; } -.text-center { text-align: center; } -.text-justify { text-align: justify; } -.text-nowrap { white-space: nowrap; } - -// Transformation -.text-lowercase { text-transform: lowercase; } -.text-uppercase { text-transform: uppercase; } -.text-capitalize { text-transform: capitalize; } - -// Contextual colors -.text-muted { - color: @text-muted; -} -.text-primary { - .text-emphasis-variant(@brand-primary); -} -.text-success { - .text-emphasis-variant(@state-success-text); -} -.text-info { - .text-emphasis-variant(@state-info-text); -} -.text-warning { - .text-emphasis-variant(@state-warning-text); -} -.text-danger { - .text-emphasis-variant(@state-danger-text); -} - -// Contextual backgrounds -// For now we'll leave these alongside the text classes until v4 when we can -// safely shift things around (per SemVer rules). -.bg-primary { - // Given the contrast here, this is the only class to have its color inverted - // automatically. - color: #fff; - .bg-variant(@brand-primary); -} -.bg-success { - .bg-variant(@state-success-bg); -} -.bg-info { - .bg-variant(@state-info-bg); -} -.bg-warning { - .bg-variant(@state-warning-bg); -} -.bg-danger { - .bg-variant(@state-danger-bg); -} - - -// Page header -// ------------------------- - -.page-header { - padding-bottom: ((@line-height-computed / 2) - 1); - margin: (@line-height-computed * 2) 0 @line-height-computed; - border-bottom: 1px solid @page-header-border-color; -} - - -// Lists -// ------------------------- - -// Unordered and Ordered lists -ul, -ol { - margin-top: 0; - margin-bottom: (@line-height-computed / 2); - ul, - ol { - margin-bottom: 0; - } -} - -// List options - -// Unstyled keeps list items block level, just removes default browser padding and list-style -.list-unstyled { - padding-left: 0; - list-style: none; -} - -// Inline turns list items into inline-block -.list-inline { - .list-unstyled(); - margin-left: -5px; - - > li { - display: inline-block; - padding-left: 5px; - padding-right: 5px; - } -} - -// Description Lists -dl { - margin-top: 0; // Remove browser default - margin-bottom: @line-height-computed; -} -dt, -dd { - line-height: @line-height-base; -} -dt { - font-weight: bold; -} -dd { - margin-left: 0; // Undo browser default -} - -// Horizontal description lists -// -// Defaults to being stacked without any of the below styles applied, until the -// grid breakpoint is reached (default of ~768px). - -.dl-horizontal { - dd { - &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present - } - - @media (min-width: @dl-horizontal-breakpoint) { - dt { - float: left; - width: (@dl-horizontal-offset - 20); - clear: left; - text-align: right; - .text-overflow(); - } - dd { - margin-left: @dl-horizontal-offset; - } - } -} - - -// Misc -// ------------------------- - -// Abbreviations and acronyms -abbr[title], -// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257 -abbr[data-original-title] { - cursor: help; - border-bottom: 1px dotted @abbr-border-color; -} -.initialism { - font-size: 90%; - .text-uppercase(); -} - -// Blockquotes -blockquote { - padding: (@line-height-computed / 2) @line-height-computed; - margin: 0 0 @line-height-computed; - font-size: @blockquote-font-size; - border-left: 5px solid @blockquote-border-color; - - p, - ul, - ol { - &:last-child { - margin-bottom: 0; - } - } - - // Note: Deprecated small and .small as of v3.1.0 - // Context: https://github.com/twbs/bootstrap/issues/11660 - footer, - small, - .small { - display: block; - font-size: 80%; // back to default font-size - line-height: @line-height-base; - color: @blockquote-small-color; - - &:before { - content: '\2014 \00A0'; // em dash, nbsp - } - } -} - -// Opposite alignment of blockquote -// -// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0. -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - border-right: 5px solid @blockquote-border-color; - border-left: 0; - text-align: right; - - // Account for citation - footer, - small, - .small { - &:before { content: ''; } - &:after { - content: '\00A0 \2014'; // nbsp, em dash - } - } -} - -// Addresses -address { - margin-bottom: @line-height-computed; - font-style: normal; - line-height: @line-height-base; -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/utilities.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/utilities.less deleted file mode 100644 index 7a8ca27a8..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/utilities.less +++ /dev/null @@ -1,55 +0,0 @@ -// -// Utility classes -// -------------------------------------------------- - - -// Floats -// ------------------------- - -.clearfix { - .clearfix(); -} -.center-block { - .center-block(); -} -.pull-right { - float: right !important; -} -.pull-left { - float: left !important; -} - - -// Toggling content -// ------------------------- - -// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 -.hide { - display: none !important; -} -.show { - display: block !important; -} -.invisible { - visibility: hidden; -} -.text-hide { - .text-hide(); -} - - -// Hide from screenreaders and browsers -// -// Credit: HTML5 Boilerplate - -.hidden { - display: none !important; -} - - -// For Affix plugin -// ------------------------- - -.affix { - position: fixed; -} diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/variables.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/variables.less deleted file mode 100644 index b057ef5bf..000000000 --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/variables.less +++ /dev/null @@ -1,869 +0,0 @@ -// -// Variables -// -------------------------------------------------- - - -//== Colors -// -//## Gray and brand colors for use across Bootstrap. - -@gray-base: #000; -@gray-darker: lighten(@gray-base, 13.5%); // #222 -@gray-dark: lighten(@gray-base, 20%); // #333 -@gray: lighten(@gray-base, 33.5%); // #555 -@gray-light: lighten(@gray-base, 46.7%); // #777 -@gray-lighter: lighten(@gray-base, 93.5%); // #eee - -@brand-primary: darken(#428bca, 6.5%); // #337ab7 -@brand-success: #5cb85c; -@brand-info: #5bc0de; -@brand-warning: #f0ad4e; -@brand-danger: #d9534f; - - -//== Scaffolding -// -//## Settings for some of the most global styles. - -//** Background color for ``. -@body-bg: #fff; -//** Global text color on ``. -@text-color: @gray-dark; - -//** Global textual link color. -@link-color: @brand-primary; -//** Link hover color set via `darken()` function. -@link-hover-color: darken(@link-color, 15%); -//** Link hover decoration. -@link-hover-decoration: underline; - - -//== Typography -// -//## Font, line-height, and color for body text, headings, and more. - -@font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif; -@font-family-serif: Georgia, "Times New Roman", Times, serif; -//** Default monospace fonts for ``, ``, and `
    `.
    -@font-family-monospace:   Menlo, Monaco, Consolas, "Courier New", monospace;
    -@font-family-base:        @font-family-sans-serif;
    -
    -@font-size-base:          14px;
    -@font-size-large:         ceil((@font-size-base * 1.25)); // ~18px
    -@font-size-small:         ceil((@font-size-base * 0.85)); // ~12px
    -
    -@font-size-h1:            floor((@font-size-base * 2.6)); // ~36px
    -@font-size-h2:            floor((@font-size-base * 2.15)); // ~30px
    -@font-size-h3:            ceil((@font-size-base * 1.7)); // ~24px
    -@font-size-h4:            ceil((@font-size-base * 1.25)); // ~18px
    -@font-size-h5:            @font-size-base;
    -@font-size-h6:            ceil((@font-size-base * 0.85)); // ~12px
    -
    -//** Unit-less `line-height` for use in components like buttons.
    -@line-height-base:        1.428571429; // 20/14
    -//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
    -@line-height-computed:    floor((@font-size-base * @line-height-base)); // ~20px
    -
    -//** By default, this inherits from the ``.
    -@headings-font-family:    inherit;
    -@headings-font-weight:    500;
    -@headings-line-height:    1.1;
    -@headings-color:          inherit;
    -
    -
    -//== Iconography
    -//
    -//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
    -
    -//** Load fonts from this directory.
    -@icon-font-path:          "../fonts/";
    -//** File name for all font files.
    -@icon-font-name:          "glyphicons-halflings-regular";
    -//** Element ID within SVG icon file.
    -@icon-font-svg-id:        "glyphicons_halflingsregular";
    -
    -
    -//== Components
    -//
    -//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
    -
    -@padding-base-vertical:     6px;
    -@padding-base-horizontal:   12px;
    -
    -@padding-large-vertical:    10px;
    -@padding-large-horizontal:  16px;
    -
    -@padding-small-vertical:    5px;
    -@padding-small-horizontal:  10px;
    -
    -@padding-xs-vertical:       1px;
    -@padding-xs-horizontal:     5px;
    -
    -@line-height-large:         1.3333333; // extra decimals for Win 8.1 Chrome
    -@line-height-small:         1.5;
    -
    -@border-radius-base:        4px;
    -@border-radius-large:       6px;
    -@border-radius-small:       3px;
    -
    -//** Global color for active items (e.g., navs or dropdowns).
    -@component-active-color:    #fff;
    -//** Global background color for active items (e.g., navs or dropdowns).
    -@component-active-bg:       @brand-primary;
    -
    -//** Width of the `border` for generating carets that indicator dropdowns.
    -@caret-width-base:          4px;
    -//** Carets increase slightly in size for larger components.
    -@caret-width-large:         5px;
    -
    -
    -//== Tables
    -//
    -//## Customizes the `.table` component with basic values, each used across all table variations.
    -
    -//** Padding for ``s and ``s.
    -@table-cell-padding:            8px;
    -//** Padding for cells in `.table-condensed`.
    -@table-condensed-cell-padding:  5px;
    -
    -//** Default background color used for all tables.
    -@table-bg:                      transparent;
    -//** Background color used for `.table-striped`.
    -@table-bg-accent:               #f9f9f9;
    -//** Background color used for `.table-hover`.
    -@table-bg-hover:                #f5f5f5;
    -@table-bg-active:               @table-bg-hover;
    -
    -//** Border color for table and cell borders.
    -@table-border-color:            #ddd;
    -
    -
    -//== Buttons
    -//
    -//## For each of Bootstrap's buttons, define text, background and border color.
    -
    -@btn-font-weight:                normal;
    -
    -@btn-default-color:              #333;
    -@btn-default-bg:                 #fff;
    -@btn-default-border:             #ccc;
    -
    -@btn-primary-color:              #fff;
    -@btn-primary-bg:                 @brand-primary;
    -@btn-primary-border:             darken(@btn-primary-bg, 5%);
    -
    -@btn-success-color:              #fff;
    -@btn-success-bg:                 @brand-success;
    -@btn-success-border:             darken(@btn-success-bg, 5%);
    -
    -@btn-info-color:                 #fff;
    -@btn-info-bg:                    @brand-info;
    -@btn-info-border:                darken(@btn-info-bg, 5%);
    -
    -@btn-warning-color:              #fff;
    -@btn-warning-bg:                 @brand-warning;
    -@btn-warning-border:             darken(@btn-warning-bg, 5%);
    -
    -@btn-danger-color:               #fff;
    -@btn-danger-bg:                  @brand-danger;
    -@btn-danger-border:              darken(@btn-danger-bg, 5%);
    -
    -@btn-link-disabled-color:        @gray-light;
    -
    -// Allows for customizing button radius independently from global border radius
    -@btn-border-radius-base:         @border-radius-base;
    -@btn-border-radius-large:        @border-radius-large;
    -@btn-border-radius-small:        @border-radius-small;
    -
    -
    -//== Forms
    -//
    -//##
    -
    -//** `` background color
    -@input-bg:                       #fff;
    -//** `` background color
    -@input-bg-disabled:              @gray-lighter;
    -
    -//** Text color for ``s
    -@input-color:                    @gray;
    -//** `` border color
    -@input-border:                   #ccc;
    -
    -// TODO: Rename `@input-border-radius` to `@input-border-radius-base` in v4
    -//** Default `.form-control` border radius
    -// This has no effect on ``s in CSS.
    -@input-border-radius:            @border-radius-base;
    -//** Large `.form-control` border radius
    -@input-border-radius-large:      @border-radius-large;
    -//** Small `.form-control` border radius
    -@input-border-radius-small:      @border-radius-small;
    -
    -//** Border color for inputs on focus
    -@input-border-focus:             #66afe9;
    -
    -//** Placeholder text color
    -@input-color-placeholder:        #999;
    -
    -//** Default `.form-control` height
    -@input-height-base:              (@line-height-computed + (@padding-base-vertical * 2) + 2);
    -//** Large `.form-control` height
    -@input-height-large:             (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);
    -//** Small `.form-control` height
    -@input-height-small:             (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);
    -
    -//** `.form-group` margin
    -@form-group-margin-bottom:       15px;
    -
    -@legend-color:                   @gray-dark;
    -@legend-border-color:            #e5e5e5;
    -
    -//** Background color for textual input addons
    -@input-group-addon-bg:           @gray-lighter;
    -//** Border color for textual input addons
    -@input-group-addon-border-color: @input-border;
    -
    -//** Disabled cursor for form controls and buttons.
    -@cursor-disabled:                not-allowed;
    -
    -
    -//== Dropdowns
    -//
    -//## Dropdown menu container and contents.
    -
    -//** Background for the dropdown menu.
    -@dropdown-bg:                    #fff;
    -//** Dropdown menu `border-color`.
    -@dropdown-border:                rgba(0,0,0,.15);
    -//** Dropdown menu `border-color` **for IE8**.
    -@dropdown-fallback-border:       #ccc;
    -//** Divider color for between dropdown items.
    -@dropdown-divider-bg:            #e5e5e5;
    -
    -//** Dropdown link text color.
    -@dropdown-link-color:            @gray-dark;
    -//** Hover color for dropdown links.
    -@dropdown-link-hover-color:      darken(@gray-dark, 5%);
    -//** Hover background for dropdown links.
    -@dropdown-link-hover-bg:         #f5f5f5;
    -
    -//** Active dropdown menu item text color.
    -@dropdown-link-active-color:     @component-active-color;
    -//** Active dropdown menu item background color.
    -@dropdown-link-active-bg:        @component-active-bg;
    -
    -//** Disabled dropdown menu item background color.
    -@dropdown-link-disabled-color:   @gray-light;
    -
    -//** Text color for headers within dropdown menus.
    -@dropdown-header-color:          @gray-light;
    -
    -//** Deprecated `@dropdown-caret-color` as of v3.1.0
    -@dropdown-caret-color:           #000;
    -
    -
    -//-- Z-index master list
    -//
    -// Warning: Avoid customizing these values. They're used for a bird's eye view
    -// of components dependent on the z-axis and are designed to all work together.
    -//
    -// Note: These variables are not generated into the Customizer.
    -
    -@zindex-navbar:            1000;
    -@zindex-dropdown:          1000;
    -@zindex-popover:           1060;
    -@zindex-tooltip:           1070;
    -@zindex-navbar-fixed:      1030;
    -@zindex-modal-background:  1040;
    -@zindex-modal:             1050;
    -
    -
    -//== Media queries breakpoints
    -//
    -//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
    -
    -// Extra small screen / phone
    -//** Deprecated `@screen-xs` as of v3.0.1
    -@screen-xs:                  480px;
    -//** Deprecated `@screen-xs-min` as of v3.2.0
    -@screen-xs-min:              @screen-xs;
    -//** Deprecated `@screen-phone` as of v3.0.1
    -@screen-phone:               @screen-xs-min;
    -
    -// Small screen / tablet
    -//** Deprecated `@screen-sm` as of v3.0.1
    -@screen-sm:                  768px;
    -@screen-sm-min:              @screen-sm;
    -//** Deprecated `@screen-tablet` as of v3.0.1
    -@screen-tablet:              @screen-sm-min;
    -
    -// Medium screen / desktop
    -//** Deprecated `@screen-md` as of v3.0.1
    -@screen-md:                  992px;
    -@screen-md-min:              @screen-md;
    -//** Deprecated `@screen-desktop` as of v3.0.1
    -@screen-desktop:             @screen-md-min;
    -
    -// Large screen / wide desktop
    -//** Deprecated `@screen-lg` as of v3.0.1
    -@screen-lg:                  1200px;
    -@screen-lg-min:              @screen-lg;
    -//** Deprecated `@screen-lg-desktop` as of v3.0.1
    -@screen-lg-desktop:          @screen-lg-min;
    -
    -// So media queries don't overlap when required, provide a maximum
    -@screen-xs-max:              (@screen-sm-min - 1);
    -@screen-sm-max:              (@screen-md-min - 1);
    -@screen-md-max:              (@screen-lg-min - 1);
    -
    -
    -//== Grid system
    -//
    -//## Define your custom responsive grid.
    -
    -//** Number of columns in the grid.
    -@grid-columns:              12;
    -//** Padding between columns. Gets divided in half for the left and right.
    -@grid-gutter-width:         30px;
    -// Navbar collapse
    -//** Point at which the navbar becomes uncollapsed.
    -@grid-float-breakpoint:     @screen-sm-min;
    -//** Point at which the navbar begins collapsing.
    -@grid-float-breakpoint-max: (@grid-float-breakpoint - 1);
    -
    -
    -//== Container sizes
    -//
    -//## Define the maximum width of `.container` for different screen sizes.
    -
    -// Small screen / tablet
    -@container-tablet:             (720px + @grid-gutter-width);
    -//** For `@screen-sm-min` and up.
    -@container-sm:                 @container-tablet;
    -
    -// Medium screen / desktop
    -@container-desktop:            (940px + @grid-gutter-width);
    -//** For `@screen-md-min` and up.
    -@container-md:                 @container-desktop;
    -
    -// Large screen / wide desktop
    -@container-large-desktop:      (1140px + @grid-gutter-width);
    -//** For `@screen-lg-min` and up.
    -@container-lg:                 @container-large-desktop;
    -
    -
    -//== Navbar
    -//
    -//##
    -
    -// Basics of a navbar
    -@navbar-height:                    50px;
    -@navbar-margin-bottom:             @line-height-computed;
    -@navbar-border-radius:             @border-radius-base;
    -@navbar-padding-horizontal:        floor((@grid-gutter-width / 2));
    -@navbar-padding-vertical:          ((@navbar-height - @line-height-computed) / 2);
    -@navbar-collapse-max-height:       340px;
    -
    -@navbar-default-color:             #777;
    -@navbar-default-bg:                #f8f8f8;
    -@navbar-default-border:            darken(@navbar-default-bg, 6.5%);
    -
    -// Navbar links
    -@navbar-default-link-color:                #777;
    -@navbar-default-link-hover-color:          #333;
    -@navbar-default-link-hover-bg:             transparent;
    -@navbar-default-link-active-color:         #555;
    -@navbar-default-link-active-bg:            darken(@navbar-default-bg, 6.5%);
    -@navbar-default-link-disabled-color:       #ccc;
    -@navbar-default-link-disabled-bg:          transparent;
    -
    -// Navbar brand label
    -@navbar-default-brand-color:               @navbar-default-link-color;
    -@navbar-default-brand-hover-color:         darken(@navbar-default-brand-color, 10%);
    -@navbar-default-brand-hover-bg:            transparent;
    -
    -// Navbar toggle
    -@navbar-default-toggle-hover-bg:           #ddd;
    -@navbar-default-toggle-icon-bar-bg:        #888;
    -@navbar-default-toggle-border-color:       #ddd;
    -
    -
    -//=== Inverted navbar
    -// Reset inverted navbar basics
    -@navbar-inverse-color:                      lighten(@gray-light, 15%);
    -@navbar-inverse-bg:                         #222;
    -@navbar-inverse-border:                     darken(@navbar-inverse-bg, 10%);
    -
    -// Inverted navbar links
    -@navbar-inverse-link-color:                 lighten(@gray-light, 15%);
    -@navbar-inverse-link-hover-color:           #fff;
    -@navbar-inverse-link-hover-bg:              transparent;
    -@navbar-inverse-link-active-color:          @navbar-inverse-link-hover-color;
    -@navbar-inverse-link-active-bg:             darken(@navbar-inverse-bg, 10%);
    -@navbar-inverse-link-disabled-color:        #444;
    -@navbar-inverse-link-disabled-bg:           transparent;
    -
    -// Inverted navbar brand label
    -@navbar-inverse-brand-color:                @navbar-inverse-link-color;
    -@navbar-inverse-brand-hover-color:          #fff;
    -@navbar-inverse-brand-hover-bg:             transparent;
    -
    -// Inverted navbar toggle
    -@navbar-inverse-toggle-hover-bg:            #333;
    -@navbar-inverse-toggle-icon-bar-bg:         #fff;
    -@navbar-inverse-toggle-border-color:        #333;
    -
    -
    -//== Navs
    -//
    -//##
    -
    -//=== Shared nav styles
    -@nav-link-padding:                          10px 15px;
    -@nav-link-hover-bg:                         @gray-lighter;
    -
    -@nav-disabled-link-color:                   @gray-light;
    -@nav-disabled-link-hover-color:             @gray-light;
    -
    -//== Tabs
    -@nav-tabs-border-color:                     #ddd;
    -
    -@nav-tabs-link-hover-border-color:          @gray-lighter;
    -
    -@nav-tabs-active-link-hover-bg:             @body-bg;
    -@nav-tabs-active-link-hover-color:          @gray;
    -@nav-tabs-active-link-hover-border-color:   #ddd;
    -
    -@nav-tabs-justified-link-border-color:            #ddd;
    -@nav-tabs-justified-active-link-border-color:     @body-bg;
    -
    -//== Pills
    -@nav-pills-border-radius:                   @border-radius-base;
    -@nav-pills-active-link-hover-bg:            @component-active-bg;
    -@nav-pills-active-link-hover-color:         @component-active-color;
    -
    -
    -//== Pagination
    -//
    -//##
    -
    -@pagination-color:                     @link-color;
    -@pagination-bg:                        #fff;
    -@pagination-border:                    #ddd;
    -
    -@pagination-hover-color:               @link-hover-color;
    -@pagination-hover-bg:                  @gray-lighter;
    -@pagination-hover-border:              #ddd;
    -
    -@pagination-active-color:              #fff;
    -@pagination-active-bg:                 @brand-primary;
    -@pagination-active-border:             @brand-primary;
    -
    -@pagination-disabled-color:            @gray-light;
    -@pagination-disabled-bg:               #fff;
    -@pagination-disabled-border:           #ddd;
    -
    -
    -//== Pager
    -//
    -//##
    -
    -@pager-bg:                             @pagination-bg;
    -@pager-border:                         @pagination-border;
    -@pager-border-radius:                  15px;
    -
    -@pager-hover-bg:                       @pagination-hover-bg;
    -
    -@pager-active-bg:                      @pagination-active-bg;
    -@pager-active-color:                   @pagination-active-color;
    -
    -@pager-disabled-color:                 @pagination-disabled-color;
    -
    -
    -//== Jumbotron
    -//
    -//##
    -
    -@jumbotron-padding:              30px;
    -@jumbotron-color:                inherit;
    -@jumbotron-bg:                   @gray-lighter;
    -@jumbotron-heading-color:        inherit;
    -@jumbotron-font-size:            ceil((@font-size-base * 1.5));
    -@jumbotron-heading-font-size:    ceil((@font-size-base * 4.5));
    -
    -
    -//== Form states and alerts
    -//
    -//## Define colors for form feedback states and, by default, alerts.
    -
    -@state-success-text:             #3c763d;
    -@state-success-bg:               #dff0d8;
    -@state-success-border:           darken(spin(@state-success-bg, -10), 5%);
    -
    -@state-info-text:                #31708f;
    -@state-info-bg:                  #d9edf7;
    -@state-info-border:              darken(spin(@state-info-bg, -10), 7%);
    -
    -@state-warning-text:             #8a6d3b;
    -@state-warning-bg:               #fcf8e3;
    -@state-warning-border:           darken(spin(@state-warning-bg, -10), 5%);
    -
    -@state-danger-text:              #a94442;
    -@state-danger-bg:                #f2dede;
    -@state-danger-border:            darken(spin(@state-danger-bg, -10), 5%);
    -
    -
    -//== Tooltips
    -//
    -//##
    -
    -//** Tooltip max width
    -@tooltip-max-width:           200px;
    -//** Tooltip text color
    -@tooltip-color:               #fff;
    -//** Tooltip background color
    -@tooltip-bg:                  #000;
    -@tooltip-opacity:             .9;
    -
    -//** Tooltip arrow width
    -@tooltip-arrow-width:         5px;
    -//** Tooltip arrow color
    -@tooltip-arrow-color:         @tooltip-bg;
    -
    -
    -//== Popovers
    -//
    -//##
    -
    -//** Popover body background color
    -@popover-bg:                          #fff;
    -//** Popover maximum width
    -@popover-max-width:                   276px;
    -//** Popover border color
    -@popover-border-color:                rgba(0,0,0,.2);
    -//** Popover fallback border color
    -@popover-fallback-border-color:       #ccc;
    -
    -//** Popover title background color
    -@popover-title-bg:                    darken(@popover-bg, 3%);
    -
    -//** Popover arrow width
    -@popover-arrow-width:                 10px;
    -//** Popover arrow color
    -@popover-arrow-color:                 @popover-bg;
    -
    -//** Popover outer arrow width
    -@popover-arrow-outer-width:           (@popover-arrow-width + 1);
    -//** Popover outer arrow color
    -@popover-arrow-outer-color:           fadein(@popover-border-color, 5%);
    -//** Popover outer arrow fallback color
    -@popover-arrow-outer-fallback-color:  darken(@popover-fallback-border-color, 20%);
    -
    -
    -//== Labels
    -//
    -//##
    -
    -//** Default label background color
    -@label-default-bg:            @gray-light;
    -//** Primary label background color
    -@label-primary-bg:            @brand-primary;
    -//** Success label background color
    -@label-success-bg:            @brand-success;
    -//** Info label background color
    -@label-info-bg:               @brand-info;
    -//** Warning label background color
    -@label-warning-bg:            @brand-warning;
    -//** Danger label background color
    -@label-danger-bg:             @brand-danger;
    -
    -//** Default label text color
    -@label-color:                 #fff;
    -//** Default text color of a linked label
    -@label-link-hover-color:      #fff;
    -
    -
    -//== Modals
    -//
    -//##
    -
    -//** Padding applied to the modal body
    -@modal-inner-padding:         15px;
    -
    -//** Padding applied to the modal title
    -@modal-title-padding:         15px;
    -//** Modal title line-height
    -@modal-title-line-height:     @line-height-base;
    -
    -//** Background color of modal content area
    -@modal-content-bg:                             #fff;
    -//** Modal content border color
    -@modal-content-border-color:                   rgba(0,0,0,.2);
    -//** Modal content border color **for IE8**
    -@modal-content-fallback-border-color:          #999;
    -
    -//** Modal backdrop background color
    -@modal-backdrop-bg:           #000;
    -//** Modal backdrop opacity
    -@modal-backdrop-opacity:      .5;
    -//** Modal header border color
    -@modal-header-border-color:   #e5e5e5;
    -//** Modal footer border color
    -@modal-footer-border-color:   @modal-header-border-color;
    -
    -@modal-lg:                    900px;
    -@modal-md:                    600px;
    -@modal-sm:                    300px;
    -
    -
    -//== Alerts
    -//
    -//## Define alert colors, border radius, and padding.
    -
    -@alert-padding:               15px;
    -@alert-border-radius:         @border-radius-base;
    -@alert-link-font-weight:      bold;
    -
    -@alert-success-bg:            @state-success-bg;
    -@alert-success-text:          @state-success-text;
    -@alert-success-border:        @state-success-border;
    -
    -@alert-info-bg:               @state-info-bg;
    -@alert-info-text:             @state-info-text;
    -@alert-info-border:           @state-info-border;
    -
    -@alert-warning-bg:            @state-warning-bg;
    -@alert-warning-text:          @state-warning-text;
    -@alert-warning-border:        @state-warning-border;
    -
    -@alert-danger-bg:             @state-danger-bg;
    -@alert-danger-text:           @state-danger-text;
    -@alert-danger-border:         @state-danger-border;
    -
    -
    -//== Progress bars
    -//
    -//##
    -
    -//** Background color of the whole progress component
    -@progress-bg:                 #f5f5f5;
    -//** Progress bar text color
    -@progress-bar-color:          #fff;
    -//** Variable for setting rounded corners on progress bar.
    -@progress-border-radius:      @border-radius-base;
    -
    -//** Default progress bar color
    -@progress-bar-bg:             @brand-primary;
    -//** Success progress bar color
    -@progress-bar-success-bg:     @brand-success;
    -//** Warning progress bar color
    -@progress-bar-warning-bg:     @brand-warning;
    -//** Danger progress bar color
    -@progress-bar-danger-bg:      @brand-danger;
    -//** Info progress bar color
    -@progress-bar-info-bg:        @brand-info;
    -
    -
    -//== List group
    -//
    -//##
    -
    -//** Background color on `.list-group-item`
    -@list-group-bg:                 #fff;
    -//** `.list-group-item` border color
    -@list-group-border:             #ddd;
    -//** List group border radius
    -@list-group-border-radius:      @border-radius-base;
    -
    -//** Background color of single list items on hover
    -@list-group-hover-bg:           #f5f5f5;
    -//** Text color of active list items
    -@list-group-active-color:       @component-active-color;
    -//** Background color of active list items
    -@list-group-active-bg:          @component-active-bg;
    -//** Border color of active list elements
    -@list-group-active-border:      @list-group-active-bg;
    -//** Text color for content within active list items
    -@list-group-active-text-color:  lighten(@list-group-active-bg, 40%);
    -
    -//** Text color of disabled list items
    -@list-group-disabled-color:      @gray-light;
    -//** Background color of disabled list items
    -@list-group-disabled-bg:         @gray-lighter;
    -//** Text color for content within disabled list items
    -@list-group-disabled-text-color: @list-group-disabled-color;
    -
    -@list-group-link-color:         #555;
    -@list-group-link-hover-color:   @list-group-link-color;
    -@list-group-link-heading-color: #333;
    -
    -
    -//== Panels
    -//
    -//##
    -
    -@panel-bg:                    #fff;
    -@panel-body-padding:          15px;
    -@panel-heading-padding:       10px 15px;
    -@panel-footer-padding:        @panel-heading-padding;
    -@panel-border-radius:         @border-radius-base;
    -
    -//** Border color for elements within panels
    -@panel-inner-border:          #ddd;
    -@panel-footer-bg:             #f5f5f5;
    -
    -@panel-default-text:          @gray-dark;
    -@panel-default-border:        #ddd;
    -@panel-default-heading-bg:    #f5f5f5;
    -
    -@panel-primary-text:          #fff;
    -@panel-primary-border:        @brand-primary;
    -@panel-primary-heading-bg:    @brand-primary;
    -
    -@panel-success-text:          @state-success-text;
    -@panel-success-border:        @state-success-border;
    -@panel-success-heading-bg:    @state-success-bg;
    -
    -@panel-info-text:             @state-info-text;
    -@panel-info-border:           @state-info-border;
    -@panel-info-heading-bg:       @state-info-bg;
    -
    -@panel-warning-text:          @state-warning-text;
    -@panel-warning-border:        @state-warning-border;
    -@panel-warning-heading-bg:    @state-warning-bg;
    -
    -@panel-danger-text:           @state-danger-text;
    -@panel-danger-border:         @state-danger-border;
    -@panel-danger-heading-bg:     @state-danger-bg;
    -
    -
    -//== Thumbnails
    -//
    -//##
    -
    -//** Padding around the thumbnail image
    -@thumbnail-padding:           4px;
    -//** Thumbnail background color
    -@thumbnail-bg:                @body-bg;
    -//** Thumbnail border color
    -@thumbnail-border:            #ddd;
    -//** Thumbnail border radius
    -@thumbnail-border-radius:     @border-radius-base;
    -
    -//** Custom text color for thumbnail captions
    -@thumbnail-caption-color:     @text-color;
    -//** Padding around the thumbnail caption
    -@thumbnail-caption-padding:   9px;
    -
    -
    -//== Wells
    -//
    -//##
    -
    -@well-bg:                     #f5f5f5;
    -@well-border:                 darken(@well-bg, 7%);
    -
    -
    -//== Badges
    -//
    -//##
    -
    -@badge-color:                 #fff;
    -//** Linked badge text color on hover
    -@badge-link-hover-color:      #fff;
    -@badge-bg:                    @gray-light;
    -
    -//** Badge text color in active nav link
    -@badge-active-color:          @link-color;
    -//** Badge background color in active nav link
    -@badge-active-bg:             #fff;
    -
    -@badge-font-weight:           bold;
    -@badge-line-height:           1;
    -@badge-border-radius:         10px;
    -
    -
    -//== Breadcrumbs
    -//
    -//##
    -
    -@breadcrumb-padding-vertical:   8px;
    -@breadcrumb-padding-horizontal: 15px;
    -//** Breadcrumb background color
    -@breadcrumb-bg:                 #f5f5f5;
    -//** Breadcrumb text color
    -@breadcrumb-color:              #ccc;
    -//** Text color of current page in the breadcrumb
    -@breadcrumb-active-color:       @gray-light;
    -//** Textual separator for between breadcrumb elements
    -@breadcrumb-separator:          "/";
    -
    -
    -//== Carousel
    -//
    -//##
    -
    -@carousel-text-shadow:                        0 1px 2px rgba(0,0,0,.6);
    -
    -@carousel-control-color:                      #fff;
    -@carousel-control-width:                      15%;
    -@carousel-control-opacity:                    .5;
    -@carousel-control-font-size:                  20px;
    -
    -@carousel-indicator-active-bg:                #fff;
    -@carousel-indicator-border-color:             #fff;
    -
    -@carousel-caption-color:                      #fff;
    -
    -
    -//== Close
    -//
    -//##
    -
    -@close-font-weight:           bold;
    -@close-color:                 #000;
    -@close-text-shadow:           0 1px 0 #fff;
    -
    -
    -//== Code
    -//
    -//##
    -
    -@code-color:                  #c7254e;
    -@code-bg:                     #f9f2f4;
    -
    -@kbd-color:                   #fff;
    -@kbd-bg:                      #333;
    -
    -@pre-bg:                      #f5f5f5;
    -@pre-color:                   @gray-dark;
    -@pre-border-color:            #ccc;
    -@pre-scrollable-max-height:   340px;
    -
    -
    -//== Type
    -//
    -//##
    -
    -//** Horizontal offset for forms and lists.
    -@component-offset-horizontal: 180px;
    -//** Text muted color
    -@text-muted:                  @gray-light;
    -//** Abbreviations and acronyms border color
    -@abbr-border-color:           @gray-light;
    -//** Headings small color
    -@headings-small-color:        @gray-light;
    -//** Blockquote small color
    -@blockquote-small-color:      @gray-light;
    -//** Blockquote font size
    -@blockquote-font-size:        (@font-size-base * 1.25);
    -//** Blockquote border color
    -@blockquote-border-color:     @gray-lighter;
    -//** Page header border color
    -@page-header-border-color:    @gray-lighter;
    -//** Width of horizontal description list titles
    -@dl-horizontal-offset:        @component-offset-horizontal;
    -//** Point at which .dl-horizontal becomes horizontal
    -@dl-horizontal-breakpoint:    @grid-float-breakpoint;
    -//** Horizontal line color.
    -@hr-border:                   @gray-lighter;
    diff --git a/library/font_awesome/src/assets/less/bootstrap-3.3.5/wells.less b/library/font_awesome/src/assets/less/bootstrap-3.3.5/wells.less
    deleted file mode 100644
    index 15d072b0c..000000000
    --- a/library/font_awesome/src/assets/less/bootstrap-3.3.5/wells.less
    +++ /dev/null
    @@ -1,29 +0,0 @@
    -//
    -// Wells
    -// --------------------------------------------------
    -
    -
    -// Base class
    -.well {
    -  min-height: 20px;
    -  padding: 19px;
    -  margin-bottom: 20px;
    -  background-color: @well-bg;
    -  border: 1px solid @well-border;
    -  border-radius: @border-radius-base;
    -  .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
    -  blockquote {
    -    border-color: #ddd;
    -    border-color: rgba(0,0,0,.15);
    -  }
    -}
    -
    -// Sizes
    -.well-lg {
    -  padding: 24px;
    -  border-radius: @border-radius-large;
    -}
    -.well-sm {
    -  padding: 9px;
    -  border-radius: @border-radius-small;
    -}
    diff --git a/library/font_awesome/src/assets/less/gandy-grid/grid.less b/library/font_awesome/src/assets/less/gandy-grid/grid.less
    deleted file mode 100644
    index 7aca7dbb7..000000000
    --- a/library/font_awesome/src/assets/less/gandy-grid/grid.less
    +++ /dev/null
    @@ -1,43 +0,0 @@
    -.gg { .gg(); }
    -.gg-fixed { table-layout: fixed; }
    -.gg-col { .gg-col(); }
    -.gg-row { display: table-row; }
    -.gg-min-width { width: 1%; }
    -
    -.gg-top    { vertical-align: top; }
    -.gg-middle { vertical-align: middle; }
    -.gg-bottom { vertical-align: bottom; }
    -
    -.gg-padded {
    -  margin-left: -1rem;
    -  margin-right: -1rem;
    -  .gg { border-spacing: 1rem 0; }
    -}
    -
    -.gg-col-1,
    -.gg-col-2,
    -.gg-col-3,
    -.gg-col-4,
    -.gg-col-5,
    -.gg-col-6,
    -.gg-col-7,
    -.gg-col-8,
    -.gg-col-9,
    -.gg-col-10,
    -.gg-col-11,
    -.gg-col-12 {
    -  .gg-col();
    -}
    -
    -.gg-col-1  { .gg-make-col(1,12); }
    -.gg-col-2  { .gg-make-col(2,12); }
    -.gg-col-3  { .gg-make-col(3,12); }
    -.gg-col-4  { .gg-make-col(4,12); }
    -.gg-col-5  { .gg-make-col(5,12); }
    -.gg-col-6  { .gg-make-col(6,12); }
    -.gg-col-7  { .gg-make-col(7,12); }
    -.gg-col-8  { .gg-make-col(8,12); }
    -.gg-col-9  { .gg-make-col(9,12); }
    -.gg-col-10 { .gg-make-col(10,12); }
    -.gg-col-11 { .gg-make-col(11,12); }
    -.gg-col-12 { .gg-make-col(12,12); }
    diff --git a/library/font_awesome/src/assets/less/gandy-grid/mixins.less b/library/font_awesome/src/assets/less/gandy-grid/mixins.less
    deleted file mode 100644
    index 49c774998..000000000
    --- a/library/font_awesome/src/assets/less/gandy-grid/mixins.less
    +++ /dev/null
    @@ -1,18 +0,0 @@
    -.gg {
    -  display: table;
    -  width: 100%;
    -  vertical-align: middle;
    -}
    -
    -.gg-col {
    -  display: table-cell;
    -  vertical-align: inherit;
    -}
    -
    -.gg-vertical-align(@align) {
    -  vertical-align: @align;
    -}
    -
    -.gg-make-col(@column-width, @total-columns) {
    -  width: (100% / @total-columns * @column-width);
    -}
    diff --git a/library/font_awesome/src/assets/less/site.less b/library/font_awesome/src/assets/less/site.less
    deleted file mode 100644
    index a9e13f6ee..000000000
    --- a/library/font_awesome/src/assets/less/site.less
    +++ /dev/null
    @@ -1,45 +0,0 @@
    ----
    ----
    -@import "bootstrap-{{ site.bootstrap.version }}/bootstrap";
    -
    -@import "gandy-grid/mixins";
    -@import "gandy-grid/grid";
    -
    -@import "site/bootstrap/variables";
    -@import "site/bootstrap/navbar";
    -@import "site/bootstrap/buttons";
    -@import "site/bootstrap/jumbotron";
    -@import "site/bootstrap/wells";
    -@import "site/bootstrap/labels";
    -@import "site/bootstrap/type";
    -@import "site/bootstrap/alerts";
    -@import "site/bootstrap/tooltip";
    -@import "site/bootstrap/panels";
    -@import "site/bootstrap/modals";
    -
    -@import "site/layout";
    -@import "site/social-buttons";
    -@import "site/jumbotron-carousel";
    -@import "site/stripe-ad";
    -@import "site/search";
    -@import "site/fontawesome-icon-list";
    -@import "site/feature-list";
    -@import "site/example-rating";
    -@import "site/footer";
    -@import "site/lazy";
    -@import "site/textured-bg";
    -@import "site/banner-ad";
    -@import "site/fusion-ad";
    -@import "site/bsap-ad";
    -@import "site/sumome";
    -@import "site/algolia";
    -@import "site/kickstarter";
    -
    -@import "site/views";
    -@import "site/store";
    -
    -@import "site/responsive/screen-lg";
    -@import "site/responsive/screen-md";
    -@import "site/responsive/screen-sm";
    -@import "site/responsive/screen-sm-up";
    -@import "site/responsive/screen-xs";
    diff --git a/library/font_awesome/src/assets/less/site/algolia.less b/library/font_awesome/src/assets/less/site/algolia.less
    deleted file mode 100644
    index d97fe5950..000000000
    --- a/library/font_awesome/src/assets/less/site/algolia.less
    +++ /dev/null
    @@ -1,12 +0,0 @@
    -.algolia {
    -  margin-top: -20px;
    -  padding-top: 49px;
    -  a {
    -    color: @text-color;
    -    &:hover { color: @link-hover-color; }
    -  }
    -  .fas-algolia {
    -    font-size: 32px;
    -    vertical-align: middle;
    -  }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/banner-ad.less b/library/font_awesome/src/assets/less/site/banner-ad.less
    deleted file mode 100644
    index e544ed0be..000000000
    --- a/library/font_awesome/src/assets/less/site/banner-ad.less
    +++ /dev/null
    @@ -1,270 +0,0 @@
    -#banner {
    -  color: #fff;
    -  .message-container {
    -    display: table;
    -    width: auto;
    -    margin: 0 auto;
    -    padding: 15px 0;
    -  }
    -  .tagline, .action {
    -    display: table-cell;
    -    vertical-align: middle;
    -  }
    -  .tagline {
    -    font-weight: 200;
    -    font-size: 16px;
    -    padding-right: 30px;
    -  }
    -
    -  &.font-awesome-survey {
    -    @survey-bg: #8E8F94;
    -    background-color: @survey-bg;
    -    border-bottom: solid 1px mix(@survey-bg, #fff, 95%);
    -
    -    .btn-primary {
    -      @color: mix(#fff,@survey-bg,80%);
    -      @background: darken(@survey-bg, 15%);
    -      @border: darken(@background, 15%);
    -      font-weight: bold;
    -      color: @color;
    -      background-color: @background;
    -      border-color: @border;
    -      border-bottom-width: 2px;
    -      text-shadow: none;
    -      border-radius: 4px;
    -
    -      &:hover,
    -      &:focus,
    -      &:active,
    -      &.active,
    -      .open > &.dropdown-toggle {
    -        color: #fff;
    -        background-color: darken(@border, 10%);
    -        border-color: darken(@border, 20%);
    -        border-bottom-color: darken(@border, 30%);
    -      }
    -      &:active,
    -      &.active,
    -      .open > &.dropdown-toggle {
    -        background-image: none;
    -      }
    -      &.disabled,
    -      &[disabled],
    -      fieldset[disabled] & {
    -        &,
    -        &:hover,
    -        &:focus,
    -        &:active,
    -        &.active {
    -          background-color: @background;
    -          border-color: @border;
    -        }
    -      }
    -    }
    -
    -
    -  }
    -
    -  &.black-tie {
    -    @black-tie-bg: #2E2E2E;
    -    background-color: @black-tie-bg;
    -    border-bottom: solid 1px mix(@black-tie-bg, #fff, 95%);
    -
    -    .btn-primary {
    -      @color: mix(#fff, @black-tie-bg, 85%);
    -      @background: darken(@black-tie-bg, 5%);
    -      @border: darken(@black-tie-bg, 10%);
    -      font-weight: bold;
    -      color: @color;
    -      background-color: @background;
    -      border-color: @border;
    -      border-bottom-width: 2px;
    -      text-shadow: none;
    -      border-radius: 4px;
    -
    -      &:hover,
    -      &:focus,
    -      &:active,
    -      &.active,
    -      .open > &.dropdown-toggle {
    -        color: #fff;
    -        background-color: darken(@background, 5%);
    -        border-color: darken(@border, 12%);
    -        border-bottom-color: darken(@border, 18%);
    -      }
    -      &:active,
    -      &.active,
    -      .open > &.dropdown-toggle {
    -        background-image: none;
    -      }
    -      &.disabled,
    -      &[disabled],
    -      fieldset[disabled] & {
    -        &,
    -        &:hover,
    -        &:focus,
    -        &:active,
    -        &.active {
    -          background-color: @background;
    -          border-color: @border;
    -        }
    -      }
    -    }
    -  }
    -
    -  &.fort-awesome {
    -    @fort-awesome-color: #1C1E29;
    -    @fort-awesome-color-accent: #525879;
    -    @fort-awesome-bg: #2d2f39;
    -    background-color: @fort-awesome-bg;
    -    border-bottom: solid 1px mix(@fort-awesome-bg, #000, 15%);
    -    .btn-primary {
    -      @color: #fff;
    -      @background: #ff8c52;
    -      @border: rgba(0,0,0,0.2);
    -      font-weight: bold;
    -      color: @color;
    -      background-color: @background;
    -      border-color: @border;
    -      border-bottom-width: 2px;
    -      text-shadow: none;
    -      border-radius: 4px;
    -
    -      &:hover,
    -      &:focus,
    -      &:active,
    -      &.active,
    -      .open > &.dropdown-toggle {
    -        color: #fff;
    -        background-color: #e67e4a;
    -        border-color: rgba(0,0,0,0.296);
    -        border-bottom-color: rgba(0,0,0,0.296);
    -      }
    -      &:active,
    -      &.active,
    -      .open > &.dropdown-toggle {
    -        background-image: none;
    -      }
    -      &.disabled,
    -      &[disabled],
    -      fieldset[disabled] & {
    -        &,
    -        &:hover,
    -        &:focus,
    -        &:active,
    -        &.active {
    -          background-color: @background;
    -          border-color: @border;
    -        }
    -      }
    -    }
    -  }
    -
    -  &.symbolset {
    -    @symbolset-bg: desaturate(#866cba,5%);
    -    background-color: @symbolset-bg;
    -    border-bottom: rgba(0,0,0,0.2);
    -    a:not(.btn) {
    -      text-decoration: underline;
    -      color: #fff;
    -      &:hover { color: rgba(255,255,255,.8); }
    -    }
    -    .btn-primary {
    -      @color: @symbolset-bg;
    -      @background: #fff;
    -      @border: mix(#000,@symbolset-bg,10%);
    -      font-weight: bold;
    -      color: @color;
    -      background-color: @background;
    -      border-color: @border;
    -      border-bottom-width: 2px;
    -      text-shadow: none;
    -      border-radius: 4px;
    -
    -      &:hover,
    -      &:focus,
    -      &:active,
    -      &.active,
    -      .open > &.dropdown-toggle {
    -        color: #fff;
    -        background-color: rgba(0,0,0,0.2);
    -        border-color: rgba(0,0,0,0.2);
    -        border-bottom-color: rgba(0,0,0,0.2);
    -      }
    -      &:active,
    -      &.active,
    -      .open > &.dropdown-toggle {
    -        background-image: none;
    -      }
    -      &.disabled,
    -      &[disabled],
    -      fieldset[disabled] & {
    -        &,
    -        &:hover,
    -        &:focus,
    -        &:active,
    -        &.active {
    -          background-color: @background;
    -          border-color: @border;
    -        }
    -      }
    -    }
    -  }
    -
    -  &.kickstarter {
    -    @kickstarter-bg: #489fdf;
    -    background-color: @kickstarter-bg;
    -    border-bottom: rgba(0,0,0,0.2);
    -    .message-container { padding: 40px 0; }
    -    .tagline { font-size: 24px; }
    -    a:not(.btn) {
    -      text-decoration: underline;
    -      color: #fff;
    -      &:hover { color: rgba(255,255,255,.8); }
    -    }
    -    .btn-primary {
    -      @color: @kickstarter-bg;
    -      @background: #fff;
    -      @border: mix(#000,@kickstarter-bg,10%);
    -      font-weight: 600;
    -      font-size: 22px;
    -      padding: 14px 28px;
    -      border-radius: 30px;
    -
    -      color: @color;
    -      background-color: @background;
    -      border-color: @border;
    -      border-bottom-width: 2px;
    -      text-shadow: none;
    -
    -      &:hover,
    -      &:focus,
    -      &:active,
    -      &.active,
    -      .open > &.dropdown-toggle {
    -        color: #fff;
    -        background-color: rgba(0,0,0,0.2);
    -        border-color: rgba(0,0,0,0.2);
    -        border-bottom-color: rgba(0,0,0,0.2);
    -      }
    -      &:active,
    -      &.active,
    -      .open > &.dropdown-toggle {
    -        background-image: none;
    -      }
    -      &.disabled,
    -      &[disabled],
    -      fieldset[disabled] & {
    -        &,
    -        &:hover,
    -        &:focus,
    -        &:active,
    -        &.active {
    -          background-color: @background;
    -          border-color: @border;
    -        }
    -      }
    -    }
    -  }
    -
    -}
    diff --git a/library/font_awesome/src/assets/less/site/bootstrap/alerts.less b/library/font_awesome/src/assets/less/site/bootstrap/alerts.less
    deleted file mode 100644
    index db79469e1..000000000
    --- a/library/font_awesome/src/assets/less/site/bootstrap/alerts.less
    +++ /dev/null
    @@ -1,5 +0,0 @@
    -.alert-link { text-decoration: underline; }
    -
    -.alert-default  { .alert-variant(@alert-default-bg, @alert-default-border, @alert-default-text); }
    -.alert-well     { .alert-variant(@alert-well-bg, @alert-well-border, @alert-well-text); }
    -.alert-well-alt { .alert-variant(@well-bg, @table-border-color, mix(@text-muted,@text-color,50%)); }
    diff --git a/library/font_awesome/src/assets/less/site/bootstrap/buttons.less b/library/font_awesome/src/assets/less/site/bootstrap/buttons.less
    deleted file mode 100644
    index b61fea70d..000000000
    --- a/library/font_awesome/src/assets/less/site/bootstrap/buttons.less
    +++ /dev/null
    @@ -1,3 +0,0 @@
    -.btn { box-shadow: inset 0 1px 0 rgba(255,255,255,0.2); }
    -.btn-default { text-shadow: 0 1px 0 #fff; }
    -.btn-primary, .btn-success, .btn-warning, .btn-danger, .btn-info { text-shadow: 0 1px 0 rgba(0,0,0,0.2); }
    \ No newline at end of file
    diff --git a/library/font_awesome/src/assets/less/site/bootstrap/jumbotron.less b/library/font_awesome/src/assets/less/site/bootstrap/jumbotron.less
    deleted file mode 100644
    index a04420b72..000000000
    --- a/library/font_awesome/src/assets/less/site/bootstrap/jumbotron.less
    +++ /dev/null
    @@ -1,87 +0,0 @@
    -.jumbotron {
    -  background-color: lighten(@jumbotron-bg, 2%);
    -  border-top: 1px solid mix(@jumbotron-bg, @jumbotron-color, 90%);
    -  border-bottom: 1px solid @jumbotron-border;
    -  margin-bottom: 0;
    -  &, h1 { color: @jumbotron-color; }
    -  padding: 50px 0 40px;
    -
    -  h1 {
    -    font-size: 80px;
    -    letter-spacing: -2px;
    -    line-height: 1;
    -    margin: 0 0 15px;
    -  }
    -  p {
    -    font-family: @font-family-alt;
    -    margin-top: 15px;
    -    margin-bottom: 15px;
    -    font-size: 24px;
    -    line-height: 1.3;
    -    font-weight: lighter;
    -  }
    -
    -  .list-group-item {
    -    border-color: mix(@jumbotron-color, @fa-green, 15%);
    -    background: transparent;
    -  }
    -
    -  .text-muted {
    -    color: mix(@jumbotron-color, @fa-green, 45%);
    -  }
    -}
    -
    -.jumbotron-ad, .jumbotron-carousel {
    -  h1 {
    -    text-shadow: 4px 3px 0px @jumbotron-bg, 9px 8px 0px rgba(0,0,0,0.15); // double text shadow
    -  }
    -  p {
    -    color: mix(@jumbotron-color, @jumbotron-bg, 75%);
    -    text-shadow: 0 1px 0 rgba(0,0,0,0.15);
    -  }
    -}
    -
    -.jumbotron-icon {
    -  padding: 30px 0 25px;
    -  background-color: @gray-lighter;
    -  color: @gray-darker;
    -  &, h1 { text-shadow: 0 1px 0 #fff; }
    -  border-bottom-color: mix(@gray-light, @gray-lighter, 25%);
    -  border-top-color: mix(#fff, @gray-lighter, 50%);
    -  h1 {
    -    color: @gray-darker;
    -    margin-top: @buffer-lg;
    -    small {
    -      letter-spacing: normal;
    -      font-family: @font-family-sans-serif;
    -      font-size: @font-size-base;
    -      margin-left: 20px;
    -    }
    -  }
    -
    -  .info-icons {
    -    font-size: @font-size-base;
    -  }
    -  .info-details {
    -    float: left;
    -    p {
    -      margin: 25px 0;
    -      font-weight: bold;
    -    }
    -    .dl-horizontal {
    -      dt { width: @component-offset-horizontal - 100; }
    -      dd { margin-left: @component-offset-horizontal - 85; }
    -    }
    -  }
    -  .fa-2 { font-size: 2em; }
    -  .fa-3 { font-size: 4em; }
    -  .fa-4 { font-size: 7em; }
    -  .fa-5 { font-size: 12em; }
    -  .fa-6 { font-size: 20em; }
    -
    -  .fa-1, .fa-2, .fa-3, .fa-4, .fa-5, .fa-6 { margin-right: 1/14em; }
    -}
    -
    -h1.info-class {
    -  font-size: 30px;
    -}
    diff --git a/library/font_awesome/src/assets/less/site/bootstrap/labels.less b/library/font_awesome/src/assets/less/site/bootstrap/labels.less
    deleted file mode 100644
    index d0d12dcf8..000000000
    --- a/library/font_awesome/src/assets/less/site/bootstrap/labels.less
    +++ /dev/null
    @@ -1,21 +0,0 @@
    -// reset
    -.label {
    -  padding: .3em .6em;
    -}
    -
    -// new types of labels
    -.label-brand {
    -  .label-variant(@label-brand-bg);
    -}
    -
    -.label-dark {
    -  .label-variant(@label-dark-bg);
    -}
    -
    -// labels inside of headings
    -h1, h2, h3, h4, h5, h6 {
    -
    -  .label {
    -    font-family: @font-family-sans-serif;
    -  }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/bootstrap/modals.less b/library/font_awesome/src/assets/less/site/bootstrap/modals.less
    deleted file mode 100644
    index 275e40c8a..000000000
    --- a/library/font_awesome/src/assets/less/site/bootstrap/modals.less
    +++ /dev/null
    @@ -1,6 +0,0 @@
    -
    -// Scale up the modal
    -@media (min-width: @screen-sm-min) {
    -  // Modal sizes
    -  .modal-md { width: ((@modal-md + @modal-sm) / 2); }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/bootstrap/navbar.less b/library/font_awesome/src/assets/less/site/bootstrap/navbar.less
    deleted file mode 100644
    index 32167270f..000000000
    --- a/library/font_awesome/src/assets/less/site/bootstrap/navbar.less
    +++ /dev/null
    @@ -1,179 +0,0 @@
    -// SITE SPECIFIC NAVBAR STYLES
    -
    -.navbar { margin-bottom: 0; }
    -.navbar-inverse { background-color: lighten(@fa-green, 2%); }
    -.navbar-brand {
    -  font-family: @font-family-serif;
    -  font-weight: 300;
    -  font-size: 20px;
    -  i {
    -    font-size: 23px;
    -    padding-right: 3px;
    -    line-height: .75;
    -  }
    -}
    -.navbar-nav > li > a { padding: 11px 10px 9px; }
    -
    -// makes dropdowns closer for split dropdown
    -.navbar-nav > li {
    -  &.dropdown-split-right > a { padding-left: 7px; }
    -  &.dropdown-split-left > a { padding-right: 0; }
    -}
    -
    -.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-color: @jumbotron-border; }
    -
    -.navbar-inverse .navbar-toggle {
    -  color: @jumbotron-color;
    -  text-shadow: 0 1px 0 rgba(0,0,0,0.15);
    -  padding: 4px 10px;
    -  margin-top: 5px;
    -  margin-bottom: 5px;
    -  &:hover {
    -    background-color: mix(@jumbotron-color, @jumbotron-bg, 95%);
    -    border-color: mix(@jumbotron-color, @jumbotron-bg, 95%);
    -    color: @jumbotron-bg;
    -    text-shadow: 0 -1px 0 @jumbotron-color;
    -  }
    -}
    -
    -.navbar-nav.navbar-right:last-child { margin-right: -10px; }
    -
    -
    -//
    -// FORT AWESOME ORG NAVBAR
    -// --------------------
    -//
    -.navbar-org {
    -  background-color: @navbar-inverse-link-active-bg;
    -  border-color: mix(#000, @fa-green, 20%);
    -  padding: 0;
    -
    -  .ficon-logo-flag, .ficon-log-fort { vertical-align: baseline; }
    -
    -  .navbar-text {
    -    color: mix(#fff, @fa-green, 60%);
    -    margin-top: 12px;
    -    margin-right: 30px;
    -  }
    -
    -  .navbar-nav {
    -    margin-right: -10px;
    -
    -    > li + li { margin-left: 15px; }
    -    > li > a {
    -      color: mix(#fff, @navbar-inverse-bg, 75%);
    -
    -      &:hover,
    -      &:focus {
    -        color: mix(#fff, @fa-green, 100%);
    -        background-color: transparent;
    -        border-bottom: solid 2px mix(#fff, @fa-green, 90%);
    -      }
    -    }
    -    > .active > a {
    -      &,
    -      &:hover,
    -      &:focus {
    -        color: mix(#fff, @navbar-inverse-bg, 75%);
    -        background-color: transparent;
    -        border-radius: 0;
    -        border-bottom: solid 2px mix(#fff, @navbar-inverse-bg, 65%);
    -      }
    -    }
    -    > .disabled > a {
    -      &,
    -      &:hover,
    -      &:focus {
    -        color: @navbar-inverse-link-disabled-color;
    -        background-color: @navbar-inverse-link-disabled-bg;
    -      }
    -    }
    -  }
    -
    -  // Darken the responsive nav toggle
    -  .navbar-toggle {
    -    border-color: @navbar-inverse-toggle-border-color;
    -    &:hover,
    -    &:focus {
    -      background-color: @navbar-inverse-toggle-hover-bg;
    -    }
    -    .icon-bar {
    -      background-color: @navbar-inverse-toggle-icon-bar-bg;
    -    }
    -  }
    -
    -  .navbar-collapse,
    -  .navbar-form {
    -    border-color: darken(@navbar-inverse-bg, 7%);
    -  }
    -
    -  // Dropdowns
    -  .navbar-nav {
    -    > .open > a {
    -      &,
    -      &:hover,
    -      &:focus {
    -        background-color: @navbar-inverse-link-active-bg;
    -        color: @navbar-inverse-link-active-color;
    -      }
    -    }
    -
    -    @media (max-width: @grid-float-breakpoint-max) {
    -      // Dropdowns get custom display
    -      .open .dropdown-menu {
    -        > .dropdown-header {
    -          border-color: @navbar-inverse-border;
    -        }
    -        .divider {
    -          background-color: @navbar-inverse-border;
    -        }
    -        > li > a {
    -          color: @navbar-inverse-link-color;
    -          &:hover,
    -          &:focus {
    -            color: @navbar-inverse-link-hover-color;
    -            background-color: @navbar-inverse-link-hover-bg;
    -          }
    -        }
    -        > .active > a {
    -          &,
    -          &:hover,
    -          &:focus {
    -            color: @navbar-inverse-link-active-color;
    -            background-color: @navbar-inverse-link-active-bg;
    -          }
    -        }
    -        > .disabled > a {
    -          &,
    -          &:hover,
    -          &:focus {
    -            color: @navbar-inverse-link-disabled-color;
    -            background-color: @navbar-inverse-link-disabled-bg;
    -          }
    -        }
    -      }
    -    }
    -  }
    -
    -  .navbar-link {
    -    color: @navbar-inverse-link-color;
    -    &:hover {
    -      color: @navbar-inverse-link-hover-color;
    -    }
    -  }
    -
    -  .btn-link {
    -    color: @navbar-inverse-link-color;
    -    &:hover,
    -    &:focus {
    -      color: @navbar-inverse-link-hover-color;
    -    }
    -    &[disabled],
    -    fieldset[disabled] & {
    -      &:hover,
    -      &:focus {
    -        color: @navbar-inverse-link-disabled-color;
    -      }
    -    }
    -  }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/bootstrap/panels.less b/library/font_awesome/src/assets/less/site/bootstrap/panels.less
    deleted file mode 100644
    index f2dc21009..000000000
    --- a/library/font_awesome/src/assets/less/site/bootstrap/panels.less
    +++ /dev/null
    @@ -1,15 +0,0 @@
    -.panel {
    -  .box-shadow(none);
    -}
    -
    -.panel-heading {
    -  margin: -1px;
    -  border-bottom-width: 0;
    -  padding: 11px 15px;
    -}
    -
    -.panel-default .panel-heading {
    -  margin: 0;
    -  border-bottom-width: 1px;
    -  padding: 10px 15px;
    -}
    \ No newline at end of file
    diff --git a/library/font_awesome/src/assets/less/site/bootstrap/tooltip.less b/library/font_awesome/src/assets/less/site/bootstrap/tooltip.less
    deleted file mode 100644
    index 5a7087141..000000000
    --- a/library/font_awesome/src/assets/less/site/bootstrap/tooltip.less
    +++ /dev/null
    @@ -1,8 +0,0 @@
    -.tooltip {
    -  font-size: @font-size-base;
    -}
    -
    -// Wrapper for the tooltip content
    -.tooltip-inner {
    -  padding: 5px 10px;
    -}
    diff --git a/library/font_awesome/src/assets/less/site/bootstrap/type.less b/library/font_awesome/src/assets/less/site/bootstrap/type.less
    deleted file mode 100644
    index b7d5f9b03..000000000
    --- a/library/font_awesome/src/assets/less/site/bootstrap/type.less
    +++ /dev/null
    @@ -1,26 +0,0 @@
    -.small-caps {
    -  font-family: @font-family-alt;
    -}
    -
    -.hr {
    -  position: relative;
    -  text-align: center;
    -  font-size: @font-size-base;
    -  z-index: 1;
    -  min-height: 20px;
    -
    -  &:after {
    -    content: " ";
    -    position: absolute;
    -    top: 50%;
    -    left: 0;
    -    right: 0;
    -    border-top: 2px solid @hr-border;
    -    z-index: -1;
    -  }
    -  .hr-text {
    -    display: inline-block;
    -    background-color: #fff;
    -    padding: 0 .5em;
    -  }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/bootstrap/variables.less b/library/font_awesome/src/assets/less/site/bootstrap/variables.less
    deleted file mode 100644
    index 0cb005b4b..000000000
    --- a/library/font_awesome/src/assets/less/site/bootstrap/variables.less
    +++ /dev/null
    @@ -1,171 +0,0 @@
    ----
    ----
    -// SITE VARIABLES
    -// --------------
    -
    -// Blues
    -@blue-darker:           #003366;
    -@blue-dark:             #005f9b; // Pantone 3015 C
    -@blue:                  #009add; // Pantone 2925 C
    -@blue-light:            #b8dcf2;
    -@blue-lighter:          #f0f9ff;
    -
    -// Greens
    -@green-darker:          #41683b;
    -@green-dark:            #678943;
    -@green:                 #95bf52;
    -@green-light:           #ddefbd;
    -@green-lighter:         #f3f9e8;
    -
    -// Reds
    -@red-darker:            #702222;
    -@red-dark:              #ba4a4a;
    -@red:                   #dd7373;
    -@red-light:             #f2adb1;
    -@red-lighter:           #fff0f0;
    -
    -// Yellows
    -@yellow-darker:         #6f4215;
    -@yellow-dark:           #db8400;
    -@yellow:                #f9e27d;
    -@yellow-light:          #fff5bd;
    -@yellow-lighter:        #fffcee;
    -
    -// Oranges
    -@orange-darker:         #8c3900;
    -@orange-dark:           #cc5d11;
    -@orange:                #f4914e;
    -@orange-light:          #ffd0a6;
    -@orange-lighter:        #fff4e6;
    -
    -// Purples
    -@purple-darker:         #4a226d;
    -@purple-dark:           #7457ad;
    -@purple:                #9780d6;
    -@purple-light:          #c3b8f4;
    -@purple-lighter:        #fbf5ff;
    -
    -@fa-green:              #1d9d74;
    -@fa-green-dark:         darken(@fa-green, 10%);
    -
    -@jumbotron-border:      mix(@fa-green, @fa-green-dark, 75%);
    -@font-family-alt:       proxima-nova-sc, "Helvetica Neue", Helvetica, Arial, sans-serif;
    -
    -
    -// BOOTSTRAP OVERRIDES
    -// -------------------
    -
    -// Brand colors
    -@brand-success:         @fa-green;
    -
    -
    -// Links
    -@link-color:            lighten(@fa-green, 5%);
    -@link-hover-color:      darken(@fa-green, 5%);
    -
    -
    -// Typography
    -@font-family-sans-serif:  proxima-nova, "Helvetica Neue", Helvetica, Arial, sans-serif;
    -@font-family-serif:       museo-slab, Georgia, "Times New Roman", Times, serif;
    -@headings-font-family:    @font-family-serif;
    -
    -
    -// Components
    -@component-active-bg:            @fa-green;
    -
    -
    -// Labels
    -@label-brand-bg:                    @fa-green;
    -@label-dark-bg:                     @gray-dark;
    -
    -// Navbar
    -@navbar-height:                     40px;
    -@navbar-inverse-brand-color:        #fff;
    -
    -// Reset inverted navbar basics
    -@navbar-inverse-color:                      mix(@fa-green, #fff, 50%);
    -@navbar-inverse-bg:                         @fa-green;
    -@navbar-inverse-border:                     @jumbotron-border;
    -
    -// Inverted navbar links
    -@navbar-inverse-link-color:                 mix(@fa-green, #fff, 35%);
    -@navbar-inverse-link-hover-color:           #fff;
    -@navbar-inverse-link-active-bg:             @navbar-inverse-border;
    -
    -// Inverted navbar toggle
    -@navbar-inverse-toggle-hover-bg:            @jumbotron-color;
    -@navbar-inverse-toggle-border-color:        mix(@jumbotron-color, @fa-green, 75%);
    -
    -
    -// Jumbotron
    -@jumbotron-color:               #fff;
    -@jumbotron-bg:                  @fa-green;
    -
    -
    -// Form states and alerts
    -@state-success-text:            @fa-green;
    -@state-success-bg:              mix(@fa-green, #fff, 6%);
    -@state-success-border:          darken(spin(@state-success-bg, -10), 5%);
    -
    -@state-info-text:               mix(@blue-dark, @blue, 50%);
    -@state-info-bg:                 @blue-lighter;
    -@state-info-border:             darken(spin(@state-info-bg, -10), 7%);
    -
    -  @state-danger-text:              @brand-danger;
    -@state-danger-bg:                mix(@state-danger-text,#fff,10%);
    -@state-danger-border:            darken(spin(@state-danger-bg, -10), 5%);
    -
    -
    -// Carousel
    -@carousel-text-shadow:          0 1px 0 rgba(255,255,255,0.25);
    -
    -@carousel-control-color:        @fa-green-dark;
    -@carousel-control-font-size:    30px;
    -
    -
    -// Code
    -@pre-border-color:              #eee;
    -
    -
    -// Sections
    -@section-emphasized-bg:       #fff;
    -
    -//== Type
    -//** Text muted color
    -@text-muted:                  mix(@gray-light,@gray-lighter,50%);
    -
    -
    -@alert-well-bg:               @panel-default-heading-bg;
    -@alert-well-text:             @text-color;
    -@alert-well-border:           @panel-default-border;
    -
    -@alert-default-bg:            transparent;
    -@alert-default-text:          @text-color;
    -@alert-default-border:        mix(#fff,@panel-default-border,40%);
    -
    -
    -
    -
    -//@panel-default-text:          @gray-dark;
    -//@panel-default-border:        @panel-default-heading-bg;
    -//@panel-default-heading-bg:    #f5f5f5;
    -
    -@panel-primary-text:          #fff;
    -@panel-primary-border:        mix(#fff,@brand-primary,50%);
    -@panel-primary-heading-bg:    @brand-primary;
    -
    -@panel-success-text:          #fff;
    -@panel-success-border:        mix(#fff,@brand-success,50%);
    -@panel-success-heading-bg:    @brand-success;
    -
    -@panel-info-text:             #fff;
    -@panel-info-border:           mix(#fff,@brand-info,50%);
    -@panel-info-heading-bg:       @brand-info;
    -
    -@panel-warning-text:          #fff;
    -@panel-warning-border:        mix(#fff,@brand-warning,50%);
    -@panel-warning-heading-bg:    @brand-warning;
    -
    -@panel-danger-text:           #fff;
    -@panel-danger-border:         mix(#fff,@brand-danger,50%);
    -@panel-danger-heading-bg:     @brand-danger;
    diff --git a/library/font_awesome/src/assets/less/site/bootstrap/wells.less b/library/font_awesome/src/assets/less/site/bootstrap/wells.less
    deleted file mode 100644
    index cd2b24ebd..000000000
    --- a/library/font_awesome/src/assets/less/site/bootstrap/wells.less
    +++ /dev/null
    @@ -1,10 +0,0 @@
    -.well-transparent { background-color: transparent; }
    -
    -.well-lg {
    -  padding: @buffer-xl;
    -  font-size: @font-size-large + 3;
    -  h1 { font-size: 3em; }
    -  h2 { font-size: 2em; }
    -  h1, h2 { margin-top: 0; }
    -  p { margin-bottom: 30px; }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/bsap-ad.less b/library/font_awesome/src/assets/less/site/bsap-ad.less
    deleted file mode 100644
    index 387f98e04..000000000
    --- a/library/font_awesome/src/assets/less/site/bsap-ad.less
    +++ /dev/null
    @@ -1,15 +0,0 @@
    -div.bsap {
    -  margin-bottom: 20px;
    -  a {
    -    display: inline-block !important;
    -    border-bottom: inherit !important;
    -    margin: 0 15px 20px !important;
    -  }
    -  a.adhere {
    -    background: inherit !important;
    -    border: 1px solid #ccc !important;
    -    &:hover {
    -      background: mix(#000,@jumbotron-bg,15%) !important;
    -    }
    -  }
    -}
    \ No newline at end of file
    diff --git a/library/font_awesome/src/assets/less/site/example-rating.less b/library/font_awesome/src/assets/less/site/example-rating.less
    deleted file mode 100644
    index 92fd968d0..000000000
    --- a/library/font_awesome/src/assets/less/site/example-rating.less
    +++ /dev/null
    @@ -1,25 +0,0 @@
    -.rating {
    -  unicode-bidi: bidi-override;
    -  direction: rtl;
    -
    -  font-size: 30px;
    -  span.star {
    -    font-family: FontAwesome;
    -    font-weight: normal;
    -    font-style: normal;
    -    display: inline-block;
    -    &:hover {
    -      cursor: pointer;
    -    }
    -  }
    -  span.star:before {
    -    content: "\f006"; // empty star
    -    padding-right: 5px;
    -    color: @gray-light;
    -  }
    -
    -  span.star:hover:before, span.star:hover ~ span.star:before {
    -    content: "\f005"; // solid star
    -    color: #e3cf7a;
    -  }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/feature-list.less b/library/font_awesome/src/assets/less/site/feature-list.less
    deleted file mode 100644
    index e8d4fefc7..000000000
    --- a/library/font_awesome/src/assets/less/site/feature-list.less
    +++ /dev/null
    @@ -1,19 +0,0 @@
    -.feature-list {
    -  .col-md-4 { margin-bottom: 22px; }
    -  h4 {
    -    .fa:before {
    -      vertical-align: -10%;
    -      font-size: 28px;
    -      display: inline-block;
    -      width: 30/28em;
    -      text-align: center;
    -      margin-right: 5px;
    -      //      color: mix(@grayLight, @grayLighter, 70%);
    -
    -      // Gradient on the icons
    -      //      background: -webkit-linear-gradient(mix(@grayLight, @grayLighter, 50%), mix(@gray, @grayLight, 50%));
    -      //      -webkit-background-clip: text;
    -      //      -webkit-text-fill-color: transparent;
    -    }
    -  }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/fontawesome-icon-list.less b/library/font_awesome/src/assets/less/site/fontawesome-icon-list.less
    deleted file mode 100644
    index 49dc1b003..000000000
    --- a/library/font_awesome/src/assets/less/site/fontawesome-icon-list.less
    +++ /dev/null
    @@ -1,33 +0,0 @@
    -.fontawesome-icon-list {
    -  margin-top: 22px;
    -  .fa-hover {
    -    a {
    -      .text-ellipsis;
    -      display: block;
    -      color: @gray-darker;
    -      line-height: 32px;
    -      height: 32px;
    -      padding-left: 10px;
    -      border-radius: @border-radius-base;
    -
    -      .fa {
    -        width: 32px;
    -        font-size: 14px;
    -        display: inline-block;
    -        text-align: right;
    -        margin-right: 10px;
    -      }
    -
    -      &:hover {
    -        background-color: @fa-green;
    -        color: @jumbotron-color;
    -        text-decoration: none;
    -        .fa {
    -          font-size: 28px;
    -          vertical-align: -6px;
    -        }
    -        .text-muted { color: mix(@jumbotron-color, @fa-green, 70%); }
    -      }
    -    }
    -  }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/footer.less b/library/font_awesome/src/assets/less/site/footer.less
    deleted file mode 100644
    index bf895b338..000000000
    --- a/library/font_awesome/src/assets/less/site/footer.less
    +++ /dev/null
    @@ -1,55 +0,0 @@
    -#footer {
    -  background-color: lighten(@fa-green, 2%);
    -  border-top: 1px solid @jumbotron-border;
    -  color: mix(@jumbotron-color, @fa-green, 60%);
    -  text-shadow: 0 1px 0 rgba(0,0,0,0.15);
    -  margin-top: 60px;
    -  a {
    -    color: mix(@jumbotron-color, @fa-green, 80%);
    -    border-bottom: dotted 1px mix(@jumbotron-color, @fa-green, 60%);
    -    &:hover {
    -      color: @jumbotron-color;
    -      text-decoration: none;
    -      border-bottom: solid 1px @jumbotron-color;
    -    }
    -  }
    -  .container {
    -    padding-top: 50px;
    -    padding-bottom: 55px;
    -  }
    -  .project { margin-top: 10px; }
    -
    -  #inventory {
    -    a {
    -      width: 220px;
    -      overflow: hidden;
    -      display: inline-block;
    -      border-bottom: inherit;
    -      margin: 0 15px 20px;
    -
    -    }
    -    #CVADP2Y { display: inline; }
    -  }
    -}
    -
    -
    -// Sticky Footer Styles
    -// --------------------
    -
    -//html, body { height: 100%; }
    -//
    -//#wrap {
    -//  min-height: 100%;
    -//  height: auto !important;
    -//  height: 100%;
    -//}
    -//
    -//.sticky-footer();
    -//
    -//.sticky-footer(@footer-height: 356px, @footer-margin: 60px) {
    -//  #wrap {
    -//    margin: 0 auto -(@footer-height);
    -//    padding: 0 0 (@footer-height + @footer-margin);
    -//  }
    -//  #footer { height: @footer-height; }
    -//}
    diff --git a/library/font_awesome/src/assets/less/site/fusion-ad.less b/library/font_awesome/src/assets/less/site/fusion-ad.less
    deleted file mode 100644
    index 41e446ad5..000000000
    --- a/library/font_awesome/src/assets/less/site/fusion-ad.less
    +++ /dev/null
    @@ -1,27 +0,0 @@
    -#fusionads {
    -  float: right;
    -  width: 300px;
    -  margin-left: 30px;
    -  .fusion-img {
    -    float: left;
    -    padding-right: 10px;
    -  }
    -  .fusion-poweredby {
    -    color: @gray-light;
    -    margin-top: 2px;
    -    font-size: 12px;
    -    display: block;
    -  }
    -}
    -
    -.vertical-ad #fusionads {
    -  float: none;
    -  width: 130px;
    -  margin-left: 0;
    -  .fusion-img {
    -    float: none;
    -    display: block;
    -    padding-right: 0;
    -    padding-bottom: 10px;
    -  }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/jumbotron-carousel.less b/library/font_awesome/src/assets/less/site/jumbotron-carousel.less
    deleted file mode 100644
    index 880f4c5a6..000000000
    --- a/library/font_awesome/src/assets/less/site/jumbotron-carousel.less
    +++ /dev/null
    @@ -1,71 +0,0 @@
    -@size: 220px;
    -#icon-carousel {
    -  margin-top: @buffer-sm;
    -  font-size: @size;
    -  text-align: center;
    -  line-height: @size + 30;
    -  text-shadow: 0 2px 0 rgba(0,0,0,0.15);
    -}
    -.carousel-control {
    -  top: @size + 10px;
    -  .square(30px);
    -  border-width: 0;
    -  font-size: 30px;
    -  line-height: 25px;
    -  left: 300/2 - 36px;
    -  &.right {
    -    left: auto;
    -    right: 300/2 - 36px;
    -  }
    -  &.right, &.left {
    -    background-image: none;
    -    filter: none;
    -  }
    -}
    -
    -
    -.jumbotron-carousel {
    -  padding-top: 40px;
    -  .btn {
    -    margin-top: @buffer-lg;
    -    font-family: @font-family-serif;
    -    font-size: 24px;
    -    padding: 17px 30px;
    -    color: @jumbotron-color;
    -    border-color: mix(@jumbotron-color, @jumbotron-bg, 75%);
    -    background-color: transparent;
    -    text-shadow: 0 1px 0 rgba(0,0,0,0.15);
    -    &:hover {
    -      background-color: mix(@jumbotron-color, @jumbotron-bg, 95%);
    -      border-color: mix(@jumbotron-color, @jumbotron-bg, 95%);
    -      color: @jumbotron-bg;
    -      text-shadow: 0 -1px 0 @jumbotron-color;
    -    }
    -  }
    -  .shameless-self-promotion {
    -    margin-top: @buffer-lg;
    -    font-size: @font-size-base;
    -    line-height: @line-height-base;
    -    color: mix(@jumbotron-color, @jumbotron-bg, 60%);
    -    text-shadow: 0 1px 0 rgba(0,0,0,0.15);
    -    a {
    -      color: mix(@jumbotron-color, @jumbotron-bg, 80%);
    -      border-bottom: dotted 1px mix(@jumbotron-color, @jumbotron-bg, 50%);
    -      &:hover {
    -        color: @jumbotron-color;
    -        text-decoration: none;
    -        border-bottom: solid 1px @jumbotron-color;
    -      }
    -    }
    -  }
    -  a {
    -    color: mix(@jumbotron-color, @fa-green, 70%);
    -
    -    // STATE: hover, focus, active
    -    &:hover, &:focus, &:active {
    -      border-color: @fa-green-dark;
    -      background: @fa-green-dark;
    -      color: @jumbotron-color;
    -    }
    -  }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/kickstarter.less b/library/font_awesome/src/assets/less/site/kickstarter.less
    deleted file mode 100644
    index 689a8c04a..000000000
    --- a/library/font_awesome/src/assets/less/site/kickstarter.less
    +++ /dev/null
    @@ -1,3 +0,0 @@
    -.btn-kickstarter {
    -  .button-variant(#fff, #489fdf, mix(#000,#489fdf,10%));
    -}
    diff --git a/library/font_awesome/src/assets/less/site/layout.less b/library/font_awesome/src/assets/less/site/layout.less
    deleted file mode 100644
    index 69cc0b4d4..000000000
    --- a/library/font_awesome/src/assets/less/site/layout.less
    +++ /dev/null
    @@ -1 +0,0 @@
    -section { margin-top: 40px; }
    diff --git a/library/font_awesome/src/assets/less/site/lazy.less b/library/font_awesome/src/assets/less/site/lazy.less
    deleted file mode 100644
    index 5f6461d8f..000000000
    --- a/library/font_awesome/src/assets/less/site/lazy.less
    +++ /dev/null
    @@ -1,113 +0,0 @@
    -@buffer-none:         0px;
    -@buffer-sm:           5px;
    -@buffer-md:           10px;
    -@buffer-lg:           22px;
    -@buffer-xl:           40px;
    -
    -.padding-none         { padding: @buffer-none !important; }
    -.padding              { padding: @buffer-md !important; }
    -.padding-sm           { padding: @buffer-sm !important; }
    -.padding-lg           { padding: @buffer-lg !important; }
    -.padding-xl           { padding: @buffer-xl !important; }
    -
    -.padding-top-none     { padding-top: @buffer-none !important; }
    -.padding-top          { padding-top: @buffer-md !important; }
    -.padding-top-sm       { padding-top: @buffer-sm !important; }
    -.padding-top-lg       { padding-top: @buffer-lg !important; }
    -.padding-top-xl       { padding-top: @buffer-xl !important; }
    -
    -.padding-right-none   { padding-right: @buffer-none !important; }
    -.padding-right        { padding-right: @buffer-md !important; }
    -.padding-right-sm     { padding-right: @buffer-sm !important; }
    -.padding-right-lg     { padding-right: @buffer-lg !important; }
    -.padding-right-xl     { padding-right: @buffer-xl !important; }
    -
    -.padding-bottom-none  { padding-bottom: @buffer-none !important; }
    -.padding-bottom       { padding-bottom: @buffer-md !important; }
    -.padding-bottom-sm    { padding-bottom: @buffer-sm !important; }
    -.padding-bottom-lg    { padding-bottom: @buffer-lg !important; }
    -.padding-bottom-xl    { padding-bottom: @buffer-xl !important; }
    -
    -.padding-left-none    { padding-left: @buffer-none !important; }
    -.padding-left         { padding-left: @buffer-md !important; }
    -.padding-left-sm      { padding-left: @buffer-sm !important; }
    -.padding-left-lg      { padding-left: @buffer-lg !important; }
    -.padding-left-xl      { padding-left: @buffer-xl !important; }
    -
    -.margin-none          { margin: @buffer-none !important; }
    -.margin               { margin: @buffer-md !important; }
    -.margin-sm            { margin: @buffer-sm !important; }
    -.margin-lg            { margin: @buffer-lg !important; }
    -.margin-xl            { margin: @buffer-xl !important; }
    -
    -.margin-top-none      { margin-top: @buffer-none !important; }
    -.margin-top           { margin-top: @buffer-md !important; }
    -.margin-top-sm        { margin-top: @buffer-sm !important; }
    -.margin-top-lg        { margin-top: @buffer-lg !important; }
    -.margin-top-xl        { margin-top: @buffer-xl !important; }
    -
    -.margin-right-none    { margin-right: @buffer-none !important; }
    -.margin-right         { margin-right: @buffer-md !important; }
    -.margin-right-sm      { margin-right: @buffer-sm !important; }
    -.margin-right-lg      { margin-right: @buffer-lg !important; }
    -.margin-right-xl      { margin-right: @buffer-xl !important; }
    -
    -.margin-bottom-none   { margin-bottom: @buffer-none !important; }
    -.margin-bottom        { margin-bottom: @buffer-md !important; }
    -.margin-bottom-sm     { margin-bottom: @buffer-sm !important; }
    -.margin-bottom-lg     { margin-bottom: @buffer-lg !important; }
    -.margin-bottom-xl     { margin-bottom: @buffer-xl !important; }
    -
    -.margin-left-none     { margin-left: @buffer-none !important; }
    -.margin-left          { margin-left: @buffer-md !important; }
    -.margin-left-sm       { margin-left: @buffer-sm !important; }
    -.margin-left-lg       { margin-left: @buffer-lg !important; }
    -.margin-left-xl       { margin-left: @buffer-xl !important; }
    -
    -.border-left-none     { border-left: none !important; }
    -.border-right-none    { border-right: none !important; }
    -.border-bottom-none   { border-bottom: none !important; }
    -.border-top-none      { border-top: none !important; }
    -
    -.text-sm              { font-size: @font-size-small !important; }
    -.text-base            { font-size: @font-size-base !important; }
    -.text-md              { font-size: @font-size-base + 2 !important; }
    -.text-lg              { font-size: @font-size-large !important; }
    -
    -
    -.display-block { display: block; } // use to swap an anchor tag to span a whole row to make click target larger
    -.no-underline { text-decoration: none !important; }
    -.clickable { cursor: pointer; }
    -.strong { font-weight: bold; }
    -.em { font-style: italic; }
    -.small { font-size: 85%; } // Ex: 14px base font * 85% = about 12px
    -.no-link { color: @gray-dark; }
    -
    -.text-sans-serif { font-family: @font-family-sans-serif; }
    -.text-ellipsis { .text-overflow(); } // truncates text to a single line with an ellipsis at the end
    -.text-default {
    -  font-family: @font-family-base;
    -  font-size: @font-size-base;
    -  line-height: @line-height-base;
    -  font-weight: normal;
    -}
    -.text-color-default {
    -  color: @text-color;
    -}
    -.text-hilite {
    -  color: @link-color;
    -  &:hover {
    -    color: @link-hover-color;
    -    text-decoration: underline;
    -  }
    -}
    -.text-strike { text-decoration: line-through; }
    -.text-upper { text-transform: uppercase; }
    -.text-lower { text-transform: lowercase; }
    -
    -#no-search-results {
    -  display: none;
    -}
    -
    -.valign-baseline { vertical-align: baseline !important; }
    -.valign-middle { vertical-align: middle !important; }
    diff --git a/library/font_awesome/src/assets/less/site/responsive/screen-lg.less b/library/font_awesome/src/assets/less/site/responsive/screen-lg.less
    deleted file mode 100644
    index ae404bb8e..000000000
    --- a/library/font_awesome/src/assets/less/site/responsive/screen-lg.less
    +++ /dev/null
    @@ -1,58 +0,0 @@
    -@media (min-width: @screen-lg) {
    -  #icon-carousel {
    -    @size: 240px;
    -    font-size: @size;
    -    line-height: @size + 35;
    -    margin-top: @buffer-lg;
    -  }
    -
    -  .carousel-control {
    -    top: @size + 35px;
    -    .square(40px);
    -    font-size: 40px;
    -    line-height: 40px;
    -    left: 370/2 - 52px;
    -    &.right {
    -      right: 370/2 - 52px;
    -    }
    -  }
    -
    -  .jumbotron-ad {
    -    padding: 50px 0;
    -    h1 {
    -      margin-top: 25px;
    -      font-size: 90px;
    -    }
    -    p {
    -      font-size: 28px;
    -      margin: 35px 0 20px;
    -    }
    -  }
    -
    -  .jumbotron-carousel {
    -    padding: 50px 0;
    -    h1 { font-size: 100px; }
    -    p {
    -      font-size: 32px;
    -      margin: 20px 0;
    -    }
    -    .btn-large {
    -      font-size: 30px;
    -      padding: 21px 35px;
    -    }
    -  }
    -
    -  .stripe-ad .lead { padding-top: 0; }
    -
    -  .lead {
    -    font-size: 26px;
    -    line-height: 36px;
    -  }
    -
    -  .fort-awesome {
    -    .tagline {  }
    -    .action { width: 18%; }
    -  }
    -
    -  .hide-lg { display: none; }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/responsive/screen-md.less b/library/font_awesome/src/assets/less/site/responsive/screen-md.less
    deleted file mode 100644
    index bc46917fb..000000000
    --- a/library/font_awesome/src/assets/less/site/responsive/screen-md.less
    +++ /dev/null
    @@ -1,3 +0,0 @@
    -@media (min-width: @screen-md) and (max-width: @screen-md-max) {
    -  .hide-md { display: none; }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/responsive/screen-sm-up.less b/library/font_awesome/src/assets/less/site/responsive/screen-sm-up.less
    deleted file mode 100644
    index b7037e54d..000000000
    --- a/library/font_awesome/src/assets/less/site/responsive/screen-sm-up.less
    +++ /dev/null
    @@ -1,18 +0,0 @@
    -@media (min-width: @screen-sm) {
    -  .signup-input {
    -    padding-right: 0;
    -    input {
    -      border-top-right-radius: 0;
    -      border-bottom-right-radius: 0;
    -      border-right-width: 0;
    -    }
    -  }
    -  .signup-button {
    -    padding-left: 0;
    -    .btn {
    -      border-top-left-radius: 0;
    -      border-bottom-left-radius: 0;
    -    }
    -  }
    -
    -}
    diff --git a/library/font_awesome/src/assets/less/site/responsive/screen-sm.less b/library/font_awesome/src/assets/less/site/responsive/screen-sm.less
    deleted file mode 100644
    index 4c782ca22..000000000
    --- a/library/font_awesome/src/assets/less/site/responsive/screen-sm.less
    +++ /dev/null
    @@ -1,49 +0,0 @@
    -@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
    -  #icon-carousel {
    -    @size: 200px;
    -    font-size: @size;
    -    line-height: @size + 30;
    -  }
    -  .carousel-control {
    -    top: @size - 10px;
    -    .square(30px);
    -    left: 228/2 - 36px;
    -    &.right {
    -      right: 228/2 - 36px;
    -    }
    -  }
    -
    -  .jumbotron-carousel {
    -    padding: 50px 0;
    -    h1 { font-size: 65px; }
    -    p { font-size: 23px; }
    -    .shameless-self-promotion { font-size: 12px; }
    -  }
    -
    -  .jumbotron-ad {
    -    p { font-size: 24px; }
    -  }
    -
    -  .jumbotron-icon {
    -    h1 small {
    -      display: block;
    -      margin-top: 15px;
    -      margin-left: 0;
    -      line-height: 20px;
    -    }
    -  }
    -
    -  .stripe-ad .lead {
    -    margin: 0;
    -    padding-top: 0;
    -    font-size: 19px;
    -  }
    -
    -  .fort-awesome {
    -    .action { width: 33%; }
    -  }
    -
    -  .hide-sm { display: none; }
    -  .v-get-started .get-started-cdn { padding: 5px 22px 22px 22px; }
    -  
    -}
    diff --git a/library/font_awesome/src/assets/less/site/responsive/screen-xs.less b/library/font_awesome/src/assets/less/site/responsive/screen-xs.less
    deleted file mode 100644
    index 156e5bc38..000000000
    --- a/library/font_awesome/src/assets/less/site/responsive/screen-xs.less
    +++ /dev/null
    @@ -1,95 +0,0 @@
    -@media (max-width: @screen-xs-max) {
    -  #icon-carousel {
    -    @size: 180px;
    -    font-size: @size;
    -    line-height: @size + 30;
    -    width: 280px;
    -    margin: 30px auto 0;
    -  }
    -  .carousel-control {
    -    top: 40%;
    -    .square(44px);
    -    font-size: 44px;
    -    line-height: 44px;
    -    left: -7px;
    -    &.right { right: -7px; }
    -  }
    -
    -  .jumbotron-carousel {
    -    h1 { font-size: 58px; }
    -    p { font-size: 24px; }
    -    .btn-large {
    -      font-size: 20px;
    -      padding: 14px 26px;
    -    }
    -    .shameless-self-promotion { font-size: 12px; }
    -  }
    -
    -  .jumbotron-ad {
    -    h1 { font-size: 39px; }
    -    p {
    -      font-size: 20px;
    -      margin-bottom: 20px;
    -    }
    -  }
    -
    -  .jumbotron-icon {
    -    .fa-1, .fa-2, .fa-3, .fa-4, .fa-5, .fa-6 { margin-right: 0; }
    -    .fa-6 { font-size: 16em; }
    -    h1 small {
    -      display: block;
    -      margin-top: 15px;
    -      margin-left: 0;
    -      line-height: 20px;
    -    }
    -  }
    -
    -  .stripe-ad .lead {
    -    margin-top: @buffer-lg;
    -    padding: 0;
    -  }
    -
    -  #fusionads {
    -    float: none;
    -    display: block;
    -    margin-left: 0;
    -    .clearfix();
    -  }
    -
    -  .vertical-ad #fusionads {
    -    width: 300px;
    -    .fusion-img {
    -      float: left;
    -      padding-right: 10px;
    -    }
    -  }
    -
    -
    -  .fonticons {
    -    padding: 15px 0;
    -    .tagline, .action { display: block; }
    -    .tagline { margin-bottom: 10px; }
    -  }
    -
    -  .hide-xs { display: none; }
    -
    -  .block-xs { display: block; }
    -
    -  .modal-footer .block-xs + .block-xs {
    -    margin-left: 0;
    -    margin-top: 10px;
    -  }
    -
    -
    -  .navbar-org { display: none; }
    -  #banner {
    -    text-align: center;
    -    .message-container, .tagline, .action { display: block; }
    -    .tagline { padding-right: 0; }
    -    .btn-primary { margin-top: 10px; }
    -  }
    -
    -  .signup-button .btn { white-space: normal; }
    -  .v-get-started .get-started-cdn { padding: 5px 22px 22px 22px; }
    -
    -}
    diff --git a/library/font_awesome/src/assets/less/site/search.less b/library/font_awesome/src/assets/less/site/search.less
    deleted file mode 100644
    index a9c8bb686..000000000
    --- a/library/font_awesome/src/assets/less/site/search.less
    +++ /dev/null
    @@ -1,40 +0,0 @@
    -#search {
    -  position: relative;
    -  font-size: 18px;
    -  padding-top: 40px;
    -  margin: -20px auto 0px;
    -
    -  label {
    -    position: absolute;
    -    left: 17px;
    -    top: 51px;
    -  }
    -
    -  #search-input, .hint {
    -    padding-left: 43px;
    -    padding-right: 43px;
    -    border-radius: 23px;
    -  }
    -
    -  .hint {
    -    color: #aaa;
    -  }
    -
    -  #search-clear {
    -    text-decoration: none;
    -    position: absolute;
    -    right: 18px;
    -    top: 54px;
    -    color: @text-muted;
    -    &:hover {
    -      color: mix(#000, @text-muted, 20%);
    -    }
    -  }
    -}
    -
    -#search-results {
    -  em {
    -    font-style: normal;
    -    text-decoration: underline;
    -  }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/social-buttons.less b/library/font_awesome/src/assets/less/site/social-buttons.less
    deleted file mode 100644
    index 5b84d60d0..000000000
    --- a/library/font_awesome/src/assets/less/site/social-buttons.less
    +++ /dev/null
    @@ -1,19 +0,0 @@
    -#social-buttons {
    -  ul.list-inline { margin-bottom: 0; }
    -
    -  padding: 22px 0 17px;
    -  text-align: center;
    -  background-color: #f5f5f5;
    -  border-top: 1px solid #fff;
    -  border-bottom: 1px solid #eee;
    -}
    -
    -#subscribe {
    -  padding: 22px 0 17px;
    -  text-align: center;
    -}
    -
    -label.error {
    -  color: @state-danger-text;
    -  margin-top: 5px;
    -}
    diff --git a/library/font_awesome/src/assets/less/site/store.less b/library/font_awesome/src/assets/less/site/store.less
    deleted file mode 100644
    index 25daecc12..000000000
    --- a/library/font_awesome/src/assets/less/site/store.less
    +++ /dev/null
    @@ -1,115 +0,0 @@
    -// product vars
    -@shirt-kellygreen: #249265;
    -@shirt-black: #151010;
    -@shirt-royalblue: #2A4DB3;
    -@shirt-navy: #2E2737;
    -@shirt-silver: #D4D2D3;
    -@shirt-asphalt: #535059;
    -
    -.content-underlay {
    -  margin-bottom: -180px;
    -  border-bottom: 1px solid @jumbotron-border;
    -  padding-bottom: 100px;
    -  background-color: lighten(@jumbotron-bg, 2%);
    -}
    -
    -
    -.product {
    -  transition: box-shadow 0.25s ease-in-out, transform 0.25s ease-in-out;
    -  transform: scale(0.99);
    -  z-index: 2;
    -  position: relative;
    -  display: block;
    -  margin-top: @buffer-xl;
    -  color: @text-color;
    -  text-decoration: none;
    -  background-color: #fff;
    -  border-radius: @border-radius-small;
    -  padding: @buffer-lg;
    -  .box-shadow(0 4px 2px 0 rgba(127,127,127,.2));
    -
    -  &:hover, &:focus {
    -    transform: scale(1.0);
    -    .box-shadow(0 4px 2px 0 rgba(127,127,127,.4));
    -    text-decoration: none;
    -    color: @text-color;
    -
    -    .product-sizes {
    -      opacity: 0.75;
    -    }
    -  }
    -  img { max-width: 100%; }
    -  li {
    -    padding: @buffer-sm;
    -  }
    -  li.active {
    -    cursor: default;
    -    text-decoration: none;
    -  }
    -
    -  .swatch {
    -    display: inline-block;
    -    width: 30px;
    -    height: 30px;
    -
    -    &.swatch-kellygreen {
    -      background-color: @shirt-kellygreen;
    -    }
    -
    -    &.swatch-black {
    -      background-color: @shirt-black;
    -    }
    -
    -    &.swatch-navy {
    -      background-color: @shirt-navy;
    -    }
    -
    -    &.swatch-silver {
    -      background-color: @shirt-silver;
    -    }
    -
    -    &.swatch-asphalt {
    -      background-color: @shirt-asphalt;
    -    }
    -
    -    &.swatch-royalblue {
    -      background-color: @shirt-royalblue;
    -    }
    -  }
    -}
    -
    -.product-sizes {
    -  transition: opacity 0.25s ease-in-out;
    -  position: absolute;
    -  top: 6px;
    -  right: 6px;
    -  border-radius: @border-radius-base;
    -  background-color: #fff;
    -  font-size: 21px;
    -  line-height: 21px;
    -  padding: @buffer-sm @buffer-md;
    -  color: @text-muted;
    -  opacity: 0.25;
    -}
    -
    -.product-title {
    -  height: 52px;
    -}
    -
    -// calls-to-action
    -.product-cta {
    -  display: block;
    -  margin-top: @buffer-xl;
    -  color: @text-color;
    -  text-decoration: none;
    -  border-radius: @border-radius-base;
    -  padding: @buffer-lg;
    -}
    -
    -.cta-content {
    -  margin-bottom: @buffer-lg;
    -}
    -
    -.cta-fine-print {
    -  margin-top: @buffer-lg;
    -}
    diff --git a/library/font_awesome/src/assets/less/site/stripe-ad.less b/library/font_awesome/src/assets/less/site/stripe-ad.less
    deleted file mode 100644
    index cef0aa04e..000000000
    --- a/library/font_awesome/src/assets/less/site/stripe-ad.less
    +++ /dev/null
    @@ -1,4 +0,0 @@
    -.stripe-ad {
    -  margin-bottom: 22px;
    -  .lead { padding-top: 5px; }
    -}
    diff --git a/library/font_awesome/src/assets/less/site/sumome.less b/library/font_awesome/src/assets/less/site/sumome.less
    deleted file mode 100644
    index 135f5ff26..000000000
    --- a/library/font_awesome/src/assets/less/site/sumome.less
    +++ /dev/null
    @@ -1,4 +0,0 @@
    -.sumome-popup .sumome-popup-content .sumome-popup-form h2.sumome-popup-heading {
    -  font-family: @font-family-base;
    -  text-align: left !important;
    -}
    diff --git a/library/font_awesome/src/assets/less/site/textured-bg.less b/library/font_awesome/src/assets/less/site/textured-bg.less
    deleted file mode 100644
    index 046b2db95..000000000
    --- a/library/font_awesome/src/assets/less/site/textured-bg.less
    +++ /dev/null
    @@ -1,20 +0,0 @@
    -.jumbotron, .navbar-inverse, .navbar-inverse .navbar-nav > li.active > a, .navbar-org, #footer, .content-underlay {
    -  position: relative;
    -  &:after {
    -    content: '';
    -    display: block;
    -    position: absolute;
    -    top: 0;
    -    right: 0;
    -    bottom: 0;
    -    left: 0;
    -    opacity: .15;
    -    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAMAAABHPGVmAAAABGdBTUEAALGPC/xhBQAAAaRQTFRFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMalYaAAAAIx0Uk5TlhaTG6WwoBqyCx6sopscnacgq5cfmR2UkZwhlY4li5IjIiYpjYmQJ4iPJIyHhooog4WBfoSCKyx9gCotf3wuMjEwezN6L3l4NnI1dXd0djc4NHNwOXFvO2o8bjptPWw+aD9mQGtEZWlnQUJDRmNiZEVfYWBLXVxIV0lHTk9KXlJWWFlVVFtNTFpTUVCkyaWwAAAfsklEQVQYGQXBg6JsWYIg0Bh7WlVdVjrz5bN17Ygbto5t2977p3utXhseb5cOkcQlMSvlwcK1KN+kXuZFtaw8UKWGHiFOjR+F43DFHF/nyis8PMwvzc7QdS2qjnykhpWRQjtpLDpQTFUQhrP972J3uIwc3/WaHJF73IT3EHONyQqnTVQIxOGvt7JaF3K5XOM7dyDI1VQv1c0xv3T0lzAQ86iJX3cdkg41x1QCweVIKUGI1bm1XhO1cR+L/oaFys6joNLUSBbURm9bwK9yySmu+6MqCJ24VqSu5NofdmOlOGCp1ci5Ob8EObh89le18MLgAWbH/9ZUCR47kyJmcIUArlxGN2Ugzj/bN6fR9qJeC61niRtk516BTEF7QdOmB60uSSfTQ0TwrYLTiq/CFPBE+2AKf2eiGYkrWyQy44z/1CRs35oHxM4U8tBPNVTAGu4X0dq/5tcZs2TlDO7VVRolsSLyzO9t/aNh2FVvlJJQfLpVr0/qY6o37q0Yo3PxdGKWsibL6V8HxMcYGUev9C5qlrp/cDR1Llr8F8r4oToXReV3Rt8KA32bZwZ/4+38bTq5nqTPOmBjNJ8QK8KWQK8uxdyoNFxrle3Snen1ioqasN3qh+JNVdbGiid0Sbl2/TKfJQ+/cQuOMKw4mtKRN9TBhR1RtF67xTGJGQ8DnuKCq9mhpJgLJWqg9VfSb49kr3W0+DWjGaSSw0vQaapjdCyJoHEQykmbfVGDR90u41jAHpbuNfywT+mt6XpgJFeH4i4U0xRxm6Zu/rHSQv/+9+sG4rSnLJ2zrm75c33ohrzas+eJeBA8D2DBSWPsVGOIq5AsfEzUuNWD52wCbXh2XQyZENdvxrWzzCQk04N7slLfLyj+QZfCsixMS05gcNQwxfJZlkBiPZgC7zhVCjMOtV4weO994s/mVikag3ZnelFcdKVUb2kWMoJ1075OTiv4Wq/wlvvAnMFCN6Ic7MIujcr8b/NDQpaGbX78QR/GUFaTeQIK3OGkm9yxClW8FZvGsXs1Tpcz5WtNSdlDZbV6nglu6YZIfXoucMX99Me+/mYqMBEm4X2YhzRrhMbdL2i7YhttHXwOqWSb55ITmIXscoZzj76Kfa8rrZ0Ay/vhUKErGPfKlBRSyJfcWIidwlfoKnAevyxpUGpikcWZqnz6nDvZIxjGULjGmV+E5QscXHwX4I6MYHYsbEJgxPY6I3Y865Wwfl00a6TQHNPNF2d3k1Ztql4EciNK8/SVIf1+7sxkj5RM23h3nipnfF4U3X62c7VIVQk/twKoDTVwWB+nvlfLCa1bj3J+V3gn6SRqj4EqWOtwjYebhAph8NjHX+Db9mq75Hofkv9fsnrmLc+Cxthn1njneZNPdgfO4hnRGppVsqT/tAn2le397e3fN9E9ovzlL9e5DhdsFPACnKb5gYEZ7zDbrH5EufdFxxs/yxqX+DlXmmMq1HrLKs/z5H/pKj3NLfzhuHCCqg8liB0+vNGn7Sf+tChHoxPOP4cu/362qAtC0kNra8dVyzLP4Mgpf/Y3yAOeb5IyqSMRCXy3+mN2v9Flta4Yn1vBXimEZV/V1I3fRlU8Ed0q0/LQaNn2DOJlB45M5X0aajILyO0k9FJZA2o5ie+V1VwDGdgFebF1vrlT4ry4zQcedHIKBXkeVhsvkxsT8jW97S073GTf22Wm2yBN2TRDVaEldhl15MfHpDOllhIavGPJ+OB5Yje71SlEkGVz/6VEBT+fV9lFh9Od2xxK+a5ry0lU3yjQtcRPiCDSF0smi6c9ZDqbZso6afHA8L3Apl0LJJ7whAq3tY6+ZwkxYArATbCsYfe8U+9KNLtlW98Mbacuu7NR6NhOFzOcQKsA55FD15JuR7xsCCmuI7IO7qlDjxlLRmy02bpLxfoBncftvmGHUu6SYDOK+srqYwklx5dIjqUroTweFRrmQZZGiE5Z2eK2iXy/rD8d/+l5kcylD0Yht2mrdNmqDdgKURofrZWefrnJsVQsWnL48VGOY+AhZTf3qJpc6qhxYWyCNHrLCMnqPBgMulqj5CjaGH4/VajHzFIOK18eaVcu0XC/Cp148YVasVmi4zO9rTMjKhSAZmVvZ3l7bBVVvuQI0rP6XTudT24ZBVosD5PrR8nFMVEKPIJ/3K0qvq3TlG7ZFqkfWccRrGr7t5nGZleYH69t+yLaBKwEj7LtTHZRJkiDN9Kdt0J6BlOZeZh71maSHj4FikgDqcRmsUOsy3ZJhqFehZjNYgrd8utMC3KjYCOTICBQ7MQUILu3aDdxeVFOCNpVUcIX76jEKN9nSWYQ2PNTN3vdC8Qydo/dEWRi6OqW1ZxTNcYrgpeb09MHTZ3njxofDbBQtb6SDnL99QtwslhXy8jqLD8STMoTsbYdTxWwqSXJVmTAp0rZComyl7i6QY6a0iOaVIeBh0Zga4TzYmHN4hYY3Yw2jrNMdLya+rhdUHXkyJnXVfW+qQqbKCq7P8jbs82yX+OrVvKc31RBNPv6WNUiq32h13InyQrUcnlty4rTA3Z6N2nkK6NR+E91Q9tCtg19amUtZFPlF+GzJHj3Ew5TnswP6sFQNo0NK9aPNB1nBpGGRALr1PiN10oUIWfvVgXc1Mgd9ehTEh2MqiwtF1rvq9WMhZAeGx9okMJrWfPEkGkbpAuM6zRXEjcr/DY111+hvsdjXEawhkkcy6n0/z3urraN3gBE1+q2epXs+WTbTVMz44yqw/YZKBq8C2uT74W6H5MlaNZN6ibfZ8W+UCpSoaVl51TVo414nslTf5d3RC23QXov+keW33UzjztU0XFwjWAPrjZOQ1JrePpttq2T2AA89Yh+sVGtqmvPzoOm9+Adb2M1qAP0WHIcSPwkVkM+/pIqwZcWoI69l0UOo8LB2g7t9Tv3Vi3fMNdkZOWthWeVAe17/l9qUvWn60ZQm62fZtZLuVx+hCVRthL+Muadnt9VW91Zog+XeQXDQvNayj+JWgMDO1FMA104HNr7p4YZTs65g+PmYTMPSOMgWw44DVJF2qYv5WXfMCjj3WDXPSTC4rFsuyYfT3Y7Sl2YZaNoveCawhtnnR9MrfXS7GgTxLHrQvfndBk8GyTdKDDRZcYQiv1iL0nQ1tXtbUFxQdDySZRaEXYN+BtDeFt48raTnC6v7lrJqqyqTCuptqGjxv1el2eOOi/XUl6HVeXfyDZfJYVzWUbBIgpC6g1gaxgSIwqLpsJoYfnCGOyVg+ElTZfY98e7Tqq+P/DVpOqcZcIpbR5vfDLd3d5slkyodpDL7nuWrYcvdCOVeeXLg8n73rhuW+NaKOS4UjXHaaiSoW9e2RcL9fMnGvJck56aF3WAWOs8XWFVh3VQKBbG9PisEjmoWyy+ydXEtkmvwFu1nSFzuicrZbJT/1HCg5w3+MwWFFwyjbH26I0Tc6NJ20OXqEZKkeWjb2ceG7s0HTZ8Z0mLpEZhM9tZV5kEsM1macd4p47U9p1ppbLDpX57NPLlo5D0Bls7cNTPNpOgaxuD3cd/M0Mh0qrBFyPyqZd9o4FpHjQZpzhq0NXN3MtayO1duT3th/CC3ZY5cXnH7JWsKY15pFX4i8DeLuJ7PeJ3VhXtvKnS88Lvihto5BF0I2Dw2QF05HazFyxddvOH95draC9Ykfxr7uYyLKO62Yq//rYbCFYJjwJ3F7GHQiuOjAtJjbvk9ZQ1oiOKQCplBUtFjgodM07PqXd2/i6uujasmXTUNkE2NoESofFpdQxYC1Cla/hR0KjrrPqldoN8RJnjYvcQ3nmFATeVQ8c3L10K3u9RoVb2RbBCuIpLOe4Kb/xFdsSbtidaxfTO1O/L3Sqgp1HSiTHIVpKZZUX6hvnMXVSBV7hamutlu/VMikQ//HUi9+FWkpfJ8p6uxmJV1Cr/cJ5btknmghJbOTG35fUVXlgpzeyEpleuvU4/3iED30sCQ94PfrhPHSflunakZn2HKhh6HizLefn3ksOyCze6BfSwav6BgHi7AQtekhN2VGL+b09tw8jI+oqMcNDZTTxdPSd/qOafWHjS+9rmka+VpmC1rKOyCZwI9R/exB3NpeX/2XdjwY2ZQ7NuvrhXthcFxmfKlB+d6PiFVTcLfCmFo/jYDgKnDvYGaCYl49g1vCOHEPslDZJ4S30oux6cYQgox+mbtaaQsK2SomOSjYu0cGl2d1hQDmvNMy35ofp5SAQlS1Jd3XjWY+S/TKg2dD652JYjItaMg3m35fMdsSu7u01d123Z/kmxGTJlesmqCFxXn6n8bpcFEsE8EhwV2Yf7yjRqjC3moDUzr7yJVjnkE/vLgjJsKTPh1rltI75F72/xirBylLxyJS573DJZ6ThJQSuTokUK33+ItnXPCkoBVaJb3+FDw8OurIrjm5qbXq21n3zfRP3IOJJ3asbzU9/FVElp2KRUY4mCA5894qXzDj4qmXPgknUbcQcHzZmbom2ybBmqNZfav7Yw7RWGjFoRy4V1EYK2pXmE1pKUpokwPVCspoACXvIHRbtHNe2mbrCFvIOB437CUsaxk/ejf/2/mN9WtqfGfEWWgzQimpaDGsZXQl03cXTg6rL3zIy8K7FQaMOg0BjcA1H039QE5dJSLFV27t0XaDn9YX9QixC4puw9PEUTtpMf28y6DA3ol/xVQborN+2YnKxgg+Pawk+n/7ZOG7SCkyba5D0n5/Jnnk/HkV2wRWwfwYt3YTuxkn1pzvJMBGxM04w/3taOPYu9ff2DJZ7fBZXuHoO8DUCXJjtdeuDW8kqoxduypFa7MXAm1yPiUkrD1WB4HPaeJ7kp1Y5naGEgOKioLDM/IA19kxzSPPWkue8f9MYb8zfKzFKrKHSMhcQGAoQFMUyk9WvyYG6sBtzvw4EUnmPr2ze3bDztQONFUg0lO1LL3g80L0KtpPP4nK+xIo7q4NMozilxiwQGY1zc5T50ilRjMju+A1/r7N0wofxC2H1uMD11+L4hZyeP5/9u6nIjX20amyz05d2B2ueHcW757vJ3xHlv/D4z0AW4w99+VSop2VnZUtFAURmUMn0r4ofoHg+3bKoaKQlOK7rBfRavPwf17Gem8/ysQynXTvuQ2JdobPfnokPR/l1z/2Wf5PdiIMRJoMDeJfKNwMiU6JoKdHGzs9Qm1U34BbEx5GwUuXvmj5/CWu4gPB0xFyko4BhGVFtbfF12WKx+Bv/9mPhc48MA5Ll6jE72OVON6vFlxoXr268rtmB6MtprC39GGm6UdYcMCK6P4j/9mBKuY+60Yrs/0W/dztduFSdN932r3ej6dqG+uao23pd4kbIEGjsQfjPzn39k/VI2D/cL46Gv49v/mb8CuwwKftmT7rIQrXhXDmusMzvYlHGqz1wDg3/+aP0r5/kAWAvXPm4O0TJ4FcLZYkXYtrkOHXFDxSklG01Mj+rV0nqdQs7rAptbGcUg3Vd32tfQfp0Bmu9V7Gs8aUUxT8FwUeTV/kPu/dLJVVOzlO+Rqc18lknhD4NFHjasnIOpVobONhqTVRHV6p4efQDB9jYBlXZ9XBxfaYStOVhYFKoZFoeJ5yU8/rRXSQEGbQYWwgTGKvy4v072XqWo2ryFSudx8Of3J4sBmo8gP3fDhoClaNnATI9erIzx6h0H0gbbBxOc1fQs2DpwmPgF0RTxW4WKC5KzpVLrSedYV6rQvmqYWXIdMhH0z/LM9GOTAi0wvbKJLQJ7p4b3gUuzh3dpwG0s2GKH89Rso4NXRMmkfMRZbuRQQK0gDAt9G6TfZ+3Bp0lylA3Vspcw8syxSV+3qwSh6RUNbjxNkbiv/wyU1Y/JC/aPOv/4OL8gjarztqbD3dNTO0E5GUuCGiRSbl810vV1qt2I/FIUjxn2UTqdp0RNw1YH4mGeSGUvva6ZLsuiKm/2m4Of2nkHUSjM89JYXpEAOM/XElkoJIZFWHPVCfwTJPIgiremFnfDDp+YXfd4EO+PpbNZPhnV07oypat/Iiu7L9uauJoksdSrwq7RynZ9VhjA8qvaOR+X0n5d/+XsfNyyxy/7/xxfIlXjiPxV0t1IFLzcK12n4iu21d+JGX0kR+heWRNCVY2hQ1ZyYR4OyNmpXXzatE1zb4gF0fvVfoNVF9Z3lPOPT5KcVEFhbLTs5KEdoORurGYcYp+9O0Sv4peGU6MQT3lGk38+LDqyKeLSfD/5x2b/LxvWLnbQMk0sLHkGgtdh5we1knMAr1tJ7Xmry7uVyvWfLHA9hZ0WTwSf3aINPZp7TrN8y5tMUmxNxhRCPHDfJmI+H4fJDtRwWKAtKZNGE3pyEjNZ61NmmcqWhQtYsmKZutGyrXAJQ7uXFrv8A8Na47oObg0/216aUz0AwZ3i5vnj9nOOfTuXedNP9FVUrpsH82+2mIq/GiFU4jH4qaFxyTaVTACM2fongb/ErQE1tyNvtKtDO9U+h4nZw0JOrTdysbvDiLnHacLBrC+FV3mYvf1nGNYqBDjJJOaZZdWwZZUX2jVWKp05ttKzRs6Q/wJpsitdOTGsGrdvSQ3e1cqt081eSdeVjVLN4wUV9KQqEbISaTopru4VW8qlRhPPp/R0qtGqPsDl/gYkYodqgicd1Y2IG/jXx1hyvZuSX2htu1KtZkDe1XVDgQjuRPebUB/IqJUWTXcq8KHvAKtn+G3DtgilAZfNJl+tHDE1uXSeTPmohUluVGFf5FWnTty8+GnrRi7X5S7qLgrow2x+ZN8WMr2GlJh5XrKQbtYomRw/Y+a9+fGWd8QkeFr4jz1C3dsO0mqO7lnZgo04WGVpcXY3HPApZXmfrC8qt8iT5g128NLAjfXQgMKvbcMbfTQax0Q0WtUV75+Wvu5ELodhF2+7SyjyoRjFj2gfJCmm9KokrA4J08dqVLeEUdiVIzEczC8tRDzbe27Wr67tB0zRuwokD6n+lo0vjhpo9nYFuKX5QuILNjFor7zZ5lGHzhp42l/Y3b+7UDSjZBuUTZpJPcxS8qs1P1eZo0ZMAa8tj/IXvBPkxzpZa7Lg/oN5NFkt5j2zwaIms84KiohaPnKE49NWzLTTvXi3szrbiY3EPHn4c6ciJsqnljA4xldB39K9sBcFzyBC5BKIVxFE6/rRaWrWi4ykIjZuEajL68gw85TWyFZ9ilbvzuNCJ5QaIZ6nCfstuZ8d97umloSvnJFffD8zk1mq3afkh4GkjzwYfE3BEuvR3oUmX1S4HyStriBxrobRijsIJvMBeJau9P1a3YWaVQI0hg6o10CTO+TRl28syU/dkYd81f7chuBI3aJNSpTfyaNTUu7mqwVMim5yJ4B91os3hndehiP2C1HMwJufLt+a3ut8CoUZ9W350oljULvbX1SyYPg2FSDHsF5+ld8buR1ceDmHLfRdZBgdQLzXE/E+iZsTK5GCT1xXiIpINMXmp5jvpTdoOcxVrzCizDkX9aJTlgAhHXEoU0h5oTedbdEWb3nVh9IeP/0AC616ro5MZjDBPgNmWaM//qe0Fmv0kloLPk28i3+7XO36Yp1kGdPm+denVt7D6RHxBmlUU36IabbxluBRFktte0s7lvWV2pk3Z2GYelWbIsGfvL9zhEM0zt7lM9lcyEb4Y5zqUdRtPrdboKeub9KhECkje3rrnXN1wVCFdi71VnuwqaNcuLEsR5cwsYtosVHauaXUSaCYzr7grb9p4cv3wXP4Ak/q/Z8v/dQlrpXiO1oNJ9e8zrQfcDIXM81pXQdHMkPSBZCpnSq1yb1+ZeylXsPw/cPD6xvHWsNgCXERB0rafOt6bt7t7IHU1g5Lf5fk8QXNrXio6/9vGq9oHxQeEF2qXVbSt10EPKi82YYRY9LXYw2QqV+oyUI6dSFUKZj1DnbzRXG3hkSYHPQjKaOorUsdBw8tW+XMbg7uG8zxd3cW4NQsF3Ug7uNGL5jc+gN6HpqWeRy6WSdsVnt65uWAiwNlWDL7JPgZjcPkhf+r4B57qpmc3gnOzozM5k/TVTwL2tIS418X5eUmciP66sabjF6EPJp+b4kejrZVkp+0cYVIhE96dcJX0GNdTZbtJI8goUVh67KZ39WB1lVZBD9uHL/Xucfio79U7DDi5BPvF0SK40gvEG4+d4vB82CnWk08ccuYr6V2ls8RQ4Ac7hzfFSpa5daMZG8let59pIBSPNHuRkyp2sTZewClY9f9jym9AU/QXpW4dZqU2e1cR8LwEYndfWM2hV5P1tlcbn8+mQRFUpDZ96CV/6hK9J90Z6ElMzdfEnzV5LUTWEXWrUsAiOumitThkuAxC+77LOlkhkJpM9/rcRJi7GMOCeOBU4cdBp4FuSxbKZ6DzNaz+YPanyUuY8yDsu0sNoh16K44T0j7dHZxCysOds1J8M3qwNJ6mB0AJRBz5lUgji8b5/NBEym7aHpw2prPunQRckfDRvSY8VerSzZllUEXrA4BUk6DTG85VVAJvK22afONWEBlMFtBjHsO1DHFDYb+291tslhzU1IQxbasB8vIAI9MzCAX9Wo5vOipHaHWRtcQR/lAWsoafPINiFNEIhyTG5toHS3i0rY1FC9P61VnR9bV0G3dbplbV65cxSwC+bZtkyA3y5dv6PxtuymlhAlsd6vdcTVsi9TrVXI28pG9nZwsQXcs/WIa750ilhUxMkNm2XXs2Y8O2v+o51qiXQ8Vv+zjD3XmZfrdRs4kwuVXSCXTbver95vmOschGSrUhBnvAB/VuF6Rxa7ptXi5OBx00hflKonHi5RaPdDpJSzF7StHdcpnrDbtt9J4lww5VeECPhLsMBGq9+m95ASpFaMLNkTcxxQwqfq8VYLjeg3jwnY16YZORWRfN1bPK7SnsEmGESNQCrr7yJDEko7el9cgSMIgTUqhxFt3o95UWZiaWg1btxpFKEvqLQBoiIKcFnC3zczCbIagrlzX7fLURO2v6X4GA587rPDetvOLyCqHc6Yww2YcbG8X1aRYVCfVMdzTzM2aRqSZtnI4Lv6zdUKusbp9gf7h19TUZD/AC6JpJCaqSwF0H2roiTO0P/mWtiH/4L/rbj58rYnl9Gsv9H1vXia6XCd7sY0jzjtrKBCrH2aRSnDDsGMMfYcY7UN78avbBbqwS1IYgbij4IPq450Ud02hBFAeYVIFf/Q1Bc72B2LXn16OdipfhaXc9mItqdhEK0WxXZOVXzK+wYRPSMb1jLU10wVa10gPbIc6Owau5zKkr1e2GzZdB/+2VjJWV0PTYMIR7eL7YXuu1CEWsrFsDECmWYZbCshJ1JP0jmqobSRAcgDMHfJkOzZD95dq7ZQpS30XAImJ6qzslN1f/o7aHOrsWCaBSPjBnndHrK7f8hIfdHVk47rpfezvqrfOIyQ4HoXG0/tMrcVcjHsZOvHXnZ/V5XPQgDgMHoS0MKBbeC+MyVguwzkjy1XeDkT23uwOoTSrqpdKs2Nf/whUpvNKXrZnt5v3//UA6dPJCgtxOyrtD50ZfGfOoaEcpxTWO0lvX0zEzV2+n1i+GESda1iAZRuLgKCFVfckTh+9xi3T5g46wshk+iKR1Tre9pOFuQ8w72Q8qdj4L9ul5ePuljWHFw8qz8YM80cOorQlBLLWg8UBcMnP7Ndq9/Ug4kYWr2JzlO7atGkwbyGhSZU4QdMxydoa00Ze1MaVE2JadrtSJwGsfbrl7F0Y2YT3GdwMi3anTMMtD10ldys0b8Oovu1Fqi+Qj2yAOJaPRZrVepMVCBGVimkM8x6KArsu/Pd+ReLvS9df2OoJPffNwNaUB7Mfq7Etv9h3eZWiPjlAOSpaOBzn5KbuRZ3ZzqLQE42wZz6S3dr53KAOZtD5Cd/eLvpktUmePrphRxe2WuUL+62ySxKiWNQxAJHT5xXOU0eVDl2fHyoj0dV1nQn0l1EEKDH9cOs8z2bCA4w/n7EcleleT7aJTcV6jCmO8CO57r7fU/NJ6c8NM9WwMI8zstNVEuThtf0UcFVHiLKslx6uBcnkOHy2zLC4i+XyXOA/ez91G/M+W6f01br6VRU+/qWTIr1b7HsuXNnq2sBkpmnsA6EjYtGV6zrI6yxKyk3Ddqpbu447FTtDN0zrTE3B8L54PhXyB9aqTr3C52OtchdowMax3Uo2Q5370vt0vtCzojBTRwM9/eO0UGQRO5YHq1Nb2s9BlEHNRQ/oRtPKu/CiYBecIle1FAvZ8NUYkDy28ZHoEi/R9ZOGgvmju1FqX/M5P49uDWoPfJP6Js3uDX06qdeqZPaqzYPv73ztSe1eScFg9kCE4cMd+4WoYgTDQqPgExPNYqmSPLiKPn+LlnDT2V16zFKVDCBpzx+htzmWVhSXNTDJB9UHcmbYVqE8UFXwObMJvifnjDL9WOGaWeRsW4UEh0hHNvbvJm3/IKzF1WmWwsJMxer4kvnzWxBGmzkfzjIb/NDxCbcLuC6bujbJ41O0dVqhlY73zQoEjqHnsEQekqKzejcmAHEiEkHz7zsgatb0kH3pmoPgEk0St2AmKYip3MFk9V5Nm7q47sj8T8mIOTjTRt2LLBDp9UVFdI7Pa+p1ozeChH3WIQcar05/j8d2FhZqz1Q3kYMGQiHbLV2i1HEfw6qprmjfyGk+MI9Z3sjM2H+lg2a+q6V79RBx4qZeQi8xXOWnMsfu2tqxyqUuecL3+5ijd0F3Ff+14xx3RJSreZz2JOvYVjeyWLyCdnAp5AKRPLu/FWi9PgLhsQ9ja3bphs0nCimW6GkXEz6XFfbeFMTZxczcBwg4aQz7qDTLsv1s0VzZV+089PVDpMBF7LutaT32frEKnZSzEG40dq62Huqh8NyDBIXJv8tOa31DuRLhk7Byn+j9MByMC7Jd5EtzvXCksA0etm6TbcaQX2RzojFLZpiFebI8qMVyxaddkrvkzv4Pt7iFz9PXmP4AAAAASUVORK5CYII=);
    -    background-image: none\9;
    -  }
    -  .container {
    -    position: relative;
    -    z-index: 2;
    -  }
    -}
    -.jumbotron-icon:after { opacity: .1; }
    diff --git a/library/font_awesome/src/assets/less/site/views.less b/library/font_awesome/src/assets/less/site/views.less
    deleted file mode 100644
    index f0cd3c993..000000000
    --- a/library/font_awesome/src/assets/less/site/views.less
    +++ /dev/null
    @@ -1,50 +0,0 @@
    -// view-specific
    -
    -// reset background
    -.v-get-started,
    -.v-store,
    -.v-accessibility {
    -  background: @alert-well-bg; // resetting for depth
    -}
    -
    -// get started
    -.v-get-started {
    -
    -  .get-started-cdn {
    -    background: @section-emphasized-bg;
    -  }
    -
    -  .jumbotron {
    -    border-bottom: none;
    -  }
    -
    -  // sections
    -  .get-started-cdn {
    -    z-index: 2;
    -    position: relative;
    -    border-radius: @border-radius-base;
    -    padding: @buffer-sm @buffer-xl @buffer-lg @buffer-xl;
    -  }
    -
    -  .hr .hr-text {
    -    background:  @alert-well-bg;
    -    font-family: @font-family-serif;
    -    font-size: (@font-size-large*1.5);
    -  }
    -}
    -
    -// accessibility
    -.v-accessibility {
    -
    -  .accessibility-cdn {
    -    background: @section-emphasized-bg;
    -    border-radius: @border-radius-base;
    -    padding: @buffer-lg;
    -  }
    -
    -  .hr .hr-text {
    -    background:  @alert-well-bg;
    -    font-family: @font-family-serif;
    -    font-size: (@font-size-large*1.5);
    -  }
    -}
    diff --git a/library/font_awesome/src/cdn/error.html b/library/font_awesome/src/cdn/error.html
    deleted file mode 100644
    index c1c577b01..000000000
    --- a/library/font_awesome/src/cdn/error.html
    +++ /dev/null
    @@ -1,64 +0,0 @@
    ----
    -layout: base
    -title: Oh noes!
    -relative_path: ../../
    ----
    -
    -
    diff --git a/library/font_awesome/src/cdn/success.html b/library/font_awesome/src/cdn/success.html
    deleted file mode 100644
    index 585729248..000000000
    --- a/library/font_awesome/src/cdn/success.html
    +++ /dev/null
    @@ -1,65 +0,0 @@
    ----
    -layout: base
    -title: Your Embed Code is on the way!
    -relative_path: ../../
    ----
    -
    -
    -
    -
    -
    -

    - - Great Success! -

    - -

    - Your embed code is on its way. -

    - -

    - We just sent you an email with your new Font Awesome CDN embed code and instructions for what to do next! -

    - -

    - If you don't see the email (sent by "Font Awesome") in your inbox, maybe check your spam folder first. Also, make sure you haven't previously unsubscribed. Still nothing? Try again or get some help. -

    -
    -
    - -
    - -

    Next Steps

    - -
      -
    1. -
      - -
      -
      -

      Check your email

      - -

      - Your embed code should be waiting there for you. From there you can also register a Font Awesome CDN account to help you manage your icons even more easily. -

      - -
      -
      -
    2. - -
    3. -
      - -
      -
      -

      Get ready to use Font Awesome

      - -

      - While you're waiting, dive into how to use Font Awesome. You'll want to add your embed code within the <head> of each template or page that you want to use Font Awesome on. Then, check out the Font Awesome icons and examples to learn how drop icons right into your UI. -

      -
      -
    4. -
    -
    -
    -
    diff --git a/library/font_awesome/src/cheatsheet.html b/library/font_awesome/src/cheatsheet.html deleted file mode 100644 index d33e22ca4..000000000 --- a/library/font_awesome/src/cheatsheet.html +++ /dev/null @@ -1,35 +0,0 @@ ---- -layout: base -title: Font Awesome Cheatsheet -relative_path: ../ ---- -{% capture jumbotron_h1 %}  Cheatsheet{% endcapture %} -{% capture jumbotron_p %}The complete Font Awesome {{ site.fontawesome.version }} icon reference{% endcapture %} - -{% include jumbotron.html %} -{% include stripe-social.html %} - -
    - {% capture stripe_ad_content %} -

    - Print this page to PDF for the complete set of vectors. Or to use on the desktop, install FontAwesome.otf, set it as the font in your application, and copy and paste the icons (not the unicode) directly from this page into your designs. -

    - {% endcapture %} - {% include stripe-ad.html %} - - - -
    - {% assign sorted_icons = icons | expand_aliases | sort_by:'class' %} - - {% for icon in sorted_icons %} -
    - {% if icon.created >= site.fontawesome.major_version %}{{ icon.created }}{% endif %} - - fa-{{ icon.class }} - {% if icon.alias_of %} (alias){% endif %} - [&#x{{ icon.unicode }};] -
    - {% endfor %} -
    -
    diff --git a/library/font_awesome/src/community.html b/library/font_awesome/src/community.html deleted file mode 100644 index be6877b97..000000000 --- a/library/font_awesome/src/community.html +++ /dev/null @@ -1,34 +0,0 @@ ---- -layout: base -title: The Font Awesome Community -navbar_active: community -relative_path: ../ ---- -{% capture jumbotron_h1 %}  Community{% endcapture %} -{% capture jumbotron_p %}Lots of ways to get involved with Font Awesome{% endcapture %} - -{% include jumbotron.html %} -{% include stripe-social.html %} - -
    - {% capture stripe_ad_content %} -

    - Font Awesome has a vibrant community of folks helping each other out. You can - get support, - report bugs, - request new icons, - submit pull requests, and - check upcoming milestones. -

    - {% endcapture %} - {% include stripe-ad.html %} - - {% include community/getting-support.html %} - {% include community/requesting-new-icons.html %} - {% include community/reporting-bugs.html %} - {% include community/submitting-pull-requests.html %} - {% include community/project-milestones.html %} - - {% include thanks-to.html %} - {% include tell-me-thanks.html %} -
    diff --git a/library/font_awesome/src/design.html b/library/font_awesome/src/design.html deleted file mode 100644 index 9c5830d74..000000000 --- a/library/font_awesome/src/design.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/library/font_awesome/src/examples.html b/library/font_awesome/src/examples.html deleted file mode 100644 index 9f14ef11b..000000000 --- a/library/font_awesome/src/examples.html +++ /dev/null @@ -1,43 +0,0 @@ ---- -layout: base -title: Font Awesome Examples -navbar_active: examples -relative_path: ../ ---- -{% capture jumbotron_h1 %}  Examples{% endcapture %} -{% capture jumbotron_p %}Lots of easy ways to use Font Awesome{% endcapture %} - -{% include jumbotron.html %} -{% include stripe-social.html %} - -
    - {% capture stripe_ad_content %} -

    - After you get up and running, you can place Font Awesome icons just about - anywhere with the <i> tag. - Some examples appreciatively re-used from the Bootstrap documentation. -

    - {% endcapture %} - {% include stripe-ad.html %} - -
    -
    - -
    -
    -

    The following examples are kept simple and assume use of Font Awesome CDN, which provides auto-accessibility support. If you are not using the Font Awesome CDN, please see the manual accessibility examples and read more about making your icons more awesome for all users

    -
    -
    - - {% include examples/basic.html %} - {% include examples/larger.html %} - {% include examples/fixed-width.html %} - {% include examples/list.html %} - {% include examples/bordered-pulled.html %} - {% include examples/animated.html %} - {% include examples/rotated-flipped.html %} - {% include examples/stacked.html %} - {% include examples/bootstrap.html %} - {% include examples/custom.html %} - {% include examples/accessible.html %} -
    diff --git a/library/font_awesome/src/get-started.html b/library/font_awesome/src/get-started.html deleted file mode 100644 index e8fb70650..000000000 --- a/library/font_awesome/src/get-started.html +++ /dev/null @@ -1,263 +0,0 @@ ---- -layout: base -title: Get Started with Font Awesome -navbar_active: get-started -view_class: v-get-started -relative_path: ../ ---- -{% capture jumbotron_h1 %}  Get Started{% endcapture %} -{% capture jumbotron_p %}Easy ways to get Font Awesome {{ site.fontawesome.version }} onto your website{% endcapture %} - -{% include jumbotron.html %} - -
    - -
    -
    - - -

    Font Awesome CDN is the easiest way to get Font Awesome on your website or app, all with just a single line of code. No downloading or installing!

    - -
    - - - -
    - - - - -

    - -
    -
    - We create new embed codes for each website so you can quickly upgrade and change your preferences all without ever pushing code. To do this, we need an email - address so we know which embed codes are yours and so you can come back and manage them. -
    -
    - -
    -
    -

    Icons on your site. Fast.

    -

    Don't mess with files locally or in production. You'll get all of Font Awesome's {{ icons| size }} icons plus CSS toolkit - all optimized for speed and no hassle.

    -
    - -
    -

    Super-simple upgrades

    -

    Since each site gets a unique embed code, you can easily upgrade to the latest version of Font Awesome, all without pushing any code. Easy peasy.

    -
    - -
    -

    Auto accessibility support

    -

    Font Awesome CDN helps you automate accessibility support more easily so your icons work for the most people possible. Read up on our accessibility best practices.

    -
    - -
    -

    Async your icons

    -

    Want to speed up your page loads? So do we. Have your icons load in the background so your site loads faster.

    -
    -
    -
    - -
    - or -
    - -
    - - -
    -
    -

    - Want to manage and host Font Awesome assets yourself? You can - download, - customize, and use the icons and default styling manually. Both CSS and CSS Preprocessor (Sass and Less) formats are included.

    -
    - - -
    - -
    -

    Using CSS

    - -
      -
    1. Copy the entire font-awesome directory into your project.
    2. -
    3. - In the <head> of your html, reference the location to your font-awesome.min.css. -{% highlight html %} - -{% endhighlight %} -
    4. -
    5. Check out the examples to start using Font Awesome!
    6. -
    -
    - -
    -

    Using Sass or Less

    - -

    Use this method to customize Font Awesome {{ site.fontawesome.version }} using LESS or SASS.

    -
      -
    1. Copy the font-awesome/ directory into your project.
    2. -
    3. - Open your project's font-awesome/less/variables.less or font-awesome/scss/_variables.scss and edit the @fa-font-path or $fa-font-path - variable to point to your font directory. -{% highlight scss %} -@fa-font-path: "../font"; -{% endhighlight %} -

      The font path is relative from your compiled CSS directory.

      -
    4. -
    5. Re-compile your LESS or SASS if using a static compiler. Otherwise, you should be good to go.
    6. -
    7. Check out the examples to start using Font Awesome!
    8. -
    -
    -
    - -
    - or -
    - -
    - - -
    -

    LESS Ruby Gem

    -

    - Use the Official Font Awesome LESS Ruby Gem to easily get Font - Awesome LESS into a Rails project. Generously maintained by @supercodepoet. -

    -
      -
    1. - Add this line to your application's Gemfile: -{% highlight bash %} -gem 'font-awesome-less' -{% endhighlight %} -
    2. -
    3. - And then execute: -{% highlight bash %} -$ bundle -{% endhighlight %} -
    4. -
    5. Or install it yourself as: -{% highlight bash %} -$ gem install font-awesome-less -{% endhighlight %} -
    6. -
    -

    - If you use Rails, add this to your e.g. application.less: -

    -{% highlight css %} -@import "font-awesome-sprockets"; -@import "font-awesome"; -{% endhighlight %} -
    - -
    -

    SASS Ruby Gem

    -

    - Use the Official Font Awesome SASS Ruby Gem to easily get Font - Awesome SASS into a Rails or Compass project. Generously maintained by @supercodepoet. -

    -
      -
    1. - Add this line to your application's Gemfile: -{% highlight bash %} -gem 'font-awesome-sass' -{% endhighlight %} -
    2. -
    3. - And then execute: -{% highlight bash %} -$ bundle -{% endhighlight %} -
    4. -
    5. Or install it yourself as: -{% highlight bash %} -$ gem install font-awesome-sass -{% endhighlight %} -
    6. -
    -

    - If you use Rails, add this to your e.g. application.scss: -

    -{% highlight css %} -@import "font-awesome-sprockets"; -@import "font-awesome"; -{% endhighlight %} -
    -
    - -
    - -
    - -
    -
    -

    Validators

    -

    In order to provide the best possible experience to old and buggy browsers, Font Awesome uses CSS browser hacks in several places to target special CSS to certain browser versions in order to work around bugs in the browsers themselves. These hacks understandably cause CSS validators to complain that they are invalid. In a couple places, we also use bleeding-edge CSS features that aren't yet fully standardized, but these are used purely for progressive enhancement.

    -

    These validation warnings don't matter in practice since the non-hacky portion of our CSS does fully validate and the hacky portions don't interfere with the proper functioning of the non-hacky portion, hence why we deliberately ignore these particular warnings.

    -

    Getting started - Validators by Bootstrap Team is licensed under CC BY 3.0

    -
    - -
    -

    Internet Explorer 8 and @font-face

    -

    IE8 has some issues with @font-face when combined with :before. - Font Awesome uses that combination. If a page is cached, and loaded without the mouse over the window - (i.e. hit the refresh button or load something in an iframe) then the page gets rendered before the font loads. - Hovering over the page (body) will show some of the icons and hovering over the remaining icons will show those as well. - See issue #954 for details.

    -

    Getting started - Internet Explorer 8 and @font-face by Bootstrap Team is licensed under CC BY 3.0

    -
    -
    - -
    -
    -

    Need IE7 Support?

    -

    - If you need IE7 support, you have my condolences. Really. Font Awesome {{ site.fontawesome.version }} - doesn't support IE7, but an older version does. You'll need to check out the - 3.2.1 instructions for using IE7. Then go complain to - whomever decided your project needs IE7 support. -

    -
    - -
    -

    Troubleshooting

    -

    If you're having trouble with Font Awesome, make sure to check out the - troubleshooting wiki page. - Generously maintained by @gtagliala.

    -
    -
    - -{% include modals/download.html %} diff --git a/library/font_awesome/src/icons.html b/library/font_awesome/src/icons.html deleted file mode 100644 index 00ad17e74..000000000 --- a/library/font_awesome/src/icons.html +++ /dev/null @@ -1,98 +0,0 @@ ---- -layout: base -title: Font Awesome Icons -navbar_active: icons -relative_path: ../ ---- -{% capture jumbotron_h1 %}  The Icons{% endcapture %} -{% capture jumbotron_p %}The complete set of {{ icons | size }} icons in Font Awesome {{ site.fontawesome.version }}{% endcapture %} - -{% include jumbotron.html %} -{% include stripe-social.html %} - -
    - {% capture stripe_ad_content %} -

    - You asked, Font Awesome delivers with {{ icons | version:site.fontawesome.minor_version | size }} shiny new icons in version {{ site.fontawesome.minor_version }}. - Want to request new icons? Here's how. - - Need vectors or want to use on the desktop? Check the cheatsheet. -

    - {% endcapture %} - {% include stripe-ad.html %} - -
    -
    - -
    - -
    - -
    -
    - {% include icons/new.html %} - {% include icons/web-application.html %} - {% include icons/accessibility.html %} - {% include icons/hand.html %} - {% include icons/transportation.html %} - {% include icons/gender.html %} - {% include icons/file-type.html %} - {% include icons/spinner.html %} - {% include icons/form-control.html %} - {% include icons/payment.html %} - {% include icons/chart.html %} - {% include icons/currency.html %} - {% include icons/text-editor.html %} - {% include icons/directional.html %} - {% include icons/video-player.html %} - {% include icons/brand.html %} - {% include icons/medical.html %} -
    - - -
    diff --git a/library/font_awesome/src/icons.yml b/library/font_awesome/src/icons.yml deleted file mode 100644 index bd1b5506f..000000000 --- a/library/font_awesome/src/icons.yml +++ /dev/null @@ -1,6540 +0,0 @@ -icons: - - name: Glass - id: glass - unicode: f000 - created: 1.0 - filter: - - martini - - drink - - bar - - alcohol - - liquor - categories: - - Web Application Icons - - - name: Music - id: music - unicode: f001 - created: 1.0 - filter: - - note - - sound - categories: - - Web Application Icons - - - name: Search - id: search - unicode: f002 - created: 1.0 - filter: - - magnify - - zoom - - enlarge - - bigger - categories: - - Web Application Icons - - - name: Envelope Outlined - id: envelope-o - unicode: f003 - created: 1.0 - filter: - - email - - support - - e-mail - - letter - - mail - - notification - categories: - - Web Application Icons - - - name: Heart - id: heart - unicode: f004 - created: 1.0 - filter: - - love - - like - - favorite - categories: - - Web Application Icons - - Medical Icons - - - name: Star - id: star - unicode: f005 - created: 1.0 - filter: - - award - - achievement - - night - - rating - - score - - favorite - categories: - - Web Application Icons - - - name: Star Outlined - id: star-o - unicode: f006 - created: 1.0 - filter: - - award - - achievement - - night - - rating - - score - - favorite - categories: - - Web Application Icons - - - name: User - id: user - unicode: f007 - created: 1.0 - filter: - - person - - man - - head - - profile - categories: - - Web Application Icons - - - name: Film - id: film - unicode: f008 - created: 1.0 - filter: - - movie - categories: - - Web Application Icons - - - name: th-large - id: th-large - unicode: f009 - created: 1.0 - filter: - - blocks - - squares - - boxes - - grid - categories: - - Text Editor Icons - - - name: th - id: th - unicode: f00a - created: 1.0 - filter: - - blocks - - squares - - boxes - - grid - categories: - - Text Editor Icons - - - name: th-list - id: th-list - unicode: f00b - created: 1.0 - filter: - - ul - - ol - - checklist - - finished - - completed - - done - - todo - categories: - - Text Editor Icons - - - name: Check - id: check - unicode: f00c - created: 1.0 - filter: - - checkmark - - done - - todo - - agree - - accept - - confirm - - tick - - ok - categories: - - Web Application Icons - - - name: Times - id: times - unicode: f00d - created: 1.0 - aliases: - - remove - - close - filter: - - close - - exit - - x - - cross - categories: - - Web Application Icons - - - name: Search Plus - id: search-plus - unicode: f00e - created: 1.0 - filter: - - magnify - - zoom - - enlarge - - bigger - categories: - - Web Application Icons - - - - name: Search Minus - id: search-minus - unicode: f010 - created: 1.0 - filter: - - magnify - - minify - - zoom - - smaller - categories: - - Web Application Icons - - - name: Power Off - id: power-off - unicode: f011 - created: 1.0 - filter: - - "on" - categories: - - Web Application Icons - - - name: signal - id: signal - unicode: f012 - created: 1.0 - filter: - - graph - - bars - categories: - - Web Application Icons - - - name: cog - id: cog - unicode: f013 - created: 1.0 - filter: - - settings - aliases: - - gear - categories: - - Web Application Icons - - Spinner Icons - - - name: Trash Outlined - id: trash-o - unicode: f014 - created: 1.0 - filter: - - garbage - - delete - - remove - - trash - - hide - categories: - - Web Application Icons - - - name: home - id: home - unicode: f015 - created: 1.0 - filter: - - main - - house - categories: - - Web Application Icons - - - name: File Outlined - id: file-o - unicode: f016 - created: 1.0 - filter: - - new - - page - - pdf - - document - categories: - - Text Editor Icons - - File Type Icons - - - name: Clock Outlined - id: clock-o - unicode: f017 - created: 1.0 - filter: - - watch - - timer - - late - - timestamp - categories: - - Web Application Icons - - - name: road - id: road - unicode: f018 - created: 1.0 - filter: - - street - categories: - - Web Application Icons - - - name: Download - id: download - unicode: f019 - created: 1.0 - filter: - - import - categories: - - Web Application Icons - - - name: Arrow Circle Outlined Down - id: arrow-circle-o-down - unicode: f01a - created: 1.0 - filter: - - download - categories: - - Directional Icons - - - name: Arrow Circle Outlined Up - id: arrow-circle-o-up - unicode: f01b - created: 1.0 - categories: - - Directional Icons - - - name: inbox - id: inbox - unicode: f01c - created: 1.0 - categories: - - Web Application Icons - - - name: Play Circle Outlined - id: play-circle-o - unicode: f01d - created: 1.0 - categories: - - Video Player Icons - - - name: Repeat - id: repeat - unicode: f01e - created: 1.0 - filter: - - redo - - forward - aliases: - - rotate-right - categories: - - Text Editor Icons - - - - name: refresh - id: refresh - unicode: f021 - created: 1.0 - filter: - - reload - - sync - categories: - - Web Application Icons - - Spinner Icons - - - name: list-alt - id: list-alt - unicode: f022 - created: 1.0 - filter: - - ul - - ol - - checklist - - finished - - completed - - done - - todo - categories: - - Text Editor Icons - - - name: lock - id: lock - unicode: f023 - created: 1.0 - filter: - - protect - - admin - - security - categories: - - Web Application Icons - - - name: flag - id: flag - unicode: f024 - created: 1.0 - filter: - - report - - notification - - notify - categories: - - Web Application Icons - - - name: headphones - id: headphones - unicode: f025 - created: 1.0 - filter: - - sound - - listen - - music - - audio - categories: - - Web Application Icons - - - name: volume-off - id: volume-off - unicode: f026 - created: 1.0 - filter: - - audio - - mute - - sound - - music - categories: - - Web Application Icons - - - name: volume-down - id: volume-down - unicode: f027 - created: 1.0 - filter: - - audio - - lower - - quieter - - sound - - music - categories: - - Web Application Icons - - - name: volume-up - id: volume-up - unicode: f028 - created: 1.0 - filter: - - audio - - higher - - louder - - sound - - music - categories: - - Web Application Icons - - - name: qrcode - id: qrcode - unicode: f029 - created: 1.0 - filter: - - scan - categories: - - Web Application Icons - - - name: barcode - id: barcode - unicode: f02a - created: 1.0 - filter: - - scan - categories: - - Web Application Icons - - - name: tag - id: tag - unicode: f02b - created: 1.0 - filter: - - label - categories: - - Web Application Icons - - - name: tags - id: tags - unicode: f02c - created: 1.0 - filter: - - labels - categories: - - Web Application Icons - - - name: book - id: book - unicode: f02d - created: 1.0 - filter: - - read - - documentation - categories: - - Web Application Icons - - - name: bookmark - id: bookmark - unicode: f02e - created: 1.0 - filter: - - save - categories: - - Web Application Icons - - - name: print - id: print - unicode: f02f - created: 1.0 - categories: - - Web Application Icons - - - - name: camera - id: camera - unicode: f030 - created: 1.0 - filter: - - photo - - picture - - record - categories: - - Web Application Icons - - - name: font - id: font - unicode: f031 - created: 1.0 - filter: - - text - categories: - - Text Editor Icons - - - name: bold - id: bold - unicode: f032 - created: 1.0 - categories: - - Text Editor Icons - - - name: italic - id: italic - unicode: f033 - created: 1.0 - filter: - - italics - categories: - - Text Editor Icons - - - name: text-height - id: text-height - unicode: f034 - created: 1.0 - categories: - - Text Editor Icons - - - name: text-width - id: text-width - unicode: f035 - created: 1.0 - categories: - - Text Editor Icons - - - name: align-left - id: align-left - unicode: f036 - created: 1.0 - filter: - - text - categories: - - Text Editor Icons - - - name: align-center - id: align-center - unicode: f037 - created: 1.0 - filter: - - middle - - text - categories: - - Text Editor Icons - - - name: align-right - id: align-right - unicode: f038 - created: 1.0 - filter: - - text - categories: - - Text Editor Icons - - - name: align-justify - id: align-justify - unicode: f039 - created: 1.0 - filter: - - text - categories: - - Text Editor Icons - - - name: list - id: list - unicode: f03a - created: 1.0 - filter: - - ul - - ol - - checklist - - finished - - completed - - done - - todo - categories: - - Text Editor Icons - - - name: Outdent - id: outdent - unicode: f03b - created: 1.0 - aliases: - - dedent - categories: - - Text Editor Icons - - - name: Indent - id: indent - unicode: f03c - created: 1.0 - categories: - - Text Editor Icons - - - name: Video Camera - id: video-camera - unicode: f03d - created: 1.0 - filter: - - film - - movie - - record - categories: - - Web Application Icons - - - name: Picture Outlined - id: picture-o - unicode: f03e - created: 1.0 - aliases: - - photo - - image - categories: - - Web Application Icons - - - - name: pencil - id: pencil - unicode: f040 - created: 1.0 - filter: - - write - - edit - - update - categories: - - Web Application Icons - - - name: map-marker - id: map-marker - unicode: f041 - created: 1.0 - filter: - - map - - pin - - location - - coordinates - - localize - - address - - travel - - where - - place - categories: - - Web Application Icons - - - name: adjust - id: adjust - unicode: f042 - created: 1.0 - filter: - - contrast - categories: - - Web Application Icons - - - name: tint - id: tint - unicode: f043 - created: 1.0 - filter: - - raindrop - - waterdrop - - drop - - droplet - categories: - - Web Application Icons - - - name: Pencil Square Outlined - id: pencil-square-o - unicode: f044 - created: 1.0 - filter: - - write - - edit - - update - aliases: - - edit - categories: - - Web Application Icons - - - name: Share Square Outlined - id: share-square-o - unicode: f045 - created: 1.0 - filter: - - social - - send - - arrow - categories: - - Web Application Icons - - - name: Check Square Outlined - id: check-square-o - unicode: f046 - created: 1.0 - filter: - - todo - - done - - agree - - accept - - confirm - - ok - categories: - - Web Application Icons - - Form Control Icons - - - name: Arrows - id: arrows - unicode: f047 - created: 1.0 - filter: - - move - - reorder - - resize - categories: - - Web Application Icons - - Directional Icons - - - name: step-backward - id: step-backward - unicode: f048 - created: 1.0 - filter: - - rewind - - previous - - beginning - - start - - first - categories: - - Video Player Icons - - - name: fast-backward - id: fast-backward - unicode: f049 - created: 1.0 - filter: - - rewind - - previous - - beginning - - start - - first - categories: - - Video Player Icons - - - name: backward - id: backward - unicode: f04a - created: 1.0 - filter: - - rewind - - previous - categories: - - Video Player Icons - - - name: play - id: play - unicode: f04b - created: 1.0 - filter: - - start - - playing - - music - - sound - categories: - - Video Player Icons - - - name: pause - id: pause - unicode: f04c - created: 1.0 - filter: - - wait - categories: - - Video Player Icons - - - name: stop - id: stop - unicode: f04d - created: 1.0 - filter: - - block - - box - - square - categories: - - Video Player Icons - - - name: forward - id: forward - unicode: f04e - created: 1.0 - filter: - - forward - - next - categories: - - Video Player Icons - - - - name: fast-forward - id: fast-forward - unicode: f050 - created: 1.0 - filter: - - next - - end - - last - categories: - - Video Player Icons - - - name: step-forward - id: step-forward - unicode: f051 - created: 1.0 - filter: - - next - - end - - last - categories: - - Video Player Icons - - - name: eject - id: eject - unicode: f052 - created: 1.0 - categories: - - Video Player Icons - - - name: chevron-left - id: chevron-left - unicode: f053 - created: 1.0 - filter: - - bracket - - previous - - back - categories: - - Directional Icons - - - name: chevron-right - id: chevron-right - unicode: f054 - created: 1.0 - filter: - - bracket - - next - - forward - categories: - - Directional Icons - - - name: Plus Circle - id: plus-circle - unicode: f055 - created: 1.0 - filter: - - add - - new - - create - - expand - categories: - - Web Application Icons - - - name: Minus Circle - id: minus-circle - unicode: f056 - created: 1.0 - filter: - - delete - - remove - - trash - - hide - categories: - - Web Application Icons - - - name: Times Circle - id: times-circle - unicode: f057 - created: 1.0 - filter: - - close - - exit - - x - categories: - - Web Application Icons - - - name: Check Circle - id: check-circle - unicode: f058 - created: 1.0 - filter: - - todo - - done - - agree - - accept - - confirm - - ok - categories: - - Web Application Icons - - - name: Question Circle - id: question-circle - unicode: f059 - filter: - - help - - information - - unknown - - support - created: 1.0 - categories: - - Web Application Icons - - - name: Info Circle - id: info-circle - unicode: f05a - created: 1.0 - filter: - - help - - information - - more - - details - categories: - - Web Application Icons - - - name: Crosshairs - id: crosshairs - unicode: f05b - created: 1.0 - filter: - - picker - categories: - - Web Application Icons - - - name: Times Circle Outlined - id: times-circle-o - unicode: f05c - created: 1.0 - filter: - - close - - exit - - x - categories: - - Web Application Icons - - - name: Check Circle Outlined - id: check-circle-o - unicode: f05d - created: 1.0 - filter: - - todo - - done - - agree - - accept - - confirm - - ok - categories: - - Web Application Icons - - - name: ban - id: ban - unicode: f05e - created: 1.0 - filter: - - delete - - remove - - trash - - hide - - block - - stop - - abort - - cancel - categories: - - Web Application Icons - - - - name: arrow-left - id: arrow-left - unicode: f060 - created: 1.0 - filter: - - previous - - back - categories: - - Directional Icons - - - name: arrow-right - id: arrow-right - unicode: f061 - created: 1.0 - filter: - - next - - forward - categories: - - Directional Icons - - - name: arrow-up - id: arrow-up - unicode: f062 - created: 1.0 - categories: - - Directional Icons - - - name: arrow-down - id: arrow-down - unicode: f063 - created: 1.0 - filter: - - download - categories: - - Directional Icons - - - name: Share - id: share - unicode: f064 - created: 1.0 - aliases: - - mail-forward - categories: - - Web Application Icons - - - name: Expand - id: expand - unicode: f065 - created: 1.0 - filter: - - enlarge - - bigger - - resize - categories: - - Video Player Icons - - - name: Compress - id: compress - unicode: f066 - created: 1.0 - filter: - - collapse - - combine - - contract - - merge - - smaller - categories: - - Video Player Icons - - - name: plus - id: plus - unicode: f067 - created: 1.0 - filter: - - add - - new - - create - - expand - categories: - - Web Application Icons - - - name: minus - id: minus - unicode: f068 - created: 1.0 - filter: - - hide - - minify - - delete - - remove - - trash - - hide - - collapse - categories: - - Web Application Icons - - - name: asterisk - id: asterisk - unicode: f069 - created: 1.0 - filter: - - details - categories: - - Web Application Icons - - - name: Exclamation Circle - id: exclamation-circle - unicode: f06a - created: 1.0 - filter: - - warning - - error - - problem - - notification - - alert - categories: - - Web Application Icons - - - name: gift - id: gift - unicode: f06b - created: 1.0 - filter: - - present - categories: - - Web Application Icons - - - name: leaf - id: leaf - unicode: f06c - created: 1.0 - filter: - - eco - - nature - - plant - categories: - - Web Application Icons - - - name: fire - id: fire - unicode: f06d - created: 1.0 - filter: - - flame - - hot - - popular - categories: - - Web Application Icons - - - name: Eye - id: eye - unicode: f06e - created: 1.0 - filter: - - show - - visible - - views - categories: - - Web Application Icons - - - - name: Eye Slash - id: eye-slash - unicode: f070 - created: 1.0 - filter: - - toggle - - show - - hide - - visible - - visiblity - - views - categories: - - Web Application Icons - - - name: Exclamation Triangle - id: exclamation-triangle - unicode: f071 - created: 1.0 - filter: - - warning - - error - - problem - - notification - - alert - aliases: - - warning - categories: - - Web Application Icons - - - name: plane - id: plane - unicode: f072 - created: 1.0 - filter: - - travel - - trip - - location - - destination - - airplane - - fly - - mode - categories: - - Web Application Icons - - Transportation Icons - - - name: calendar - id: calendar - unicode: f073 - created: 1.0 - filter: - - date - - time - - when - - event - categories: - - Web Application Icons - - - name: random - id: random - unicode: f074 - created: 1.0 - filter: - - sort - - shuffle - categories: - - Web Application Icons - - Video Player Icons - - - name: comment - id: comment - unicode: f075 - created: 1.0 - filter: - - speech - - notification - - note - - chat - - bubble - - feedback - - message - - texting - - sms - - conversation - categories: - - Web Application Icons - - - name: magnet - id: magnet - unicode: f076 - created: 1.0 - categories: - - Web Application Icons - - - name: chevron-up - id: chevron-up - unicode: f077 - created: 1.0 - categories: - - Directional Icons - - - name: chevron-down - id: chevron-down - unicode: f078 - created: 1.0 - categories: - - Directional Icons - - - name: retweet - id: retweet - unicode: f079 - created: 1.0 - filter: - - refresh - - reload - - share - categories: - - Web Application Icons - - - name: shopping-cart - id: shopping-cart - unicode: f07a - created: 1.0 - filter: - - checkout - - buy - - purchase - - payment - categories: - - Web Application Icons - - - name: Folder - id: folder - unicode: f07b - created: 1.0 - categories: - - Web Application Icons - - - name: Folder Open - id: folder-open - unicode: f07c - created: 1.0 - categories: - - Web Application Icons - - - name: Arrows Vertical - id: arrows-v - unicode: f07d - created: 1.0 - filter: - - resize - categories: - - Web Application Icons - - Directional Icons - - - name: Arrows Horizontal - id: arrows-h - unicode: f07e - created: 1.0 - filter: - - resize - categories: - - Web Application Icons - - Directional Icons - - - - name: Bar Chart - id: bar-chart - unicode: f080 - created: 1.0 - aliases: - - bar-chart-o - filter: - - graph - - analytics - categories: - - Web Application Icons - - Chart Icons - - - name: Twitter Square - id: twitter-square - unicode: f081 - created: 1.0 - filter: - - tweet - - social network - categories: - - Brand Icons - - - name: Facebook Square - id: facebook-square - unicode: f082 - created: 1.0 - filter: - - social network - categories: - - Brand Icons - - - name: camera-retro - id: camera-retro - unicode: f083 - created: 1.0 - filter: - - photo - - picture - - record - categories: - - Web Application Icons - - - name: key - id: key - unicode: f084 - created: 1.0 - filter: - - unlock - - password - categories: - - Web Application Icons - - - name: cogs - id: cogs - unicode: f085 - created: 1.0 - aliases: - - gears - filter: - - settings - categories: - - Web Application Icons - - - name: comments - id: comments - unicode: f086 - created: 1.0 - filter: - - speech - - notification - - note - - chat - - bubble - - feedback - - message - - texting - - sms - - conversation - categories: - - Web Application Icons - - - name: Thumbs Up Outlined - id: thumbs-o-up - unicode: f087 - created: 1.0 - filter: - - like - - approve - - favorite - - agree - - hand - categories: - - Web Application Icons - - Hand Icons - - - name: Thumbs Down Outlined - id: thumbs-o-down - unicode: f088 - created: 1.0 - filter: - - dislike - - disapprove - - disagree - - hand - categories: - - Web Application Icons - - Hand Icons - - - name: star-half - id: star-half - unicode: f089 - created: 1.0 - filter: - - award - - achievement - - rating - - score - categories: - - Web Application Icons - - - name: Heart Outlined - id: heart-o - unicode: f08a - created: 1.0 - filter: - - love - - like - - favorite - categories: - - Web Application Icons - - Medical Icons - - - name: Sign Out - id: sign-out - unicode: f08b - created: 1.0 - filter: - - log out - - logout - - leave - - exit - - arrow - categories: - - Web Application Icons - - - name: LinkedIn Square - id: linkedin-square - unicode: f08c - created: 1.0 - categories: - - Brand Icons - - - name: Thumb Tack - id: thumb-tack - unicode: f08d - created: 1.0 - filter: - - marker - - pin - - location - - coordinates - categories: - - Web Application Icons - - - name: External Link - id: external-link - unicode: f08e - created: 1.0 - filter: - - open - - new - categories: - - Web Application Icons - - - - name: Sign In - id: sign-in - unicode: f090 - created: 1.0 - filter: - - enter - - join - - log in - - login - - sign up - - sign in - - signin - - signup - - arrow - categories: - - Web Application Icons - - - name: trophy - id: trophy - unicode: f091 - created: 1.0 - filter: - - award - - achievement - - cup - - winner - - game - categories: - - Web Application Icons - - - name: GitHub Square - id: github-square - unicode: f092 - created: 1.0 - url: github.com/logos - filter: - - octocat - categories: - - Brand Icons - - - name: Upload - id: upload - unicode: f093 - created: 1.0 - filter: - - import - categories: - - Web Application Icons - - - name: Lemon Outlined - id: lemon-o - unicode: f094 - created: 1.0 - filter: - - food - categories: - - Web Application Icons - - - name: Phone - id: phone - unicode: f095 - created: 2.0 - filter: - - call - - voice - - number - - support - - earphone - - telephone - categories: - - Web Application Icons - - - name: Square Outlined - id: square-o - unicode: f096 - created: 2.0 - filter: - - block - - square - - box - categories: - - Web Application Icons - - Form Control Icons - - - - name: Bookmark Outlined - id: bookmark-o - unicode: f097 - created: 2.0 - filter: - - save - categories: - - Web Application Icons - - - name: Phone Square - id: phone-square - unicode: f098 - created: 2.0 - filter: - - call - - voice - - number - - support - - telephone - categories: - - Web Application Icons - - - name: Twitter - id: twitter - unicode: f099 - created: 2.0 - filter: - - tweet - - social network - categories: - - Brand Icons - - - name: Facebook - id: facebook - unicode: f09a - created: 2.0 - aliases: - - facebook-f - filter: - - social network - categories: - - Brand Icons - - - name: GitHub - id: github - unicode: f09b - created: 2.0 - url: github.com/logos - filter: - - octocat - categories: - - Brand Icons - - - name: unlock - id: unlock - unicode: f09c - created: 2.0 - filter: - - protect - - admin - - password - - lock - categories: - - Web Application Icons - - - name: credit-card - id: credit-card - unicode: f09d - created: 2.0 - filter: - - money - - buy - - debit - - checkout - - purchase - - payment - categories: - - Web Application Icons - - Payment Icons - - - name: rss - id: rss - unicode: f09e - created: 2.0 - filter: - - blog - aliases: - - feed - categories: - - Web Application Icons - - - - name: HDD - id: hdd-o - unicode: f0a0 - created: 2.0 - filter: - - harddrive - - hard drive - - storage - - save - categories: - - Web Application Icons - - - name: bullhorn - id: bullhorn - unicode: f0a1 - created: 2.0 - filter: - - announcement - - share - - broadcast - - louder - - megaphone - categories: - - Web Application Icons - - - name: bell - id: bell - unicode: f0f3 - created: 2.0 - filter: - - alert - - reminder - - notification - categories: - - Web Application Icons - - - name: certificate - id: certificate - unicode: f0a3 - created: 2.0 - filter: - - badge - - star - categories: - - Web Application Icons - - - name: Hand Outlined Right - id: hand-o-right - unicode: f0a4 - created: 2.0 - filter: - - point - - right - - next - - forward - - finger - categories: - - Directional Icons - - Hand Icons - - - name: Hand Outlined Left - id: hand-o-left - unicode: f0a5 - created: 2.0 - filter: - - point - - left - - previous - - back - - finger - categories: - - Directional Icons - - Hand Icons - - - name: Hand Outlined Up - id: hand-o-up - unicode: f0a6 - created: 2.0 - filter: - - point - - finger - categories: - - Directional Icons - - Hand Icons - - - name: Hand Outlined Down - id: hand-o-down - unicode: f0a7 - created: 2.0 - filter: - - point - - finger - categories: - - Directional Icons - - Hand Icons - - - name: Arrow Circle Left - id: arrow-circle-left - unicode: f0a8 - created: 2.0 - filter: - - previous - - back - categories: - - Directional Icons - - - name: Arrow Circle Right - id: arrow-circle-right - unicode: f0a9 - created: 2.0 - filter: - - next - - forward - categories: - - Directional Icons - - - name: Arrow Circle Up - id: arrow-circle-up - unicode: f0aa - created: 2.0 - categories: - - Directional Icons - - - name: Arrow Circle Down - id: arrow-circle-down - unicode: f0ab - created: 2.0 - filter: - - download - categories: - - Directional Icons - - - name: Globe - id: globe - unicode: f0ac - created: 2.0 - filter: - - world - - planet - - map - - place - - travel - - earth - - global - - translate - - all - - language - - localize - - location - - coordinates - - country - categories: - - Web Application Icons - - - name: Wrench - id: wrench - unicode: f0ad - created: 2.0 - filter: - - settings - - fix - - update - - spanner - categories: - - Web Application Icons - - - name: Tasks - id: tasks - unicode: f0ae - created: 2.0 - filter: - - progress - - loading - - downloading - - downloads - - settings - categories: - - Web Application Icons - - - - name: Filter - id: filter - unicode: f0b0 - created: 2.0 - filter: - - funnel - - options - categories: - - Web Application Icons - - - name: Briefcase - id: briefcase - unicode: f0b1 - created: 2.0 - filter: - - work - - business - - office - - luggage - - bag - categories: - - Web Application Icons - - - name: Arrows Alt - id: arrows-alt - unicode: f0b2 - created: 2.0 - filter: - - expand - - enlarge - - fullscreen - - bigger - - move - - reorder - - resize - - arrow - categories: - - Video Player Icons - - Directional Icons - - - - name: Users - id: users - unicode: f0c0 - created: 2.0 - filter: - - people - - profiles - - persons - aliases: - - group - categories: - - Web Application Icons - - - name: Link - id: link - unicode: f0c1 - created: 2.0 - filter: - - chain - aliases: - - chain - categories: - - Text Editor Icons - - - name: Cloud - id: cloud - filter: - - save - unicode: f0c2 - created: 2.0 - categories: - - Web Application Icons - - - name: Flask - id: flask - unicode: f0c3 - created: 2.0 - filter: - - science - - beaker - - experimental - - labs - categories: - - Web Application Icons - - - name: Scissors - id: scissors - unicode: f0c4 - created: 2.0 - aliases: - - cut - categories: - - Text Editor Icons - - - name: Files Outlined - id: files-o - unicode: f0c5 - created: 2.0 - filter: - - duplicate - - clone - - copy - aliases: - - copy - categories: - - Text Editor Icons - - - name: Paperclip - id: paperclip - unicode: f0c6 - created: 2.0 - filter: - - attachment - categories: - - Text Editor Icons - - - name: Floppy Outlined - id: floppy-o - unicode: f0c7 - created: 2.0 - aliases: - - save - categories: - - Text Editor Icons - - - name: Square - id: square - unicode: f0c8 - created: 2.0 - filter: - - block - - box - categories: - - Web Application Icons - - Form Control Icons - - - name: Bars - id: bars - unicode: f0c9 - created: 2.0 - aliases: - - navicon - - reorder - filter: - - menu - - drag - - reorder - - settings - - list - - ul - - ol - - checklist - - todo - - list - - hamburger - categories: - - Web Application Icons - - - name: list-ul - id: list-ul - unicode: f0ca - created: 2.0 - filter: - - ul - - ol - - checklist - - todo - - list - categories: - - Text Editor Icons - - - name: list-ol - id: list-ol - unicode: f0cb - created: 2.0 - filter: - - ul - - ol - - checklist - - list - - todo - - list - - numbers - categories: - - Text Editor Icons - - - name: Strikethrough - id: strikethrough - unicode: f0cc - created: 2.0 - categories: - - Text Editor Icons - - - name: Underline - id: underline - unicode: f0cd - created: 2.0 - categories: - - Text Editor Icons - - - name: table - id: table - unicode: f0ce - created: 2.0 - filter: - - data - - excel - - spreadsheet - categories: - - Text Editor Icons - - - - name: magic - id: magic - unicode: f0d0 - created: 2.0 - filter: - - wizard - - automatic - - autocomplete - categories: - - Web Application Icons - - - name: truck - id: truck - unicode: f0d1 - created: 2.0 - filter: - - shipping - categories: - - Web Application Icons - - Transportation Icons - - - name: Pinterest - id: pinterest - unicode: f0d2 - created: 2.0 - categories: - - Brand Icons - - - name: Pinterest Square - id: pinterest-square - unicode: f0d3 - created: 2.0 - categories: - - Brand Icons - - - name: Google Plus Square - id: google-plus-square - unicode: f0d4 - created: 2.0 - filter: - - social network - categories: - - Brand Icons - - - name: Google Plus - id: google-plus - unicode: f0d5 - created: 2.0 - filter: - - social network - categories: - - Brand Icons - - - name: Money - id: money - unicode: f0d6 - created: 2.0 - filter: - - cash - - money - - buy - - checkout - - purchase - - payment - categories: - - Web Application Icons - - Currency Icons - - - name: Caret Down - id: caret-down - unicode: f0d7 - created: 2.0 - filter: - - more - - dropdown - - menu - - triangle down - - arrow - categories: - - Directional Icons - - - name: Caret Up - id: caret-up - unicode: f0d8 - created: 2.0 - filter: - - triangle up - - arrow - categories: - - Directional Icons - - - name: Caret Left - id: caret-left - unicode: f0d9 - created: 2.0 - filter: - - previous - - back - - triangle left - - arrow - categories: - - Directional Icons - - - name: Caret Right - id: caret-right - unicode: f0da - created: 2.0 - filter: - - next - - forward - - triangle right - - arrow - categories: - - Directional Icons - - - name: Columns - id: columns - unicode: f0db - created: 2.0 - filter: - - split - - panes - categories: - - Text Editor Icons - - - name: Sort - id: sort - unicode: f0dc - created: 2.0 - filter: - - order - aliases: - - unsorted - categories: - - Web Application Icons - - - name: Sort Descending - id: sort-desc - unicode: f0dd - created: 2.0 - filter: - - dropdown - - more - - menu - - arrow - aliases: - - sort-down - categories: - - Web Application Icons - - - name: Sort Ascending - id: sort-asc - unicode: f0de - created: 2.0 - aliases: - - sort-up - filter: - - arrow - categories: - - Web Application Icons - - - - name: Envelope - id: envelope - unicode: f0e0 - created: 2.0 - filter: - - email - - e-mail - - letter - - support - - mail - - notification - categories: - - Web Application Icons - - - name: LinkedIn - id: linkedin - unicode: f0e1 - created: 2.0 - categories: - - Brand Icons - - - - name: Undo - id: undo - unicode: f0e2 - created: 2.0 - filter: - - back - aliases: - - rotate-left - categories: - - Text Editor Icons - - - name: Gavel - id: gavel - unicode: f0e3 - created: 2.0 - label: - - judge - - lawyer - - opinion - aliases: - - legal - categories: - - Web Application Icons - - - name: Tachometer - id: tachometer - unicode: f0e4 - created: 2.0 - label: - - speedometer - - fast - aliases: - - dashboard - categories: - - Web Application Icons - - - name: comment-o - id: comment-o - unicode: f0e5 - created: 2.0 - filter: - - speech - - notification - - note - - chat - - bubble - - feedback - - message - - texting - - sms - - conversation - categories: - - Web Application Icons - - - name: comments-o - id: comments-o - unicode: f0e6 - created: 2.0 - filter: - - speech - - notification - - note - - chat - - bubble - - feedback - - message - - texting - - sms - - conversation - categories: - - Web Application Icons - - - name: Lightning Bolt - id: bolt - unicode: f0e7 - created: 2.0 - filter: - - lightning - - weather - aliases: - - flash - categories: - - Web Application Icons - - - name: Sitemap - id: sitemap - unicode: f0e8 - created: 2.0 - filter: - - directory - - hierarchy - - organization - categories: - - Web Application Icons - - - name: Umbrella - id: umbrella - unicode: f0e9 - created: 2.0 - categories: - - Web Application Icons - - - name: Clipboard - id: clipboard - unicode: f0ea - created: 2.0 - filter: - - copy - aliases: - - paste - categories: - - Text Editor Icons - - - name: Lightbulb Outlined - id: lightbulb-o - unicode: f0eb - created: 3.0 - filter: - - idea - - inspiration - categories: - - Web Application Icons - - - name: Exchange - id: exchange - unicode: f0ec - created: 3.0 - filter: - - transfer - - arrows - - arrow - categories: - - Web Application Icons - - Directional Icons - - - name: Cloud Download - id: cloud-download - unicode: f0ed - created: 3.0 - filter: - - import - categories: - - Web Application Icons - - - name: Cloud Upload - id: cloud-upload - unicode: f0ee - created: 3.0 - filter: - - import - categories: - - Web Application Icons - - - - name: user-md - id: user-md - unicode: f0f0 - created: 2.0 - filter: - - doctor - - profile - - medical - - nurse - categories: - - Medical Icons - - - name: Stethoscope - id: stethoscope - unicode: f0f1 - created: 3.0 - categories: - - Medical Icons - - - name: Suitcase - id: suitcase - unicode: f0f2 - created: 3.0 - filter: - - trip - - luggage - - travel - - move - - baggage - categories: - - Web Application Icons - - - name: Bell Outlined - id: bell-o - unicode: f0a2 - created: 3.0 - filter: - - alert - - reminder - - notification - categories: - - Web Application Icons - - - name: Coffee - id: coffee - unicode: f0f4 - created: 3.0 - filter: - - morning - - mug - - breakfast - - tea - - drink - - cafe - categories: - - Web Application Icons - - - name: Cutlery - id: cutlery - unicode: f0f5 - created: 3.0 - filter: - - food - - restaurant - - spoon - - knife - - dinner - - eat - categories: - - Web Application Icons - - - name: File Text Outlined - id: file-text-o - unicode: f0f6 - created: 3.0 - filter: - - new - - page - - pdf - - document - categories: - - Text Editor Icons - - File Type Icons - - - name: Building Outlined - id: building-o - unicode: f0f7 - created: 3.0 - filter: - - work - - business - - apartment - - office - - company - categories: - - Web Application Icons - - - name: hospital Outlined - id: hospital-o - unicode: f0f8 - created: 3.0 - filter: - - building - categories: - - Medical Icons - - - name: ambulance - id: ambulance - unicode: f0f9 - created: 3.0 - filter: - - vehicle - - support - - help - categories: - - Medical Icons - - Transportation Icons - - - name: medkit - id: medkit - unicode: f0fa - created: 3.0 - filter: - - first aid - - firstaid - - help - - support - - health - categories: - - Medical Icons - - - name: fighter-jet - id: fighter-jet - unicode: f0fb - created: 3.0 - filter: - - fly - - plane - - airplane - - quick - - fast - - travel - categories: - - Web Application Icons - - Transportation Icons - - - name: beer - id: beer - unicode: f0fc - created: 3.0 - filter: - - alcohol - - stein - - drink - - mug - - bar - - liquor - categories: - - Web Application Icons - - - name: H Square - id: h-square - unicode: f0fd - created: 3.0 - filter: - - hospital - - hotel - categories: - - Medical Icons - - - name: Plus Square - id: plus-square - unicode: f0fe - created: 3.0 - filter: - - add - - new - - create - - expand - categories: - - Medical Icons - - Web Application Icons - - Form Control Icons - - - - name: Angle Double Left - id: angle-double-left - unicode: f100 - created: 3.0 - filter: - - laquo - - quote - - previous - - back - - arrows - categories: - - Directional Icons - - - name: Angle Double Right - id: angle-double-right - unicode: f101 - created: 3.0 - filter: - - raquo - - quote - - next - - forward - - arrows - categories: - - Directional Icons - - - name: Angle Double Up - id: angle-double-up - unicode: f102 - created: 3.0 - filter: - - arrows - categories: - - Directional Icons - - - name: Angle Double Down - id: angle-double-down - unicode: f103 - created: 3.0 - filter: - - arrows - categories: - - Directional Icons - - - name: angle-left - id: angle-left - unicode: f104 - created: 3.0 - filter: - - previous - - back - - arrow - categories: - - Directional Icons - - - name: angle-right - id: angle-right - unicode: f105 - created: 3.0 - filter: - - next - - forward - - arrow - categories: - - Directional Icons - - - name: angle-up - id: angle-up - unicode: f106 - created: 3.0 - filter: - - arrow - categories: - - Directional Icons - - - name: angle-down - id: angle-down - unicode: f107 - created: 3.0 - filter: - - arrow - categories: - - Directional Icons - - - name: Desktop - id: desktop - unicode: f108 - created: 3.0 - filter: - - monitor - - screen - - desktop - - computer - - demo - - device - categories: - - Web Application Icons - - - name: Laptop - id: laptop - unicode: f109 - created: 3.0 - filter: - - demo - - computer - - device - categories: - - Web Application Icons - - - name: tablet - id: tablet - unicode: f10a - created: 3.0 - filter: - - ipad - - device - categories: - - Web Application Icons - - - name: Mobile Phone - id: mobile - unicode: f10b - created: 3.0 - filter: - - cell phone - - cellphone - - text - - call - - iphone - - number - - telephone - aliases: - - mobile-phone - categories: - - Web Application Icons - - - name: Circle Outlined - id: circle-o - unicode: f10c - created: 3.0 - categories: - - Web Application Icons - - Form Control Icons - - - name: quote-left - id: quote-left - unicode: f10d - created: 3.0 - categories: - - Web Application Icons - - - name: quote-right - id: quote-right - unicode: f10e - created: 3.0 - categories: - - Web Application Icons - - - - name: Spinner - id: spinner - unicode: f110 - created: 3.0 - filter: - - loading - - progress - categories: - - Web Application Icons - - Spinner Icons - - - name: Circle - id: circle - unicode: f111 - created: 3.0 - filter: - - dot - - notification - categories: - - Web Application Icons - - Form Control Icons - - - name: Reply - id: reply - unicode: f112 - created: 3.0 - aliases: - - mail-reply - categories: - - Web Application Icons - - - name: GitHub Alt - id: github-alt - unicode: f113 - created: 3.0 - url: github.com/logos - filter: - - octocat - categories: - - Brand Icons - - - name: Folder Outlined - id: folder-o - unicode: f114 - created: 3.0 - categories: - - Web Application Icons - - - name: Folder Open Outlined - id: folder-open-o - unicode: f115 - created: 3.0 - categories: - - Web Application Icons - - - name: Smile Outlined - id: smile-o - unicode: f118 - created: 3.1 - filter: - - face - - emoticon - - happy - - approve - - satisfied - - rating - categories: - - Web Application Icons - - - name: Frown Outlined - id: frown-o - unicode: f119 - created: 3.1 - filter: - - face - - emoticon - - sad - - disapprove - - rating - categories: - - Web Application Icons - - - name: Meh Outlined - id: meh-o - unicode: f11a - created: 3.1 - filter: - - face - - emoticon - - rating - - neutral - categories: - - Web Application Icons - - - name: Gamepad - id: gamepad - unicode: f11b - created: 3.1 - filter: - - controller - categories: - - Web Application Icons - - - name: Keyboard Outlined - id: keyboard-o - unicode: f11c - created: 3.1 - filter: - - type - - input - categories: - - Web Application Icons - - - name: Flag Outlined - id: flag-o - unicode: f11d - created: 3.1 - filter: - - report - - notification - categories: - - Web Application Icons - - - name: flag-checkered - id: flag-checkered - unicode: f11e - created: 3.1 - filter: - - report - - notification - - notify - categories: - - Web Application Icons - - - - name: Terminal - id: terminal - unicode: f120 - created: 3.1 - filter: - - command - - prompt - - code - categories: - - Web Application Icons - - - name: Code - id: code - unicode: f121 - created: 3.1 - filter: - - html - - brackets - categories: - - Web Application Icons - - - name: reply-all - id: reply-all - unicode: f122 - created: 3.1 - aliases: - - mail-reply-all - categories: - - Web Application Icons - - - name: Star Half Outlined - id: star-half-o - unicode: f123 - created: 3.1 - filter: - - award - - achievement - - rating - - score - aliases: - - star-half-empty - - star-half-full - categories: - - Web Application Icons - - - name: location-arrow - id: location-arrow - unicode: f124 - created: 3.1 - filter: - - map - - coordinates - - location - - address - - place - - where - categories: - - Web Application Icons - - - name: crop - id: crop - unicode: f125 - created: 3.1 - categories: - - Web Application Icons - - - name: code-fork - id: code-fork - unicode: f126 - created: 3.1 - filter: - - git - - fork - - vcs - - svn - - github - - rebase - - version - - merge - categories: - - Web Application Icons - - - name: Chain Broken - id: chain-broken - unicode: f127 - created: 3.1 - filter: - - remove - aliases: - - unlink - categories: - - Text Editor Icons - - - name: Question - id: question - unicode: f128 - created: 3.1 - filter: - - help - - information - - unknown - - support - categories: - - Web Application Icons - - - name: Info - id: info - unicode: f129 - created: 3.1 - filter: - - help - - information - - more - - details - categories: - - Web Application Icons - - - name: exclamation - id: exclamation - unicode: f12a - created: 3.1 - filter: - - warning - - error - - problem - - notification - - notify - - alert - categories: - - Web Application Icons - - - name: superscript - id: superscript - unicode: f12b - created: 3.1 - filter: - - exponential - categories: - - Text Editor Icons - - - name: subscript - id: subscript - unicode: f12c - created: 3.1 - categories: - - Text Editor Icons - - - name: eraser - id: eraser - unicode: f12d - created: 3.1 - filter: - - remove - - delete - categories: - - Text Editor Icons - - Web Application Icons - - - name: Puzzle Piece - id: puzzle-piece - unicode: f12e - created: 3.1 - filter: - - addon - - add-on - - section - categories: - - Web Application Icons - - - - name: microphone - id: microphone - unicode: f130 - created: 3.1 - filter: - - record - - voice - - sound - categories: - - Web Application Icons - - - name: Microphone Slash - id: microphone-slash - unicode: f131 - created: 3.1 - filter: - - record - - voice - - sound - - mute - categories: - - Web Application Icons - - - name: shield - id: shield - unicode: f132 - created: 3.1 - filter: - - award - - achievement - - security - - winner - categories: - - Web Application Icons - - - name: calendar-o - id: calendar-o - unicode: f133 - created: 3.1 - filter: - - date - - time - - when - - event - categories: - - Web Application Icons - - - name: fire-extinguisher - id: fire-extinguisher - unicode: f134 - created: 3.1 - categories: - - Web Application Icons - - - name: rocket - id: rocket - unicode: f135 - created: 3.1 - filter: - - app - categories: - - Web Application Icons - - Transportation Icons - - - name: MaxCDN - id: maxcdn - unicode: f136 - created: 3.1 - categories: - - Brand Icons - - - name: Chevron Circle Left - id: chevron-circle-left - unicode: f137 - created: 3.1 - filter: - - previous - - back - - arrow - categories: - - Directional Icons - - - name: Chevron Circle Right - id: chevron-circle-right - unicode: f138 - created: 3.1 - filter: - - next - - forward - - arrow - categories: - - Directional Icons - - - name: Chevron Circle Up - id: chevron-circle-up - unicode: f139 - created: 3.1 - filter: - - arrow - categories: - - Directional Icons - - - name: Chevron Circle Down - id: chevron-circle-down - unicode: f13a - created: 3.1 - filter: - - more - - dropdown - - menu - - arrow - categories: - - Directional Icons - - - name: HTML 5 Logo - id: html5 - unicode: f13b - created: 3.1 - code: - - code - - html5 - categories: - - Brand Icons - - - name: CSS 3 Logo - id: css3 - unicode: f13c - created: 3.1 - filter: - - code - categories: - - Brand Icons - - - name: Anchor - id: anchor - unicode: f13d - created: 3.1 - filter: - - link - categories: - - Web Application Icons - - - name: Unlock Alt - id: unlock-alt - unicode: f13e - created: 3.1 - filter: - - protect - - admin - - password - - lock - categories: - - Web Application Icons - - - - name: Bullseye - id: bullseye - unicode: f140 - created: 3.1 - filter: - - target - categories: - - Web Application Icons - - - name: Ellipsis Horizontal - id: ellipsis-h - unicode: f141 - created: 3.1 - filter: - - dots - categories: - - Web Application Icons - - - name: Ellipsis Vertical - id: ellipsis-v - unicode: f142 - created: 3.1 - filter: - - dots - categories: - - Web Application Icons - - - name: RSS Square - id: rss-square - unicode: f143 - created: 3.1 - filter: - - feed - - blog - categories: - - Web Application Icons - - - name: Play Circle - id: play-circle - unicode: f144 - created: 3.1 - filter: - - start - - playing - categories: - - Video Player Icons - - - name: Ticket - id: ticket - unicode: f145 - created: 3.1 - filter: - - movie - - pass - - support - categories: - - Web Application Icons - - - name: Minus Square - id: minus-square - unicode: f146 - created: 3.1 - filter: - - hide - - minify - - delete - - remove - - trash - - hide - - collapse - categories: - - Web Application Icons - - Form Control Icons - - - name: Minus Square Outlined - id: minus-square-o - unicode: f147 - created: 3.1 - filter: - - hide - - minify - - delete - - remove - - trash - - hide - - collapse - categories: - - Web Application Icons - - Form Control Icons - - - - name: Level Up - id: level-up - unicode: f148 - created: 3.1 - filter: - - arrow - categories: - - Web Application Icons - - - name: Level Down - id: level-down - unicode: f149 - created: 3.1 - filter: - - arrow - categories: - - Web Application Icons - - - name: Check Square - id: check-square - unicode: f14a - created: 3.1 - filter: - - checkmark - - done - - todo - - agree - - accept - - confirm - - ok - categories: - - Web Application Icons - - Form Control Icons - - - name: Pencil Square - id: pencil-square - unicode: f14b - created: 3.1 - filter: - - write - - edit - - update - categories: - - Web Application Icons - - - name: External Link Square - id: external-link-square - unicode: f14c - created: 3.1 - filter: - - open - - new - categories: - - Web Application Icons - - - name: Share Square - id: share-square - unicode: f14d - created: 3.1 - filter: - - social - - send - categories: - - Web Application Icons - - - name: Compass - id: compass - unicode: f14e - created: 3.2 - filter: - - safari - - directory - - menu - - location - categories: - - Web Application Icons - - - - name: Caret Square Outlined Down - id: caret-square-o-down - unicode: f150 - created: 3.2 - aliases: - - toggle-down - filter: - - more - - dropdown - - menu - categories: - - Web Application Icons - - Directional Icons - - - name: Caret Square Outlined Up - id: caret-square-o-up - unicode: f151 - created: 3.2 - aliases: - - toggle-up - categories: - - Web Application Icons - - Directional Icons - - - name: Caret Square Outlined Right - id: caret-square-o-right - unicode: f152 - created: 3.2 - filter: - - next - - forward - aliases: - - toggle-right - categories: - - Web Application Icons - - Directional Icons - - - name: Euro (EUR) - id: eur - unicode: f153 - created: 3.2 - aliases: - - euro - categories: - - Currency Icons - - - name: GBP - id: gbp - unicode: f154 - created: 3.2 - categories: - - Currency Icons - - - name: US Dollar - id: usd - unicode: f155 - created: 3.2 - aliases: - - dollar - categories: - - Currency Icons - - - name: Indian Rupee (INR) - id: inr - unicode: f156 - created: 3.2 - aliases: - - rupee - categories: - - Currency Icons - - - name: Japanese Yen (JPY) - id: jpy - unicode: f157 - created: 3.2 - aliases: - - cny - - rmb - - yen - categories: - - Currency Icons - - - name: Russian Ruble (RUB) - id: rub - unicode: f158 - created: 4.0 - aliases: - - ruble - - rouble - categories: - - Currency Icons - - - name: Korean Won (KRW) - id: krw - unicode: f159 - created: 3.2 - aliases: - - won - categories: - - Currency Icons - - - name: Bitcoin (BTC) - id: btc - unicode: f15a - created: 3.2 - aliases: - - bitcoin - categories: - - Currency Icons - - Brand Icons - - - name: File - id: file - unicode: f15b - created: 3.2 - filter: - - new - - page - - pdf - - document - categories: - - Text Editor Icons - - File Type Icons - - - name: File Text - id: file-text - unicode: f15c - created: 3.2 - filter: - - new - - page - - pdf - - document - categories: - - Text Editor Icons - - File Type Icons - - - name: Sort Alpha Ascending - id: sort-alpha-asc - unicode: f15d - created: 3.2 - categories: - - Web Application Icons - - - name: Sort Alpha Descending - id: sort-alpha-desc - unicode: f15e - created: 3.2 - categories: - - Web Application Icons - - - - name: Sort Amount Ascending - id: sort-amount-asc - unicode: f160 - created: 3.2 - categories: - - Web Application Icons - - - name: Sort Amount Descending - id: sort-amount-desc - unicode: f161 - created: 3.2 - categories: - - Web Application Icons - - - name: Sort Numeric Ascending - id: sort-numeric-asc - unicode: f162 - created: 3.2 - filter: - - numbers - categories: - - Web Application Icons - - - name: Sort Numeric Descending - id: sort-numeric-desc - unicode: f163 - created: 3.2 - filter: - - numbers - categories: - - Web Application Icons - - - - name: thumbs-up - id: thumbs-up - unicode: f164 - created: 3.2 - filter: - - like - - favorite - - approve - - agree - - hand - categories: - - Web Application Icons - - Hand Icons - - - name: thumbs-down - id: thumbs-down - unicode: f165 - created: 3.2 - filter: - - dislike - - disapprove - - disagree - - hand - categories: - - Web Application Icons - - Hand Icons - - - name: YouTube Square - id: youtube-square - unicode: f166 - created: 3.2 - filter: - - video - - film - categories: - - Brand Icons - - - name: YouTube - id: youtube - unicode: f167 - created: 3.2 - filter: - - video - - film - categories: - - Brand Icons - - - name: Xing - id: xing - unicode: f168 - created: 3.2 - categories: - - Brand Icons - - - name: Xing Square - id: xing-square - unicode: f169 - created: 3.2 - categories: - - Brand Icons - - - name: YouTube Play - id: youtube-play - unicode: f16a - created: 3.2 - filter: - - start - - playing - categories: - - Brand Icons - - Video Player Icons - - - name: Dropbox - id: dropbox - unicode: f16b - created: 3.2 - categories: - - Brand Icons - - - name: Stack Overflow - id: stack-overflow - unicode: f16c - created: 3.2 - categories: - - Brand Icons - - - name: Instagram - id: instagram - unicode: f16d - created: 4.6 - categories: - - Brand Icons - - - name: Flickr - id: flickr - unicode: f16e - created: 3.2 - categories: - - Brand Icons - - - name: App.net - id: adn - unicode: f170 - created: 3.2 - categories: - - Brand Icons - - - name: Bitbucket - id: bitbucket - unicode: f171 - created: 3.2 - filter: - - git - categories: - - Brand Icons - - - name: Bitbucket Square - id: bitbucket-square - unicode: f172 - created: 3.2 - filter: - - git - categories: - - Brand Icons - - - name: Tumblr - id: tumblr - unicode: f173 - created: 3.2 - categories: - - Brand Icons - - - name: Tumblr Square - id: tumblr-square - unicode: f174 - created: 3.2 - categories: - - Brand Icons - - - name: Long Arrow Down - id: long-arrow-down - unicode: f175 - created: 3.2 - categories: - - Directional Icons - - - name: Long Arrow Up - id: long-arrow-up - unicode: f176 - created: 3.2 - categories: - - Directional Icons - - - name: Long Arrow Left - id: long-arrow-left - unicode: f177 - created: 3.2 - filter: - - previous - - back - categories: - - Directional Icons - - - name: Long Arrow Right - id: long-arrow-right - unicode: f178 - created: 3.2 - categories: - - Directional Icons - - - name: Apple - id: apple - unicode: f179 - created: 3.2 - filter: - - osx - - food - categories: - - Brand Icons - - - name: Windows - id: windows - unicode: f17a - created: 3.2 - filter: - - microsoft - categories: - - Brand Icons - - - name: Android - id: android - unicode: f17b - created: 3.2 - filter: - - robot - categories: - - Brand Icons - - - name: Linux - id: linux - unicode: f17c - created: 3.2 - filter: - - tux - categories: - - Brand Icons - - - name: Dribbble - id: dribbble - unicode: f17d - created: 3.2 - categories: - - Brand Icons - - - name: Skype - id: skype - unicode: f17e - created: 3.2 - categories: - - Brand Icons - - - - name: Foursquare - id: foursquare - unicode: f180 - created: 3.2 - categories: - - Brand Icons - - - name: Trello - id: trello - unicode: f181 - created: 3.2 - categories: - - Brand Icons - - - name: Female - id: female - unicode: f182 - created: 3.2 - filter: - - woman - - user - - person - - profile - categories: - - Web Application Icons - - - name: Male - id: male - unicode: f183 - created: 3.2 - filter: - - man - - user - - person - - profile - categories: - - Web Application Icons - - - name: Gratipay (Gittip) - id: gratipay - unicode: f184 - created: 3.2 - aliases: - - gittip - filter: - - heart - - like - - favorite - - love - categories: - - Brand Icons - - - name: Sun Outlined - id: sun-o - unicode: f185 - created: 3.2 - filter: - - weather - - contrast - - lighter - - brighten - - day - categories: - - Web Application Icons - - - name: Moon Outlined - id: moon-o - unicode: f186 - created: 3.2 - filter: - - night - - darker - - contrast - categories: - - Web Application Icons - - - name: Archive - id: archive - unicode: f187 - created: 3.2 - filter: - - box - - storage - categories: - - Web Application Icons - - - name: Bug - id: bug - unicode: f188 - created: 3.2 - filter: - - report - - insect - categories: - - Web Application Icons - - - name: VK - id: vk - unicode: f189 - created: 3.2 - categories: - - Brand Icons - - - name: Weibo - id: weibo - unicode: f18a - created: 3.2 - categories: - - Brand Icons - - - name: Renren - id: renren - unicode: f18b - created: 3.2 - categories: - - Brand Icons - - - - name: Pagelines - id: pagelines - unicode: f18c - created: 4.0 - filter: - - leaf - - leaves - - tree - - plant - - eco - - nature - categories: - - Brand Icons - - - name: Stack Exchange - id: stack-exchange - unicode: f18d - created: 4.0 - categories: - - Brand Icons - - - name: Arrow Circle Outlined Right - id: arrow-circle-o-right - unicode: f18e - created: 4.0 - filter: - - next - - forward - categories: - - Directional Icons - - - - name: Arrow Circle Outlined Left - id: arrow-circle-o-left - unicode: f190 - created: 4.0 - filter: - - previous - - back - categories: - - Directional Icons - - - name: Caret Square Outlined Left - id: caret-square-o-left - unicode: f191 - created: 4.0 - filter: - - previous - - back - aliases: - - toggle-left - categories: - - Web Application Icons - - Directional Icons - - - name: Dot Circle Outlined - id: dot-circle-o - unicode: f192 - created: 4.0 - filter: - - target - - bullseye - - notification - categories: - - Web Application Icons - - Form Control Icons - - - name: Wheelchair - id: wheelchair - unicode: f193 - created: 4.0 - filter: - - handicap - - person - categories: - - Web Application Icons - - Medical Icons - - Transportation Icons - - Accessibility Icons - - - name: Vimeo Square - id: vimeo-square - unicode: f194 - created: 4.0 - categories: - - Brand Icons - - - name: Turkish Lira (TRY) - id: try - unicode: f195 - created: 4.0 - aliases: - - turkish-lira - categories: - - Currency Icons - - - name: Plus Square Outlined - id: plus-square-o - unicode: f196 - created: 4.0 - filter: - - add - - new - - create - - expand - categories: - - Web Application Icons - - Form Control Icons - - - name: Space Shuttle - id: space-shuttle - unicode: f197 - created: 4.1 - filter: - categories: - - Web Application Icons - - Transportation Icons - - - name: Slack Logo - id: slack - unicode: f198 - created: 4.1 - filter: - - hashtag - - anchor - - hash - categories: - - Brand Icons - - - name: Envelope Square - id: envelope-square - unicode: f199 - created: 4.1 - categories: - - Web Application Icons - - - name: WordPress Logo - id: wordpress - unicode: f19a - created: 4.1 - categories: - - Brand Icons - - - name: OpenID - id: openid - unicode: f19b - created: 4.1 - categories: - - Brand Icons - - - name: University - id: university - unicode: f19c - created: 4.1 - aliases: - - institution - - bank - categories: - - Web Application Icons - - - name: Graduation Cap - id: graduation-cap - unicode: f19d - created: 4.1 - aliases: - - mortar-board - filter: - - learning - - school - - student - categories: - - Web Application Icons - - - name: Yahoo Logo - id: yahoo - unicode: f19e - created: 4.1 - categories: - - Brand Icons - - - - name: Google Logo - id: google - unicode: f1a0 - created: 4.1 - categories: - - Brand Icons - - - name: reddit Logo - id: reddit - unicode: f1a1 - created: 4.1 - categories: - - Brand Icons - - - name: reddit Square - id: reddit-square - unicode: f1a2 - created: 4.1 - categories: - - Brand Icons - - - name: StumbleUpon Circle - id: stumbleupon-circle - unicode: f1a3 - created: 4.1 - categories: - - Brand Icons - - - name: StumbleUpon Logo - id: stumbleupon - unicode: f1a4 - created: 4.1 - categories: - - Brand Icons - - - name: Delicious Logo - id: delicious - unicode: f1a5 - created: 4.1 - categories: - - Brand Icons - - - name: Digg Logo - id: digg - unicode: f1a6 - created: 4.1 - categories: - - Brand Icons - - - name: Pied Piper PP Logo (Old) - id: pied-piper-pp - unicode: f1a7 - created: 4.1 - categories: - - Brand Icons - - - name: Pied Piper Alternate Logo - id: pied-piper-alt - unicode: f1a8 - created: 4.1 - categories: - - Brand Icons - - - name: Drupal Logo - id: drupal - unicode: f1a9 - created: 4.1 - categories: - - Brand Icons - - - name: Joomla Logo - id: joomla - unicode: f1aa - created: 4.1 - categories: - - Brand Icons - - - name: Language - id: language - unicode: f1ab - created: 4.1 - categories: - - Web Application Icons - - - name: Fax - id: fax - unicode: f1ac - created: 4.1 - categories: - - Web Application Icons - - - name: Building - id: building - unicode: f1ad - created: 4.1 - filter: - - work - - business - - apartment - - office - - company - categories: - - Web Application Icons - - - name: Child - id: child - unicode: f1ae - created: 4.1 - categories: - - Web Application Icons - - - - name: Paw - id: paw - unicode: f1b0 - created: 4.1 - filter: - - pet - categories: - - Web Application Icons - - - name: spoon - id: spoon - unicode: f1b1 - created: 4.1 - categories: - - Web Application Icons - - - name: Cube - id: cube - unicode: f1b2 - created: 4.1 - categories: - - Web Application Icons - - - name: Cubes - id: cubes - unicode: f1b3 - created: 4.1 - categories: - - Web Application Icons - - - name: Behance - id: behance - unicode: f1b4 - created: 4.1 - categories: - - Brand Icons - - - name: Behance Square - id: behance-square - unicode: f1b5 - created: 4.1 - categories: - - Brand Icons - - - name: Steam - id: steam - unicode: f1b6 - created: 4.1 - categories: - - Brand Icons - - - name: Steam Square - id: steam-square - unicode: f1b7 - created: 4.1 - categories: - - Brand Icons - - - name: Recycle - id: recycle - unicode: f1b8 - created: 4.1 - categories: - - Web Application Icons - - - name: Car - id: car - unicode: f1b9 - created: 4.1 - aliases: - - automobile - filter: - - vehicle - categories: - - Web Application Icons - - Transportation Icons - - - name: Taxi - id: taxi - unicode: f1ba - created: 4.1 - aliases: - - cab - filter: - - vehicle - categories: - - Web Application Icons - - Transportation Icons - - - name: Tree - id: tree - unicode: f1bb - created: 4.1 - categories: - - Web Application Icons - - - name: Spotify - id: spotify - unicode: f1bc - created: 4.1 - categories: - - Brand Icons - - - name: deviantART - id: deviantart - unicode: f1bd - created: 4.1 - categories: - - Brand Icons - - - name: SoundCloud - id: soundcloud - unicode: f1be - created: 4.1 - categories: - - Brand Icons - - - name: Database - id: database - unicode: f1c0 - created: 4.1 - categories: - - Web Application Icons - - - name: PDF File Outlined - id: file-pdf-o - unicode: f1c1 - created: 4.1 - categories: - - Web Application Icons - - File Type Icons - - - name: Word File Outlined - id: file-word-o - unicode: f1c2 - created: 4.1 - categories: - - Web Application Icons - - File Type Icons - - - name: Excel File Outlined - id: file-excel-o - unicode: f1c3 - created: 4.1 - categories: - - Web Application Icons - - File Type Icons - - - name: Powerpoint File Outlined - id: file-powerpoint-o - unicode: f1c4 - created: 4.1 - categories: - - Web Application Icons - - File Type Icons - - - name: Image File Outlined - id: file-image-o - unicode: f1c5 - created: 4.1 - aliases: - - file-photo-o - - file-picture-o - categories: - - Web Application Icons - - File Type Icons - - - name: Archive File Outlined - id: file-archive-o - unicode: f1c6 - created: 4.1 - aliases: - - file-zip-o - categories: - - Web Application Icons - - File Type Icons - - - name: Audio File Outlined - id: file-audio-o - unicode: f1c7 - created: 4.1 - aliases: - - file-sound-o - categories: - - Web Application Icons - - File Type Icons - - - name: Video File Outlined - id: file-video-o - unicode: f1c8 - created: 4.1 - aliases: - - file-movie-o - categories: - - Web Application Icons - - File Type Icons - - - name: Code File Outlined - id: file-code-o - unicode: f1c9 - created: 4.1 - categories: - - Web Application Icons - - File Type Icons - - - name: Vine - id: vine - unicode: f1ca - created: 4.1 - categories: - - Brand Icons - - - name: Codepen - id: codepen - unicode: f1cb - created: 4.1 - categories: - - Brand Icons - - - name: jsFiddle - id: jsfiddle - unicode: f1cc - created: 4.1 - categories: - - Brand Icons - - - name: Life Ring - id: life-ring - unicode: f1cd - created: 4.1 - aliases: - - life-bouy # TODO: Deprecated - remove in 5.0.0 - - life-buoy - - life-saver - - support - categories: - - Web Application Icons - - - name: Circle Outlined Notched - id: circle-o-notch - unicode: f1ce - created: 4.1 - categories: - - Web Application Icons - - Spinner Icons - - - - name: Rebel Alliance - id: rebel - unicode: f1d0 - created: 4.1 - aliases: - - ra - - resistance - categories: - - Brand Icons - - - name: Galactic Empire - id: empire - unicode: f1d1 - created: 4.1 - aliases: - - ge - categories: - - Brand Icons - - - name: Git Square - id: git-square - unicode: f1d2 - created: 4.1 - categories: - - Brand Icons - - - name: Git - id: git - unicode: f1d3 - created: 4.1 - categories: - - Brand Icons - - - name: Hacker News - id: hacker-news - unicode: f1d4 - created: 4.1 - aliases: - - y-combinator-square - - yc-square - categories: - - Brand Icons - - - name: Tencent Weibo - id: tencent-weibo - unicode: f1d5 - created: 4.1 - categories: - - Brand Icons - - - name: QQ - id: qq - unicode: f1d6 - created: 4.1 - categories: - - Brand Icons - - - name: Weixin (WeChat) - id: weixin - unicode: f1d7 - created: 4.1 - aliases: - - wechat - categories: - - Brand Icons - - - name: Paper Plane - id: paper-plane - unicode: f1d8 - created: 4.1 - aliases: - - send - categories: - - Web Application Icons - - - name: Paper Plane Outlined - id: paper-plane-o - unicode: f1d9 - created: 4.1 - aliases: - - send-o - categories: - - Web Application Icons - - - name: History - id: history - unicode: f1da - created: 4.1 - categories: - - Web Application Icons - - - name: Circle Outlined Thin - id: circle-thin - unicode: f1db - created: 4.1 - categories: - - Web Application Icons - - - name: header - id: header - unicode: f1dc - created: 4.1 - filter: - - heading - categories: - - Text Editor Icons - - - name: paragraph - id: paragraph - unicode: f1dd - created: 4.1 - categories: - - Text Editor Icons - - - name: Sliders - id: sliders - unicode: f1de - created: 4.1 - filter: - - settings - categories: - - Web Application Icons - - - - name: Share Alt - id: share-alt - unicode: f1e0 - created: 4.1 - categories: - - Web Application Icons - - Brand Icons - - - name: Share Alt Square - id: share-alt-square - unicode: f1e1 - created: 4.1 - categories: - - Web Application Icons - - Brand Icons - - - name: Bomb - id: bomb - unicode: f1e2 - created: 4.1 - categories: - - Web Application Icons - - - name: Futbol Outlined - id: futbol-o - unicode: f1e3 - created: 4.2 - aliases: - - soccer-ball-o - categories: - - Web Application Icons - - - name: TTY - id: tty - unicode: f1e4 - created: 4.2 - categories: - - Web Application Icons - - Accessibility Icons - - - name: Binoculars - id: binoculars - unicode: f1e5 - created: 4.2 - categories: - - Web Application Icons - - - name: Plug - id: plug - unicode: f1e6 - created: 4.2 - filter: - - power - - connect - categories: - - Web Application Icons - - - name: Slideshare - id: slideshare - unicode: f1e7 - created: 4.2 - categories: - - Brand Icons - - - name: Twitch - id: twitch - unicode: f1e8 - created: 4.2 - categories: - - Brand Icons - - - name: Yelp - id: yelp - unicode: f1e9 - created: 4.2 - categories: - - Brand Icons - - - name: Newspaper Outlined - id: newspaper-o - unicode: f1ea - created: 4.2 - filter: - - press - categories: - - Web Application Icons - - - name: WiFi - id: wifi - unicode: f1eb - created: 4.2 - categories: - - Web Application Icons - - - name: Calculator - id: calculator - unicode: f1ec - created: 4.2 - categories: - - Web Application Icons - - - name: Paypal - id: paypal - unicode: f1ed - created: 4.2 - categories: - - Brand Icons - - Payment Icons - - - name: Google Wallet - id: google-wallet - unicode: f1ee - created: 4.2 - categories: - - Brand Icons - - Payment Icons - - - - name: Visa Credit Card - id: cc-visa - unicode: f1f0 - created: 4.2 - categories: - - Brand Icons - - Payment Icons - - - name: MasterCard Credit Card - id: cc-mastercard - unicode: f1f1 - created: 4.2 - categories: - - Brand Icons - - Payment Icons - - - name: Discover Credit Card - id: cc-discover - unicode: f1f2 - created: 4.2 - categories: - - Brand Icons - - Payment Icons - - - name: American Express Credit Card - id: cc-amex - unicode: f1f3 - created: 4.2 - filter: - - amex - categories: - - Brand Icons - - Payment Icons - - - name: Paypal Credit Card - id: cc-paypal - unicode: f1f4 - created: 4.2 - categories: - - Brand Icons - - Payment Icons - - - name: Stripe Credit Card - id: cc-stripe - unicode: f1f5 - created: 4.2 - categories: - - Brand Icons - - Payment Icons - - - name: Bell Slash - id: bell-slash - unicode: f1f6 - created: 4.2 - categories: - - Web Application Icons - - - name: Bell Slash Outlined - id: bell-slash-o - unicode: f1f7 - created: 4.2 - categories: - - Web Application Icons - - - name: Trash - id: trash - unicode: f1f8 - created: 4.2 - filter: - - garbage - - delete - - remove - - hide - categories: - - Web Application Icons - - - name: Copyright - id: copyright - unicode: f1f9 - created: 4.2 - categories: - - Web Application Icons - - - name: At - id: at - unicode: f1fa - created: 4.2 - categories: - - Web Application Icons - - - name: Eyedropper - id: eyedropper - unicode: f1fb - created: 4.2 - categories: - - Web Application Icons - - - name: Paint Brush - id: paint-brush - unicode: f1fc - created: 4.2 - categories: - - Web Application Icons - - - name: Birthday Cake - id: birthday-cake - unicode: f1fd - created: 4.2 - categories: - - Web Application Icons - - - name: Area Chart - id: area-chart - unicode: f1fe - created: 4.2 - filter: - - graph - - analytics - categories: - - Web Application Icons - - Chart Icons - - - name: Pie Chart - id: pie-chart - unicode: f200 - created: 4.2 - filter: - - graph - - analytics - categories: - - Web Application Icons - - Chart Icons - - - name: Line Chart - id: line-chart - unicode: f201 - created: 4.2 - filter: - - graph - - analytics - categories: - - Web Application Icons - - Chart Icons - - - name: last.fm - id: lastfm - unicode: f202 - created: 4.2 - categories: - - Brand Icons - - - name: last.fm Square - id: lastfm-square - unicode: f203 - created: 4.2 - categories: - - Brand Icons - - - name: Toggle Off - id: toggle-off - unicode: f204 - created: 4.2 - categories: - - Web Application Icons - - - name: Toggle On - id: toggle-on - unicode: f205 - created: 4.2 - categories: - - Web Application Icons - - - name: Bicycle - id: bicycle - unicode: f206 - created: 4.2 - filter: - - vehicle - - bike - categories: - - Web Application Icons - - Transportation Icons - - - name: Bus - id: bus - unicode: f207 - created: 4.2 - filter: - - vehicle - categories: - - Web Application Icons - - Transportation Icons - - - name: ioxhost - id: ioxhost - unicode: f208 - created: 4.2 - url: ioxhost.co.uk - categories: - - Brand Icons - - - name: AngelList - id: angellist - unicode: f209 - created: 4.2 - categories: - - Brand Icons - - - name: Closed Captions - id: cc - unicode: f20a - created: 4.2 - categories: - - Web Application Icons - - Accessibility Icons - - - name: Shekel (ILS) - id: ils - unicode: f20b - created: 4.2 - aliases: - - shekel - - sheqel - categories: - - Currency Icons - - - name: meanpath - id: meanpath - unicode: f20c - created: 4.2 - url: meanpath.com - categories: - - Brand Icons - - - name: BuySellAds - id: buysellads - unicode: f20d - created: 4.3 - url: buysellads.com - categories: - - Brand Icons - - - name: Connect Develop - id: connectdevelop - unicode: f20e - created: 4.3 - url: connectdevelop.com - categories: - - Brand Icons - - - - name: DashCube - id: dashcube - unicode: f210 - created: 4.3 - url: dashcube.com - categories: - - Brand Icons - - - name: Forumbee - id: forumbee - unicode: f211 - created: 4.3 - url: forumbee.com - categories: - - Brand Icons - - - name: Leanpub - id: leanpub - unicode: f212 - created: 4.3 - url: leanpub.com - categories: - - Brand Icons - - - name: Sellsy - id: sellsy - unicode: f213 - created: 4.3 - url: sellsy.com - categories: - - Brand Icons - - - name: Shirts in Bulk - id: shirtsinbulk - unicode: f214 - created: 4.3 - url: shirtsinbulk.com - categories: - - Brand Icons - - - name: SimplyBuilt - id: simplybuilt - unicode: f215 - created: 4.3 - url: simplybuilt.com - categories: - - Brand Icons - - - name: skyatlas - id: skyatlas - unicode: f216 - created: 4.3 - url: skyatlas.com - categories: - - Brand Icons - - - name: Add to Shopping Cart - id: cart-plus - unicode: f217 - created: 4.3 - filter: - - add - - shopping - categories: - - Web Application Icons - - - name: Shopping Cart Arrow Down - id: cart-arrow-down - unicode: f218 - created: 4.3 - filter: - - shopping - categories: - - Web Application Icons - - - name: Diamond - id: diamond - unicode: f219 - created: 4.3 - filter: - - gem - - gemstone - categories: - - Web Application Icons - - - name: Ship - id: ship - unicode: f21a - created: 4.3 - filter: - - boat - - sea - categories: - - Web Application Icons - - Transportation Icons - - - name: User Secret - id: user-secret - unicode: f21b - created: 4.3 - filter: - - whisper - - spy - - incognito - - privacy - categories: - - Web Application Icons - - - name: Motorcycle - id: motorcycle - unicode: f21c - created: 4.3 - filter: - - vehicle - - bike - categories: - - Web Application Icons - - Transportation Icons - - - name: Street View - id: street-view - unicode: f21d - created: 4.3 - filter: - - map - categories: - - Web Application Icons - - - name: Heartbeat - id: heartbeat - unicode: f21e - created: 4.3 - filter: - - ekg - categories: - - Web Application Icons - - Medical Icons - - - - name: Venus - id: venus - unicode: f221 - created: 4.3 - filter: - - female - categories: - - Gender Icons - - - name: Mars - id: mars - unicode: f222 - created: 4.3 - filter: - - male - categories: - - Gender Icons - - - name: Mercury - id: mercury - unicode: f223 - created: 4.3 - filter: - - transgender - categories: - - Gender Icons - - - name: Transgender - id: transgender - unicode: f224 - created: 4.3 - aliases: - - intersex - categories: - - Gender Icons - - - name: Transgender Alt - id: transgender-alt - unicode: f225 - created: 4.3 - categories: - - Gender Icons - - - name: Venus Double - id: venus-double - unicode: f226 - created: 4.3 - categories: - - Gender Icons - - - name: Mars Double - id: mars-double - unicode: f227 - created: 4.3 - categories: - - Gender Icons - - - name: Venus Mars - id: venus-mars - unicode: f228 - created: 4.3 - categories: - - Gender Icons - - - name: Mars Stroke - id: mars-stroke - unicode: f229 - created: 4.3 - categories: - - Gender Icons - - - name: Mars Stroke Vertical - id: mars-stroke-v - unicode: f22a - created: 4.3 - categories: - - Gender Icons - - - name: Mars Stroke Horizontal - id: mars-stroke-h - unicode: f22b - created: 4.3 - categories: - - Gender Icons - - - name: Neuter - id: neuter - unicode: f22c - created: 4.3 - categories: - - Gender Icons - - - name: Genderless - id: genderless - unicode: f22d - created: 4.4 - categories: - - Gender Icons - - - - name: Facebook Official - id: facebook-official - unicode: f230 - created: 4.3 - categories: - - Brand Icons - - - name: Pinterest P - id: pinterest-p - unicode: f231 - created: 4.3 - categories: - - Brand Icons - - - name: What's App - id: whatsapp - unicode: f232 - created: 4.3 - categories: - - Brand Icons - - - name: Server - id: server - unicode: f233 - created: 4.3 - categories: - - Web Application Icons - - - name: Add User - id: user-plus - unicode: f234 - created: 4.3 - filter: - - sign up - - signup - categories: - - Web Application Icons - - - name: Remove User - id: user-times - unicode: f235 - created: 4.3 - categories: - - Web Application Icons - - - name: Bed - id: bed - unicode: f236 - created: 4.3 - filter: - - travel - aliases: - - hotel - categories: - - Web Application Icons - - - name: Viacoin - id: viacoin - unicode: f237 - created: 4.3 - url: viacoin.org - categories: - - Brand Icons - - - name: Train - id: train - unicode: f238 - created: 4.3 - categories: - - Transportation Icons - - - name: Subway - id: subway - unicode: f239 - created: 4.3 - categories: - - Transportation Icons - - - name: Medium - id: medium - unicode: f23a - created: 4.3 - categories: - - Brand Icons - - - name: Y Combinator - id: y-combinator - unicode: f23b - created: 4.4 - aliases: - - yc - categories: - - Brand Icons - - - name: Optin Monster - id: optin-monster - unicode: f23c - created: 4.4 - url: optinmonster.com - categories: - - Brand Icons - - - name: OpenCart - id: opencart - unicode: f23d - created: 4.4 - url: opencart.com - categories: - - Brand Icons - - - name: ExpeditedSSL - id: expeditedssl - unicode: f23e - created: 4.4 - categories: - - Brand Icons - - - - name: Battery Full - id: battery-full - unicode: f240 - created: 4.4 - aliases: - - battery-4 - - battery - filter: - - power - categories: - - Web Application Icons - - - name: Battery 3/4 Full - id: battery-three-quarters - unicode: f241 - created: 4.4 - aliases: - - battery-3 - filter: - - power - categories: - - Web Application Icons - - - name: Battery 1/2 Full - id: battery-half - unicode: f242 - created: 4.4 - aliases: - - battery-2 - filter: - - power - categories: - - Web Application Icons - - - name: Battery 1/4 Full - id: battery-quarter - unicode: f243 - created: 4.4 - aliases: - - battery-1 - filter: - - power - categories: - - Web Application Icons - - - name: Battery Empty - id: battery-empty - unicode: f244 - created: 4.4 - aliases: - - battery-0 - filter: - - power - categories: - - Web Application Icons - - - name: Mouse Pointer - id: mouse-pointer - unicode: f245 - created: 4.4 - categories: - - Web Application Icons - - - name: I Beam Cursor - id: i-cursor - unicode: f246 - created: 4.4 - categories: - - Web Application Icons - - - name: Object Group - id: object-group - unicode: f247 - created: 4.4 - categories: - - Web Application Icons - - - name: Object Ungroup - id: object-ungroup - unicode: f248 - created: 4.4 - categories: - - Web Application Icons - - - name: Sticky Note - id: sticky-note - unicode: f249 - created: 4.4 - categories: - - Web Application Icons - - - name: Sticky Note Outlined - id: sticky-note-o - unicode: f24a - created: 4.4 - categories: - - Web Application Icons - - - name: JCB Credit Card - id: cc-jcb - unicode: f24b - created: 4.4 - categories: - - Brand Icons - - Payment Icons - - - name: Diner's Club Credit Card - id: cc-diners-club - unicode: f24c - created: 4.4 - categories: - - Brand Icons - - Payment Icons - - - name: Clone - id: clone - unicode: f24d - created: 4.4 - filter: - - copy - categories: - - Web Application Icons - - - name: Balance Scale - id: balance-scale - unicode: f24e - created: 4.4 - categories: - - Web Application Icons - - - - name: Hourglass Outlined - id: hourglass-o - unicode: f250 - created: 4.4 - categories: - - Web Application Icons - - - name: Hourglass Start - id: hourglass-start - unicode: f251 - created: 4.4 - aliases: - - hourglass-1 - categories: - - Web Application Icons - - - name: Hourglass Half - id: hourglass-half - unicode: f252 - created: 4.4 - aliases: - - hourglass-2 - categories: - - Web Application Icons - - - name: Hourglass End - id: hourglass-end - unicode: f253 - created: 4.4 - aliases: - - hourglass-3 - categories: - - Web Application Icons - - - name: Hourglass - id: hourglass - unicode: f254 - created: 4.4 - categories: - - Web Application Icons - - - name: Rock (Hand) - id: hand-rock-o - unicode: f255 - created: 4.4 - aliases: - - hand-grab-o - categories: - - Web Application Icons - - Hand Icons - - - name: Paper (Hand) - id: hand-paper-o - unicode: f256 - created: 4.4 - aliases: - - hand-stop-o - filter: - - stop - categories: - - Web Application Icons - - Hand Icons - - - name: Scissors (Hand) - id: hand-scissors-o - unicode: f257 - created: 4.4 - categories: - - Web Application Icons - - Hand Icons - - - name: Lizard (Hand) - id: hand-lizard-o - unicode: f258 - created: 4.4 - categories: - - Web Application Icons - - Hand Icons - - - name: Spock (Hand) - id: hand-spock-o - unicode: f259 - created: 4.4 - categories: - - Web Application Icons - - Hand Icons - - - name: Hand Pointer - id: hand-pointer-o - unicode: f25a - created: 4.4 - categories: - - Web Application Icons - - Hand Icons - - - name: Hand Peace - id: hand-peace-o - unicode: f25b - created: 4.4 - categories: - - Web Application Icons - - Hand Icons - - - name: Trademark - id: trademark - unicode: f25c - created: 4.4 - categories: - - Web Application Icons - - - name: Registered Trademark - id: registered - unicode: f25d - created: 4.4 - categories: - - Web Application Icons - - - name: Creative Commons - id: creative-commons - unicode: f25e - created: 4.4 - categories: - - Web Application Icons - - - - name: GG Currency - id: gg - unicode: f260 - created: 4.4 - categories: - - Currency Icons - - Brand Icons - - - name: GG Currency Circle - id: gg-circle - unicode: f261 - created: 4.4 - categories: - - Currency Icons - - Brand Icons - - - name: TripAdvisor - id: tripadvisor - unicode: f262 - created: 4.4 - categories: - - Brand Icons - - - name: Odnoklassniki - id: odnoklassniki - unicode: f263 - created: 4.4 - categories: - - Brand Icons - - - name: Odnoklassniki Square - id: odnoklassniki-square - unicode: f264 - created: 4.4 - categories: - - Brand Icons - - - name: Get Pocket - id: get-pocket - unicode: f265 - created: 4.4 - categories: - - Brand Icons - - - name: Wikipedia W - id: wikipedia-w - unicode: f266 - created: 4.4 - categories: - - Brand Icons - - - name: Safari - id: safari - unicode: f267 - created: 4.4 - filter: - - browser - categories: - - Brand Icons - - - name: Chrome - id: chrome - unicode: f268 - created: 4.4 - filter: - - browser - categories: - - Brand Icons - - - name: Firefox - id: firefox - unicode: f269 - created: 4.4 - filter: - - browser - categories: - - Brand Icons - - - name: Opera - id: opera - unicode: f26a - created: 4.4 - categories: - - Brand Icons - - - name: Internet-explorer - id: internet-explorer - unicode: f26b - created: 4.4 - filter: - - browser - - ie - categories: - - Brand Icons - - - name: Television - id: television - unicode: f26c - created: 4.4 - aliases: - - tv - filter: - - display - - computer - - monitor - categories: - - Web Application Icons - - - name: Contao - id: contao - unicode: f26d - created: 4.4 - categories: - - Brand Icons - - - name: 500px - id: 500px - unicode: f26e - created: 4.4 - categories: - - Brand Icons - - - - name: Amazon - id: amazon - unicode: f270 - created: 4.4 - categories: - - Brand Icons - - - name: Calendar Plus Outlined - id: calendar-plus-o - unicode: f271 - created: 4.4 - categories: - - Web Application Icons - - - name: Calendar Minus Outlined - id: calendar-minus-o - unicode: f272 - created: 4.4 - categories: - - Web Application Icons - - - name: Calendar Times Outlined - id: calendar-times-o - unicode: f273 - created: 4.4 - categories: - - Web Application Icons - - - name: Calendar Check Outlined - id: calendar-check-o - unicode: f274 - created: 4.4 - filter: - - ok - categories: - - Web Application Icons - - - name: Industry - id: industry - unicode: f275 - created: 4.4 - filter: - - factory - categories: - - Web Application Icons - - - name: Map Pin - id: map-pin - unicode: f276 - created: 4.4 - categories: - - Web Application Icons - - - name: Map Signs - id: map-signs - unicode: f277 - created: 4.4 - categories: - - Web Application Icons - - - name: Map Outlined - id: map-o - unicode: f278 - created: 4.4 - categories: - - Web Application Icons - - - name: Map - id: map - unicode: f279 - created: 4.4 - categories: - - Web Application Icons - - - name: Commenting - id: commenting - unicode: f27a - created: 4.4 - filter: - - speech - - notification - - note - - chat - - bubble - - feedback - - message - - texting - - sms - - conversation - categories: - - Web Application Icons - - - name: Commenting Outlined - id: commenting-o - unicode: f27b - created: 4.4 - filter: - - speech - - notification - - note - - chat - - bubble - - feedback - - message - - texting - - sms - - conversation - categories: - - Web Application Icons - - - name: Houzz - id: houzz - unicode: f27c - created: 4.4 - categories: - - Brand Icons - - - name: Vimeo - id: vimeo - unicode: f27d - created: 4.4 - categories: - - Brand Icons - - - name: Font Awesome Black Tie - id: black-tie - unicode: f27e - created: 4.4 - url: blacktie.io - categories: - - Brand Icons - - - - name: Fonticons - id: fonticons - unicode: f280 - created: 4.4 - url: fonticons.com - categories: - - Brand Icons - - - name: reddit Alien - id: reddit-alien - unicode: f281 - created: 4.5 - categories: - - Brand Icons - - - name: Edge Browser - id: edge - unicode: f282 - created: 4.5 - filter: - - browser - - ie - categories: - - Brand Icons - - - name: Credit Card - id: credit-card-alt - unicode: f283 - created: 4.5 - filter: - - money - - buy - - debit - - checkout - - purchase - - payment - - credit card - categories: - - Payment Icons - - Web Application Icons - - - name: Codie Pie - id: codiepie - unicode: f284 - created: 4.5 - url: codiepie.com - categories: - - Brand Icons - - - name: MODX - id: modx - unicode: f285 - created: 4.5 - categories: - - Brand Icons - - - name: Fort Awesome - id: fort-awesome - unicode: f286 - created: 4.5 - url: fortawesome.com - categories: - - Brand Icons - - - name: USB - id: usb - unicode: f287 - created: 4.5 - categories: - - Brand Icons - - - name: Product Hunt - id: product-hunt - unicode: f288 - created: 4.5 - categories: - - Brand Icons - - - name: Mixcloud - id: mixcloud - unicode: f289 - created: 4.5 - categories: - - Brand Icons - - - name: Scribd - id: scribd - unicode: f28a - created: 4.5 - categories: - - Brand Icons - - - name: Pause Circle - id: pause-circle - unicode: f28b - created: 4.5 - categories: - - Video Player Icons - - - name: Pause Circle Outlined - id: pause-circle-o - unicode: f28c - created: 4.5 - categories: - - Video Player Icons - - - name: Stop Circle - id: stop-circle - unicode: f28d - created: 4.5 - categories: - - Video Player Icons - - - name: Stop Circle Outlined - id: stop-circle-o - unicode: f28e - created: 4.5 - categories: - - Video Player Icons - - - - name: Shopping Bag - id: shopping-bag - unicode: f290 - created: 4.5 - categories: - - Web Application Icons - - - name: Shopping Basket - id: shopping-basket - unicode: f291 - created: 4.5 - categories: - - Web Application Icons - - - name: Hashtag - id: hashtag - unicode: f292 - created: 4.5 - categories: - - Web Application Icons - - - name: Bluetooth - id: bluetooth - unicode: f293 - created: 4.5 - categories: - - Web Application Icons - - Brand Icons - - - name: Bluetooth - id: bluetooth-b - unicode: f294 - created: 4.5 - categories: - - Web Application Icons - - Brand Icons - - - name: Percent - id: percent - unicode: f295 - created: 4.5 - categories: - - Web Application Icons - - - - name: GitLab - id: gitlab - unicode: f296 - created: 4.6 - url: gitlab.com - categories: - - Brand Icons - - - name: WPBeginner - id: wpbeginner - unicode: f297 - created: 4.6 - url: wpbeginner.com - categories: - - Brand Icons - - - name: WPForms - id: wpforms - unicode: f298 - created: 4.6 - url: wpforms.com - categories: - - Brand Icons - - - name: Envira Gallery - id: envira - unicode: f299 - created: 4.6 - url: enviragallery.com - filter: - - leaf - categories: - - Brand Icons - - - name: Universal Access - id: universal-access - unicode: f29a - created: 4.6 - categories: - - Web Application Icons - - Accessibility Icons - - - name: Wheelchair Alt - id: wheelchair-alt - unicode: f29b - created: 4.6 - filter: - - handicap - - person - categories: - - Web Application Icons - - Medical Icons - - Transportation Icons - - Accessibility Icons - - - name: Question Circle Outlined - id: question-circle-o - unicode: f29c - created: 4.6 - categories: - - Web Application Icons - - Accessibility Icons - - - name: Blind - id: blind - unicode: f29d - created: 4.6 - categories: - - Web Application Icons - - Accessibility Icons - - - name: Audio Description - id: audio-description - unicode: f29e - created: 4.6 - categories: - - Web Application Icons - - Accessibility Icons - - - - name: Volume Control Phone - id: volume-control-phone - unicode: f2a0 - created: 4.6 - filter: - - telephone - categories: - - Web Application Icons - - Accessibility Icons - - - name: Braille - id: braille - unicode: f2a1 - created: 4.6 - categories: - - Web Application Icons - - Accessibility Icons - - - name: Assistive Listening Systems - id: assistive-listening-systems - unicode: f2a2 - created: 4.6 - categories: - - Web Application Icons - - Accessibility Icons - - - name: American Sign Language Interpreting - id: american-sign-language-interpreting - unicode: f2a3 - created: 4.6 - aliases: - - asl-interpreting - categories: - - Web Application Icons - - Accessibility Icons - - - name: Deaf - id: deaf - unicode: f2a4 - created: 4.6 - aliases: - - deafness - - hard-of-hearing - categories: - - Web Application Icons - - Accessibility Icons - - - name: Glide - id: glide - unicode: f2a5 - created: 4.6 - categories: - - Brand Icons - - - name: Glide G - id: glide-g - unicode: f2a6 - created: 4.6 - categories: - - Brand Icons - - - name: Sign Language - id: sign-language - unicode: f2a7 - created: 4.6 - aliases: - - signing - categories: - - Web Application Icons - - Accessibility Icons - - - - name: Low Vision - id: low-vision - unicode: f2a8 - created: 4.6 - categories: - - Web Application Icons - - Accessibility Icons - - - name: Viadeo - id: viadeo - unicode: f2a9 - created: 4.6 - categories: - - Brand Icons - - - name: Viadeo Square - id: viadeo-square - unicode: f2aa - created: 4.6 - categories: - - Brand Icons - - - name: Snapchat - id: snapchat - unicode: f2ab - created: 4.6 - categories: - - Brand Icons - - - name: Snapchat Ghost - id: snapchat-ghost - unicode: f2ac - created: 4.6 - categories: - - Brand Icons - - - name: Snapchat Square - id: snapchat-square - unicode: f2ad - created: 4.6 - categories: - - Brand Icons - - - name: Pied Piper Logo - id: pied-piper - unicode: f2ae - created: 4.6 - categories: - - Brand Icons - - - - name: First Order - id: first-order - unicode: f2b0 - created: 4.6 - categories: - - Brand Icons - - - name: Yoast - id: yoast - unicode: f2b1 - created: 4.6 - url: yoast.com - categories: - - Brand Icons - - - name: ThemeIsle - id: themeisle - unicode: f2b2 - created: 4.6 - url: themeisle.com - categories: - - Brand Icons - - - name: Google Plus Official - id: google-plus-official - unicode: f2b3 - created: 4.6 - aliases: - - google-plus-circle - categories: - - Brand Icons - - - name: Font Awesome - id: font-awesome - unicode: f2b4 - created: 4.6 - aliases: - - fa - categories: - - Brand Icons - - - name: Handshake Outlined - id: handshake-o - unicode: f2b5 - created: 4.7 - categories: - - Web Application Icons - - - name: Envelope Open - id: envelope-open - unicode: f2b6 - created: 4.7 - categories: - - Web Application Icons - - - name: Envelope Open Outlined - id: envelope-open-o - unicode: f2b7 - created: 4.7 - categories: - - Web Application Icons - - - name: Linode - id: linode - unicode: f2b8 - created: 4.7 - url: linode.com - categories: - - Brand Icons - - - name: Address Book - id: address-book - unicode: f2b9 - created: 4.7 - categories: - - Web Application Icons - - - name: Address Book Outlined - id: address-book-o - unicode: f2ba - created: 4.7 - categories: - - Web Application Icons - - - name: Address Card - id: address-card - unicode: f2bb - created: 4.7 - aliases: - - vcard - categories: - - Web Application Icons - - - name: Address Card Outlined - id: address-card-o - unicode: f2bc - created: 4.7 - aliases: - - vcard-o - categories: - - Web Application Icons - - - name: User Circle - id: user-circle - unicode: f2bd - created: 4.7 - categories: - - Web Application Icons - - - name: User Circle Outlined - id: user-circle-o - unicode: f2be - created: 4.7 - categories: - - Web Application Icons - - - - name: User Outlined - id: user-o - unicode: f2c0 - created: 4.7 - categories: - - Web Application Icons - - - name: Identification Badge - id: id-badge - unicode: f2c1 - created: 4.7 - categories: - - Web Application Icons - - - name: Identification Card - id: id-card - unicode: f2c2 - created: 4.7 - aliases: - - drivers-license - categories: - - Web Application Icons - - - name: Identification Card Outlined - id: id-card-o - unicode: f2c3 - created: 4.7 - aliases: - - drivers-license-o - categories: - - Web Application Icons - - - name: Quora - id: quora - unicode: f2c4 - created: 4.7 - categories: - - Brand Icons - - - name: Free Code Camp - id: free-code-camp - unicode: f2c5 - created: 4.7 - categories: - - Brand Icons - - - name: Telegram - id: telegram - unicode: f2c6 - created: 4.7 - categories: - - Brand Icons - - - name: Thermometer Full - id: thermometer-full - unicode: f2c7 - created: 4.7 - aliases: - - thermometer-4 - - thermometer - categories: - - Web Application Icons - - - name: Thermometer 3/4 Full - id: thermometer-three-quarters - unicode: f2c8 - created: 4.7 - aliases: - - thermometer-3 - categories: - - Web Application Icons - - - name: Thermometer 1/2 Full - id: thermometer-half - unicode: f2c9 - created: 4.7 - aliases: - - thermometer-2 - categories: - - Web Application Icons - - - name: Thermometer 1/4 Full - id: thermometer-quarter - unicode: f2ca - created: 4.7 - aliases: - - thermometer-1 - categories: - - Web Application Icons - - - name: Thermometer Empty - id: thermometer-empty - unicode: f2cb - created: 4.7 - aliases: - - thermometer-0 - categories: - - Web Application Icons - - - name: Shower - id: shower - unicode: f2cc - created: 4.7 - categories: - - Web Application Icons - - - name: Bath - id: bath - unicode: f2cd - created: 4.7 - aliases: - - bathtub - - s15 - categories: - - Web Application Icons - - - name: Podcast - id: podcast - unicode: f2ce - created: 4.7 - categories: - - Web Application Icons - - - - name: Window Maximize - id: window-maximize - unicode: f2d0 - created: 4.7 - categories: - - Web Application Icons - - - name: Window Minimize - id: window-minimize - unicode: f2d1 - created: 4.7 - categories: - - Web Application Icons - - - name: Window Restore - id: window-restore - unicode: f2d2 - created: 4.7 - categories: - - Web Application Icons - - - name: Window Close - id: window-close - unicode: f2d3 - created: 4.7 - aliases: - - times-rectangle - categories: - - Web Application Icons - - - name: Window Close Outline - id: window-close-o - unicode: f2d4 - created: 4.7 - aliases: - - times-rectangle-o - categories: - - Web Application Icons - - - name: Bandcamp - id: bandcamp - unicode: f2d5 - created: 4.7 - categories: - - Brand Icons - - - name: Grav - id: grav - unicode: f2d6 - created: 4.7 - categories: - - Brand Icons - - - name: Etsy - id: etsy - unicode: f2d7 - created: 4.7 - categories: - - Brand Icons - - - name: IMDB - id: imdb - unicode: f2d8 - created: 4.7 - categories: - - Brand Icons - - - name: Ravelry - id: ravelry - unicode: f2d9 - created: 4.7 - categories: - - Brand Icons - - - name: Eercast - id: eercast - unicode: f2da - created: 4.7 - url: eercast.com - categories: - - Brand Icons - - - name: Microchip - id: microchip - unicode: f2db - created: 4.7 - categories: - - Web Application Icons - - - name: Snowflake Outlined - id: snowflake-o - unicode: f2dc - created: 4.7 - categories: - - Web Application Icons - - - name: Superpowers - id: superpowers - unicode: f2dd - created: 4.7 - url: superpowers.io - categories: - - Brand Icons - - - name: WPExplorer - id: wpexplorer - unicode: f2de - created: 4.7 - url: wpexplorer.com - categories: - - Brand Icons - - - - name: Meetup - id: meetup - unicode: f2e0 - created: 4.7 - categories: - - Brand Icons diff --git a/library/font_awesome/src/index.html b/library/font_awesome/src/index.html deleted file mode 100644 index af1f6297d..000000000 --- a/library/font_awesome/src/index.html +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: base -title: Font Awesome, the iconic font and CSS toolkit -navbar_active: home -relative_path: ./ ---- - -{% include jumbotron-carousel.html %} -{% include stripe-social.html %} - -
    - {% capture stripe_ad_content %} -

    - Font Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, - and anything that can be done with the power of CSS. -

    - {% endcapture %} - {% include stripe-ad.html %} - - {% include why.html %} - {% include thanks-to.html %} -
    - -{% include modals/download.html %} diff --git a/library/font_awesome/src/license.html b/library/font_awesome/src/license.html deleted file mode 100644 index 1cceb0493..000000000 --- a/library/font_awesome/src/license.html +++ /dev/null @@ -1,72 +0,0 @@ ---- -layout: base -title: Font Awesome License -navbar_active: license -relative_path: ../ ---- -{% capture jumbotron_h1 %}  License{% endcapture %} -{% capture jumbotron_p %}The full details of how Font Awesome is licensed{% endcapture %} - -{% include jumbotron.html %} -{% include stripe-social.html %} - -
    - {% capture stripe_ad_content %} -

    - Font Awesome is fully open source and is GPL friendly. You can use it for commercial projects, open source - projects, or really just about whatever you want. -

    - {% endcapture %} - {% include stripe-ad.html %} - -
    -
    -
      -
    • - Attribution is no longer required as of Font Awesome 3.0 but is much appreciated: - "Font Awesome by Dave Gandy - http://fontawesome.io". -
    • -
    -
    -
    - -
    - -
      -
    • - Applies to all desktop and webfont files in the following directory: - font-awesome/fonts/. -
    • -
    • License: {{ site.fontawesome.license.font.version }}
    • -
    • URL: {{ site.fontawesome.license.font.url }}
    • -
    -
    - -
    - -
      -
    • - Applies to all CSS and LESS files in the following directories: - font-awesome/css/, - font-awesome/less/, and - font-awesome/scss/. -
    • -
    • License: {{ site.fontawesome.license.code.version }}
    • -
    • URL: {{ site.fontawesome.license.code.url }}
    • -
    -
    - -
    - - -
    - -
    - - {% include brand-license.html %} -
    -
    diff --git a/library/font_awesome/src/store.html b/library/font_awesome/src/store.html deleted file mode 100644 index 325b3c2c8..000000000 --- a/library/font_awesome/src/store.html +++ /dev/null @@ -1,63 +0,0 @@ ---- -layout: base -title: Official Merchandise -navbar_active: store -view_class: v-store -relative_path: ../ ---- -{% capture jumbotron_h1 %}  Awesome Swag{% endcapture %} -{% capture jumbotron_p %}Show your love & support of Font Awesome with official merchandise!{% endcapture %} - -{% include jumbotron.html %} - -
    - -
    -
    -
    - {% include products/fa-ther-tee.html %} -
    -
    - {% include products/space-shuttle-tee.html %} -
    -
    - {% include products/rock-paper-scissors-lizard-spock-tee.html %} -
    -
    - {% include products/white-logo-tee.html %} -
    -
    - {% include products/camera-retro-tee.html %} -
    -
    - {% include products/old-skool-tee.html %} -
    -
    - {% include products/classics-tee.html %} -
    -
    - {% include products/green-logo-tee.html %} -
    -
    - {% include products/cta-suggestions.html %} -
    -
    - -
    - -
    -
    -

    About Font Awesome Products

    -

    - There might be times where you want to insert a bit of Font Awesome in the real world. That's why we're trying out some schwag. We hope you enjoy our icons and their fun spirit out in the wild and appreciate the support you're showing and giving by doing so. You're putting the Awesome in Font Awesome! -

    -
    - -
    -

    Shipping, Tracking, & Refunding Orders

    -

    - All of our products are managed through Amazon. Shipping rates and schedules are managed through their storefront. You'll be able to track your placed orders and contact Amazon's responsive support about refunds, issues, or questions. Ratings and feedback are always welcome either on the product page or directly to us. -

    -
    -
    -
    diff --git a/library/font_awesome/src/survey.html b/library/font_awesome/src/survey.html deleted file mode 100644 index b134b78c3..000000000 --- a/library/font_awesome/src/survey.html +++ /dev/null @@ -1,7 +0,0 @@ ---- -layout: survey -title: Font Awesome + You ---- - - - diff --git a/library/font_awesome/src/test/2.3.2.html b/library/font_awesome/src/test/2.3.2.html deleted file mode 100644 index ea75a5d0b..000000000 --- a/library/font_awesome/src/test/2.3.2.html +++ /dev/null @@ -1,824 +0,0 @@ ---- -title: Font Awesome + Bootstrap 2.3.2 Test Cases -relative_path: ../ ---- - - - - - - - - - - - - {% if page.title %}{{ page.title }}{% endif %} - - - - - - - - - - - - - - - - - - - - -
    - -
    -

    Visual Test Cases

    - -

    Icons Icons should have proper alignment and not be clipped

    -
    -
    -
    - Building -
    -
    -
    -
    - Building Large -
    -
    -
    - Building -
    -
    - Building Large -
    -
    -
    -
    -
    - Building -
    -
    -
    -
    - Building Large -
    -
    -
    - Building Large -
    -
    -
    -
    -
    - Circle -
    -
    -
    -
    - Circle Large -
    -
    -
    - Circle -
    -
    - Circle Large -
    -
    -
    -
    -
    - Circle -
    -
    -
    -
    - Circle Large -
    -
    -
    - Circle Large -
    -
    - - -

    Links with Icons icon should activate link & NOT underline

    - - - - -

    Navbar should stay same height

    - - - -

    Plain buttons next to buttons w/icons should be same height, icons not clipped

    -

    Buttons

    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    - - -

    Anchors

    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    - -

    Button groups should be same height

    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - -

    Buttons with pulled 2x, 3x, 4x should be same height, have correct line height

    - - - -

    Nav pills & nav tabs should be same height and properly vertically aligned

    - - -

    Hide class directly on icons

    -
    -
    -
    - Icon should be hidden -
    -
    -
    - Icon should be hidden -
    -
    - - -

    2x, 3x, 4x icons in text should have margins next to and below text

    -
    -
    -

    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -

    -
    -
    -

    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -

    -
    -
    -
    -
    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -
    -
    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -
    -
    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -
    -
    - - -

    Bullets should wrap appropriately, have proper spacing

    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. - - foo - foo -
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. - - foo - foo -
    • -
    -
    -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. - - foo - foo -
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. - - foo - foo -
    • -
    -
    -
    -
    - - -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    - - -

    Spinning icons icons should be aligned well and on center, buttons should be same height, won't work in ie7

    -
    - Loading... - - - Loading... - - Loading... -
    -
    - Loading... - - - Loading... - -
    -
    - Loading... - - - Loading... - -
    -

    fa-lg

    -
    - Loading... - - - Loading... - -
    -
    - Loading... - - - Loading... - -
    -
    - Loading... - - - Loading... - -
    -

    Bootstrap Prepend and Append

    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -

    Stacked icons

    -
    - {% include tests/stacked.html %} -
    -
    - {% include tests/stacked.html %} -
    -

    Stacked icons inside anchor

    -
    - {% include tests/stacked-inside-anchor.html %} -
    - - -

    Mirrored and rotated icons

    -
    -
    -
    - {% include tests/rotated-flipped.html %} -
    -
    -
    -
    - {% include tests/rotated-flipped.html %} -
    -
    -
    -

    Mirrored and rotated icons inside anchors and buttons

    -
    -
    -
    - {% include tests/rotated-flipped-inside-anchor.html %} -
    -
    -
    -
    - {% include tests/rotated-flipped-inside-btn.html %} -
    -
    -
    - -
    - -
    -
    - - - - - - - - diff --git a/library/font_awesome/src/test/all.html b/library/font_awesome/src/test/all.html deleted file mode 100644 index 076d19698..000000000 --- a/library/font_awesome/src/test/all.html +++ /dev/null @@ -1,55 +0,0 @@ ---- -relative_path: ../../ ---- - - - - - - - - - - -
    -
    -

    All

    -
    - {% for icon in icons %} - {% endfor %} -
    -
    - - -
    -

    All (Unicode)

    - {% for icon in icons %} - &#x{{ icon.unicode }} - {% endfor %} -
    - -
    -

    Non-Brand (Unicode)

    - - {% for icon in icons %} - {% unless icon.categories contains "Brand Icons" %} - &#x{{ icon.unicode }} - {% endunless %} - {% endfor %} -
    - -
    -

    Brand (Unicode)

    - - {% for icon in icons %} - {% if icon.categories contains "Brand Icons" %} - &#x{{ icon.unicode }} - {% endif %} - {% endfor %} -
    - - -
    - - - diff --git a/library/font_awesome/src/test/glyphicons.html b/library/font_awesome/src/test/glyphicons.html deleted file mode 100644 index fefb8ba55..000000000 --- a/library/font_awesome/src/test/glyphicons.html +++ /dev/null @@ -1,795 +0,0 @@ ---- -title: Glyphicons Visual Test Cases -relative_path: ../ ---- - - - - - - - - - - - - {% if page.title %}{{ page.title }}{% endif %} - - - - - - - - - - - - - - - - - - - -
    - -
    -

    Visual Test Cases

    - -

    Icons Icons should have proper alignment and not be clipped

    -
    -
    -
    - Calendar -
    -
    -
    -
    - Calendar Large -
    -
    -
    - Calendar -
    -
    - Calendar Large -
    -
    -
    -
    -
    - Calendar -
    -
    -
    -
    - Calendar Large -
    -
    -
    - Calendar Large -
    -
    -
    -
    -
    - Circle -
    -
    -
    -
    - Circle Large -
    -
    -
    - Circle -
    -
    - Circle Large -
    -
    -
    -
    -
    - Circle -
    -
    -
    -
    - Circle Large -
    -
    -
    - Circle Large -
    -
    - - -

    Links with Icons icon should activate link & underline

    - - - - -

    Navbar should stay same height

    - - - -

    Plain buttons next to buttons w/icons should be same height, icons not clipped

    -

    Buttons

    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    - - -

    Anchors

    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    - -

    Button groups should be same height

    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - -

    Buttons with pulled 2x, 3x, 4x should be same height, have correct line height

    - - - -

    Nav pills & nav tabs should be same height and properly vertically aligned

    - - - - -

    2x, 3x, 4x icons in text should have margins next to and below text

    -
    -
    -

    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -

    -
    -
    -

    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -

    -
    -
    -
    -
    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -
    -
    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -
    -
    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -
    -
    - - -

    Bullets should wrap appropriately, have proper spacing

    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. - - foo - foo -
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. - - foo - foo -
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. - - foo - foo -
    • -
    -
    -
    -
    - - -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    - - -

    Spinning icons icons should be aligned well and on center, buttons should be same height, won't work in ie7

    -
    - Loading... - - - Loading... - - Loading... -
    -
    - Loading... - - - Loading... - -
    -
    - Loading... - - - Loading... - -
    -

    glyphicon-lg

    -
    - Loading... - - - Loading... - -
    -
    - Loading... - - - Loading... - -
    -
    - Loading... - - - Loading... - -
    -

    Bootstrap Prepend and Append

    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - -

    Stacked icons

    -
    - {% include tests/stacked.html %} -
    -
    - {% include tests/stacked.html %} -
    -

    Stacked icons inside anchor

    -
    - {% include tests/stacked-inside-anchor.html %} -
    - - -

    Mirrored and rotated icons

    -
    -
    -
    - {% include tests/rotated-flipped.html %} -
    -
    -
    -
    - {% include tests/rotated-flipped.html %} -
    -
    -
    -

    Mirrored and rotated icons inside anchors and buttons

    -
    -
    -
    - {% include tests/rotated-flipped-inside-anchor.html %} -
    -
    -
    -
    - {% include tests/rotated-flipped-inside-btn.html %} -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - diff --git a/library/font_awesome/src/test/height/4.4.0.html b/library/font_awesome/src/test/height/4.4.0.html deleted file mode 100644 index 59636950d..000000000 --- a/library/font_awesome/src/test/height/4.4.0.html +++ /dev/null @@ -1,62 +0,0 @@ ---- -relative_path: ../../../ ---- - - - - - - - - -

    4.4.0

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - diff --git a/library/font_awesome/src/test/height/4.5.0.html b/library/font_awesome/src/test/height/4.5.0.html deleted file mode 100644 index ed7e18add..000000000 --- a/library/font_awesome/src/test/height/4.5.0.html +++ /dev/null @@ -1,62 +0,0 @@ ---- -relative_path: ../../../ ---- - - - - - - - - -

    4.5.0

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - diff --git a/library/font_awesome/src/test/height/current.html b/library/font_awesome/src/test/height/current.html deleted file mode 100644 index 02b05e078..000000000 --- a/library/font_awesome/src/test/height/current.html +++ /dev/null @@ -1,62 +0,0 @@ ---- -relative_path: ../../../ ---- - - - - - - - - -

    Current

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - diff --git a/library/font_awesome/src/test/index.html b/library/font_awesome/src/test/index.html deleted file mode 100644 index 09a9536e7..000000000 --- a/library/font_awesome/src/test/index.html +++ /dev/null @@ -1,800 +0,0 @@ ---- -layout: base -title: Font Awesome Visual Test Cases -relative_path: ../ ---- - -
    -

    Visual Test Cases

    - -

    Icons Icons should have proper alignment and not be clipped

    -
    -
    -
    - Building -
    -
    -
    -
    - Building Large -
    -
    -
    - Building -
    -
    - Building Large -
    -
    -
    -
    -
    - Building -
    -
    -
    -
    - Building Large -
    -
    -
    - Building Large -
    -
    -
    -
    -
    - Circle -
    -
    -
    -
    - Circle Large -
    -
    -
    - Circle -
    -
    - Circle Large -
    -
    -
    -
    -
    - Circle -
    -
    -
    -
    - Circle Large -
    -
    -
    - Circle Large -
    -
    - - -

    Links with Icons icon should activate link & NOT underline

    -
    -
    - Link Here -
    -
    - Link Here -
    -
    - Link Here -
    -
    - Link Here -
    -
    - Link Here -
    -
    - Link Here -
    -
    -
    -
    - Link Here -
    -
    - Link Here -
    -
    - Link Here -
    -
    - Link Here -
    -
    - Link Here -
    -
    - Link Here -
    -
    - - -

    Navbar should stay same height

    - - - -

    Plain buttons next to buttons w/icons should be same height, icons not clipped

    -

    Buttons

    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    - - - -
    -
    -
    -
    - - -

    Anchors

    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    - Button - Button - -
    -
    -
    -
    - -

    Button groups should be same height

    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    -
    -
    - - -
    -
    -
    -
    - -

    Buttons with pulled 2x, 3x, 4x should be same height, have correct line height

    - - - -

    Nav pills & nav tabs should be same height and properly vertically aligned

    - - -

    Hide class directly on icons

    -
    -
    -
    - Icon should be hidden -
    -
    -
    - Icon should be hidden -
    -
    - - -

    2x, 3x, 4x icons in text should have margins next to and below text

    -
    -
    -

    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -

    -
    -
    -

    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -

    -
    -
    -
    -
    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -
    -
    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -
    -
    - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus. -
    -
    - - -

    Bullets should wrap appropriately, have proper spacing

    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. - - foo - foo -
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. - - foo - foo -
    • -
    -
    -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. - - foo - foo -
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. - - foo - foo -
    • -
    -
    -
    -
    - - -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    -
    -
      -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et lectus id nisl hendrerit varius. Aliquam erat volutpat. Suspendisse potenti. Aliquam erat volutpat. Aliquam ut dolor lectus.
    • -
    • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    • -
    -
    -
    -
    - - -

    Spinning icons icons should be aligned well and on center, buttons should be same height, won't work in ie7

    -
    - Loading... - - - Loading... - - Loading... -
    -
    - Loading... - - - Loading... - -
    -
    - Loading... - - - Loading... - -
    -

    fa-lg

    -
    - Loading... - - - Loading... - -
    -
    - Loading... - - - Loading... - -
    -
    - Loading... - - - Loading... - -
    -

    Bootstrap Prepend and Append

    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    - -

    Stacked icons

    -
    - {% include tests/stacked.html %} -
    -
    - {% include tests/stacked.html %} -
    -

    Stacked icons inside anchor

    -
    - {% include tests/stacked-inside-anchor.html %} -
    -

    Stacked icon background with text foreground

    -
    - {% include tests/stacked-with-text.html %} -
    - - -

    Mirrored and rotated icons

    -
    -
    -
    - {% include tests/rotated-flipped.html %} -
    -
    -
    -
    - {% include tests/rotated-flipped.html %} -
    -
    -
    -

    Mirrored and rotated icons inside anchors and buttons

    -
    -
    -
    - {% include tests/rotated-flipped-inside-anchor.html %} -
    -
    -
    -
    - {% include tests/rotated-flipped-inside-btn.html %} -
    -
    -
    - -

    Animation Wobble #671

    -
    - - - - - - -
    -
    - - - - - - -
    -
    - - - - - - -
    -
    - - - - - - -
    - - -
    diff --git a/library/font_awesome/src/thanks.html b/library/font_awesome/src/thanks.html deleted file mode 100644 index b22a4eec5..000000000 --- a/library/font_awesome/src/thanks.html +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: base -title: Thanks for subscribing! -relative_path: ../ ---- - -
    -
    -
    -
    -

    You're all set!

    -

    - Thanks for signing up! - We'll send you email updates on new Font Awesome releases, icons, and other stuff that we're working on. - We won't spam you. Scout's honor! -

    - -

    What's next?

    -

    - Want to see what we're working on next? Check out Fort Awesome! We're making it easy to put the perfect icons - on your website. Pick from gorgeous, comprehensive icon sets or copy and paste your own vector icons. -

    - - Check out Fort Awesome! - -
    -
    -
    -
    diff --git a/library/font_awesome/src/whats-new.html b/library/font_awesome/src/whats-new.html deleted file mode 100644 index fd3a3cf63..000000000 --- a/library/font_awesome/src/whats-new.html +++ /dev/null @@ -1,43 +0,0 @@ ---- -layout: base -title: What's New -navbar_active: whats-new -relative_path: ../ ---- -{% capture jumbotron_h1 %}  What's New{% endcapture %} -{% capture jumbotron_p %}What's New in the latest version — Font Awesome {{ site.fontawesome.minor_version }}{% endcapture %} - -{% include jumbotron.html %} -{% include stripe-social.html %} - -
    - {% capture stripe_ad_content %} -

    - Font Awesome is always getting a little awesome-er. So here's what's new in the latest version, Font Awesome - {{ site.fontawesome.minor_version }}. Have some ideas for new features? - Help contribute. -

    - {% endcapture %} - {% include stripe-ad.html %} - -
    -
    -

    Accessibility Docs

    - Details on how to mark up your icons depending on how you're using them. - Make your site icons usable by the most people, and start here. -
    -
    -

    Better Examples

    - Every FA icon example page now has a better, more accessibility-minded - default block of code that users can copy and paste. -
    -
    -

    Accessibility Category

    - We've added a new icon category specifically for accessibility and seeded - it with 15 icons to start. Make sure to request more if you need them! -
    -
    - - {% include icons/new.html %} - {% include new-upgrading.html %} -
    diff --git a/library/font_awesome/css/font-awesome.css b/library/fork-awesome/css/fork-awesome.css similarity index 94% rename from library/font_awesome/css/font-awesome.css rename to library/fork-awesome/css/fork-awesome.css index ee906a819..5670fbe13 100644 --- a/library/font_awesome/css/font-awesome.css +++ b/library/fork-awesome/css/fork-awesome.css @@ -1,19 +1,19 @@ /*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + * Fork Awesome 1.0.9, originaly by Dave Gandy - http://forkawesome.github.com/Fork-Awesome/ + * License - http://forkawesome.github.com/Fork-Awesome//license (Font: SIL OFL 1.1, CSS: MIT License) */ /* FONT PATH * -------------------------- */ @font-face { - font-family: 'FontAwesome'; - src: url('../fonts/fontawesome-webfont.eot?v=4.7.0'); - src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg'); + font-family: 'ForkAwesome'; + src: url('../fonts/forkawesome-webfont.eot?v=1.0.9'); + src: url('../fonts/forkawesome-webfont.eot?#iefix&v=1.0.9') format('embedded-opentype'), url('../fonts/forkawesome-webfont.woff2?v=1.0.9') format('woff2'), url('../fonts/forkawesome-webfont.woff?v=1.0.9') format('woff'), url('../fonts/forkawesome-webfont.ttf?v=1.0.9') format('truetype'), url('../fonts/forkawesome-webfont.svg?v=1.0.9#forkawesomeregular') format('svg'); font-weight: normal; font-style: normal; } .fa { display: inline-block; - font: normal normal normal 14px/1 FontAwesome; + font: normal normal normal 14px/1 ForkAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; @@ -61,7 +61,7 @@ } .fa-border { padding: .2em .25em .15em; - border: solid 0.08em #eeeeee; + border: solid 0.08em #eee; border-radius: .1em; } .fa-pull-left { @@ -176,9 +176,9 @@ font-size: 2em; } .fa-inverse { - color: #ffffff; + color: #fff; } -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +/* Fork Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ .fa-glass:before { content: "\f000"; @@ -698,6 +698,7 @@ .fa-arrows-alt:before { content: "\f0b2"; } +.fa-community:before, .fa-group:before, .fa-users:before { content: "\f0c0"; @@ -1383,12 +1384,6 @@ .fa-digg:before { content: "\f1a6"; } -.fa-pied-piper-pp:before { - content: "\f1a7"; -} -.fa-pied-piper-alt:before { - content: "\f1a8"; -} .fa-drupal:before { content: "\f1a9"; } @@ -1818,6 +1813,9 @@ .fa-medium:before { content: "\f23a"; } +.fa-medium-square:before { + content: "\f2f8"; +} .fa-yc:before, .fa-y-combinator:before { content: "\f23b"; @@ -2159,9 +2157,6 @@ .fa-snapchat-square:before { content: "\f2ad"; } -.fa-pied-piper:before { - content: "\f2ae"; -} .fa-first-order:before { content: "\f2b0"; } @@ -2316,6 +2311,84 @@ .fa-meetup:before { content: "\f2e0"; } +.fa-mastodon:before { + content: "\f2e1"; +} +.fa-mastodon-alt:before { + content: "\f2e2"; +} +.fa-fork-circle:before, +.fa-fork-awesome:before { + content: "\f2e3"; +} +.fa-peertube:before { + content: "\f2e4"; +} +.fa-diaspora:before { + content: "\f2e5"; +} +.fa-friendica:before { + content: "\f2e6"; +} +.fa-gnu-social:before { + content: "\f2e7"; +} +.fa-liberapay-square:before { + content: "\f2e8"; +} +.fa-liberapay:before { + content: "\f2e9"; +} +.fa-ssb:before, +.fa-scuttlebutt:before { + content: "\f2ea"; +} +.fa-hubzilla:before { + content: "\f2eb"; +} +.fa-social-home:before { + content: "\f2ec"; +} +.fa-artstation:before { + content: "\f2ed"; +} +.fa-discord:before { + content: "\f2ee"; +} +.fa-discord-alt:before { + content: "\f2ef"; +} +.fa-patreon:before { + content: "\f2f0"; +} +.fa-snowdrift:before { + content: "\f2f1"; +} +.fa-activitypub:before { + content: "\f2f2"; +} +.fa-ethereum:before { + content: "\f2f3"; +} +.fa-keybase:before { + content: "\f2f4"; +} +.fa-shaarli:before { + content: "\f2f5"; +} +.fa-shaarli-o:before { + content: "\f2f6"; +} +.fa-cut-key:before, +.fa-key-modern:before { + content: "\f2f7"; +} +.fa-xmpp:before { + content: "\f2f9"; +} +.fa-archive-org:before { + content: "\f2fc"; +} .sr-only { position: absolute; width: 1px; diff --git a/library/fork-awesome/css/fork-awesome.min.css b/library/fork-awesome/css/fork-awesome.min.css new file mode 100644 index 000000000..f01cbc7d8 --- /dev/null +++ b/library/fork-awesome/css/fork-awesome.min.css @@ -0,0 +1,4 @@ +/*! + * Fork Awesome 1.0.9, originaly by Dave Gandy - http://forkawesome.github.com/Fork-Awesome/ + * License - http://forkawesome.github.com/Fork-Awesome//license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:ForkAwesome;src:url(../fonts/forkawesome-webfont.eot?v=1.0.9);src:url(../fonts/forkawesome-webfont.eot?#iefix&v=1.0.9) format('embedded-opentype'),url(../fonts/forkawesome-webfont.woff2?v=1.0.9) format('woff2'),url(../fonts/forkawesome-webfont.woff?v=1.0.9) format('woff'),url(../fonts/forkawesome-webfont.ttf?v=1.0.9) format('truetype'),url(../fonts/forkawesome-webfont.svg?v=1.0.9#forkawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 ForkAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-community:before,.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-medium-square:before{content:"\f2f8"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.fa-mastodon:before{content:"\f2e1"}.fa-mastodon-alt:before{content:"\f2e2"}.fa-fork-awesome:before,.fa-fork-circle:before{content:"\f2e3"}.fa-peertube:before{content:"\f2e4"}.fa-diaspora:before{content:"\f2e5"}.fa-friendica:before{content:"\f2e6"}.fa-gnu-social:before{content:"\f2e7"}.fa-liberapay-square:before{content:"\f2e8"}.fa-liberapay:before{content:"\f2e9"}.fa-scuttlebutt:before,.fa-ssb:before{content:"\f2ea"}.fa-hubzilla:before{content:"\f2eb"}.fa-social-home:before{content:"\f2ec"}.fa-artstation:before{content:"\f2ed"}.fa-discord:before{content:"\f2ee"}.fa-discord-alt:before{content:"\f2ef"}.fa-patreon:before{content:"\f2f0"}.fa-snowdrift:before{content:"\f2f1"}.fa-activitypub:before{content:"\f2f2"}.fa-ethereum:before{content:"\f2f3"}.fa-keybase:before{content:"\f2f4"}.fa-shaarli:before{content:"\f2f5"}.fa-shaarli-o:before{content:"\f2f6"}.fa-cut-key:before,.fa-key-modern:before{content:"\f2f7"}.fa-xmpp:before{content:"\f2f9"}.fa-archive-org:before{content:"\f2fc"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}/*# sourceMappingURL=fork-awesome.min.css.map */ \ No newline at end of file diff --git a/library/fork-awesome/css/fork-awesome.min.css.map b/library/fork-awesome/css/fork-awesome.min.css.map new file mode 100644 index 000000000..e3e919849 --- /dev/null +++ b/library/fork-awesome/css/fork-awesome.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["fork-awesome.css"],"names":[],"mappings":";;;AAMA,WACE,YAAA,YACA,IAAS,8CACT,IAAS,qDAAoF,4BAAA,gDAAmE,gBAAA,+CAAiE,eAAA,8CAAoE,mBAAA,iEAArS,cACA,YAAA,IACA,WAAA,OAEF,IACE,QAAA,aACA,KAAA,OAAA,OAAA,OAAA,KAAA,EAAA,YACA,UAAA,QACA,eAAA,KACA,uBAAA,YACA,wBAAA,UAGF,OACE,UAAA,aACA,YAAA,MACA,eAAA,KAEF,OACE,UAAA,IAEF,OACE,UAAA,IAEF,OACE,UAAA,IAEF,OACE,UAAA,IAEF,OACE,MAAA,aACA,WAAA,OAEF,OACE,aAAA,EACA,YAAA,aACA,gBAAA,KAEK,UACL,SAAA,SAEF,OACE,SAAA,SACA,KAAA,cACA,MAAA,aACA,IAAA,YACA,WAAA,OAEI,aACJ,KAAA,cAEF,WACE,QAAA,KAAA,MAAA,MACA,OAAA,MAAA,MAAA,KACA,cAAA,KAEF,cACE,MAAA,KAEF,eACE,MAAA,MAEC,iBACD,aAAA,KAEC,kBACD,YAAA,KAGF,YACE,MAAA,MAEF,WACE,MAAA,KAEC,cACD,aAAA,KAEC,eACD,YAAA,KAEF,SACE,kBAAA,QAAA,GAAA,SAAA,OACA,UAAA,QAAA,GAAA,SAAA,OAEF,UACE,kBAAA,QAAA,GAAA,SAAuC,SACvC,UAAA,QAAA,GAAA,SAA+B,SAEjC,2BACE,GACE,kBAAmB,UACnB,UAAW,UAEb,KACE,kBAAmB,eACnB,UAAW,gBAGf,mBACE,GACE,kBAAmB,UACnB,UAAW,UAEb,KACE,kBAAmB,eACnB,UAAW,gBAGf,cACE,WAAY,2DACZ,kBAAmB,cACnB,cAAe,cACf,UAAW,cAEb,eACE,WAAY,2DACZ,kBAAmB,eACnB,cAAe,eACf,UAAW,eAEb,eACE,WAAY,2DACZ,kBAAmB,eACnB,cAAe,eACf,UAAW,eAEb,oBACE,WAAY,qEACZ,kBAAmB,YACnB,cAAe,YACf,UAAW,YAEb,kBACE,WAAY,qEACZ,kBAAmB,YACnB,cAAe,YACf,UAAW,YAKP,0BACA,wBAHA,qBACA,qBAFA,oBAKJ,OAAA,KAEF,UACE,SAAA,SACA,QAAA,aACA,MAAA,IACA,OAAA,IACA,YAAA,IACA,eAAA,OAEF,aACA,aACE,SAAA,SACA,KAAA,EACA,MAAA,KACA,WAAA,OAEF,aACE,YAAA,QAEF,aACE,UAAA,IAEF,YACE,MAAA,KAIO,iBACP,QAAA,QAEO,iBACP,QAAA,QAEQ,kBACR,QAAA,QAEY,sBACZ,QAAA,QAEO,iBACP,QAAA,QAEM,gBACN,QAAA,QAEQ,kBACR,QAAA,QAEM,gBACN,QAAA,QAEM,gBACN,QAAA,QAEU,oBACV,QAAA,QAEI,cACJ,QAAA,QAES,mBACT,QAAA,QAEO,iBACP,QAAA,QAGO,iBADC,kBAED,iBACP,QAAA,QAEa,uBACb,QAAA,QAEc,wBACd,QAAA,QAEW,qBACX,QAAA,QAEQ,kBACR,QAAA,QAGK,eADC,gBAEN,QAAA,QAES,mBACT,QAAA,QAEM,gBACN,QAAA,QAEQ,kBACR,QAAA,QAES,mBACT,QAAA,QAEM,gBACN,QAAA,QAEU,oBACV,QAAA,QAEqB,+BACrB,QAAA,QAEmB,6BACnB,QAAA,QAEO,iBACP,QAAA,QAEe,yBACf,QAAA,QAGQ,kBADM,wBAEd,QAAA,QAES,mBACT,QAAA,QAEU,oBACV,QAAA,QAEM,gBACN,QAAA,QAEM,gBACN,QAAA,QAEY,sBACZ,QAAA,QAEY,sBACZ,QAAA,QAEa,uBACb,QAAA,QAEW,qBACX,QAAA,QAEQ,kBACR,QAAA,QAES,mBACT,QAAA,QAEK,eACL,QAAA,QAEM,gBACN,QAAA,QAEM,gBACN,QAAA,QAEU,oBACV,QAAA,QAEO,iBACP,QAAA,QAEQ,kBACR,QAAA,QAEM,gBACN,QAAA,QAEM,gBACN,QAAA,QAEQ,kBACR,QAAA,QAEa,uBACb,QAAA,QAEY,sBACZ,QAAA,QAEY,sBACZ,QAAA,QAEc,wBACd,QAAA,QAEa,uBACb,QAAA,QAEe,yBACf,QAAA,QAEM,gBACN,QAAA,QAEQ,kBACC,mBACT,QAAA,QAEQ,kBACR,QAAA,QAEc,wBACd,QAAA,QAGO,iBADA,iBAEI,qBACX,QAAA,QAEQ,kBACR,QAAA,QAEY,sBACZ,QAAA,QAEQ,kBACR,QAAA,QAEM,gBACN,QAAA,QAEM,gBACW,2BACjB,QAAA,QAEgB,0BAChB,QAAA,QAEgB,0BAChB,QAAA,QAEQ,kBACR,QAAA,QAEe,yBACf,QAAA,QAEe,yBACf,QAAA,QAEU,oBACV,QAAA,QAEM,gBACN,QAAA,QAEO,iBACP,QAAA,QAEM,gBACN,QAAA,QAES,mBACT,QAAA,QAEc,wBACd,QAAA,QAEc,wBACd,QAAA,QAEO,iBACP,QAAA,QAEc,wBACd,QAAA,QAEe,yBACf,QAAA,QAEa,uBACb,QAAA,QAEc,wBACd,QAAA,QAEc,wBACd,QAAA,QAEc,wBACd,QAAA,QAEiB,2BACjB,QAAA,QAEa,uBACb,QAAA,QAEY,sBACZ,QAAA,QAEgB,0BAChB,QAAA,QAEgB,0BAChB,QAAA,QAEK,eACL,QAAA,QAEY,sBACZ,QAAA,QAEa,uBACb,QAAA,QAEU,oBACV,QAAA,QAEY,sBACZ,QAAA,QAEc,wBACP,iBACP,QAAA,QAEQ,kBACR,QAAA,QAEU,oBACV,QAAA,QAEM,gBACN,QAAA,QAEO,iBACP,QAAA,QAEU,oBACV,QAAA,QAEoB,8BACpB,QAAA,QAEM,gBACN,QAAA,QAEM,gBACN,QAAA,QAEM,gBACN,QAAA,QAEK,eACL,QAAA,QAEW,qBACX,QAAA,QAGsB,gCADb,mBAET,QAAA,QAEO,iBACP,QAAA,QAEU,oBACV,QAAA,QAEQ,kBACR,QAAA,QAES,mBACT,QAAA,QAEQ,kBACR,QAAA,QAEY,sBACZ,QAAA,QAEc,wBACd,QAAA,QAES,mBACT,QAAA,QAEe,yBACf,QAAA,QAEQ,kBACR,QAAA,QAEa,uBACb,QAAA,QAEU,oBACV,QAAA,QAEU,oBACV,QAAA,QAEa,uBACF,qBACX,QAAA,QAEgB,0BAChB,QAAA,QAEiB,2BACjB,QAAA,QAEc,wBACd,QAAA,QAEK,eACL,QAAA,QAGM,gBADC,iBAEP,QAAA,QAEU,oBACV,QAAA,QAEa,uBACb,QAAA,QAEe,yBACf,QAAA,QAEW,qBACX,QAAA,QAES,mBACT,QAAA,QAEU,oBACV,QAAA,QAEiB,2BACjB,QAAA,QAEY,sBACZ,QAAA,QAEe,yBACf,QAAA,QAES,mBACT,QAAA,QAEQ,kBACR,QAAA,QAEe,yBACf,QAAA,QAEQ,kBACR,QAAA,QAES,mBACT,QAAA,QAEO,iBACP,QAAA,QAEU,oBACV,QAAA,QAEY,sBACZ,QAAA,QAEc,wBACd,QAAA,QAES,mBACT,QAAA,QAEY,sBACF,oBACV,QAAA,QAEQ,kBACR,QAAA,QAEQ,kBACR,QAAA,QAEa,uBACb,QAAA,QAEM,gBACD,eACL,QAAA,QAEO,iBACP,QAAA,QAEU,oBACV,QAAA,QAEM,gBACN,QAAA,QAEa,uBACb,QAAA,QAEc,wBACd,QAAA,QAEa,uBACb,QAAA,QAEW,qBACX,QAAA,QAEa,uBACb,QAAA,QAEmB,6BACnB,QAAA,QAEoB,8BACpB,QAAA,QAEiB,2BACjB,QAAA,QAEmB,6BACnB,QAAA,QAEO,iBACP,QAAA,QAEQ,kBACR,QAAA,QAEO,iBACP,QAAA,QAEQ,kBACR,QAAA,QAEW,qBACX,QAAA,QAEY,sBACZ,QAAA,QAEW,qBACJ,iBACA,iBACP,QAAA,QAEO,iBACD,gBACN,QAAA,QAEO,iBACP,QAAA,QAEO,iBACP,QAAA,QAEK,eACK,oBACV,QAAA,QAEM,gBACG,mBACT,QAAA,QAEW,qBACX,QAAA,QAGU,oBADJ,gBAEN,QAAA,QAEQ,kBACR,QAAA,QAIM,gBAFG,mBACA,mBAET,QAAA,QAES,mBACT,QAAA,QAES,mBACT,QAAA,QAEe,yBACf,QAAA,QAEW,qBACX,QAAA,QAEO,iBACP,QAAA,QAEO,iBACP,QAAA,QAEO,iBACP,QAAA,QAEW,qBACX,QAAA,QAEkB,4BAClB,QAAA,QAEoB,8BACpB,QAAA,QAEa,uBACb,QAAA,QAEO,iBACP,QAAA,QAEY,sBACZ,QAAA,QAEU,oBACV,QAAA,QAEY,sBACZ,QAAA,QAEa,uBACb,QAAA,QAES,mBACT,QAAA,QAGM,gBADI,oBAEV,QAAA,QAGW,qBADA,qBAEX,QAAA,QAGU,oBADD,mBAET,QAAA,QAEU,oBACV,QAAA,QAEU,oBACV,QAAA,QAEa,uBACP,gBACN,QAAA,QAGO,iBADA,iBAEP,QAAA,QAEW,qBACC,sBACZ,QAAA,QAEW,qBACX,QAAA,QAEY,sBACZ,QAAA,QAGM,gBADC,iBAEP,QAAA,QAES,mBACT,QAAA,QAEU,oBACV,QAAA,QAGW,qBADJ,iBAEP,QAAA,QAEa,uBACb,QAAA,QAEU,oBACV,QAAA,QAEgB,0BAChB,QAAA,QAEc,wBACd,QAAA,QAES,mBACT,QAAA,QAEa,uBACb,QAAA,QAEU,oBACV,QAAA,QAEQ,kBACR,QAAA,QAEQ,kBACR,QAAA,QAES,mBACT,QAAA,QAEa,uBACb,QAAA,QAEY,sBACZ,QAAA,QAEY,sBACZ,QAAA,QAEW,qBACX,QAAA,QAEQ,kBACR,QAAA,QAEa,uBACb,QAAA,QAEM,gBACN,QAAA,QAEU,oBACV,QAAA,QAEa,uBACb,QAAA,QAEmB,6BACnB,QAAA,QAEoB,8BACpB,QAAA,QAEiB,2BACjB,QAAA,QAEmB,6BACnB,QAAA,QAEY,sBACZ,QAAA,QAEa,uBACb,QAAA,QAEU,oBACV,QAAA,QAEY,sBACZ,QAAA,QAES,mBACT,QAAA,QAEQ,kBACR,QAAA,QAEQ,kBACR,QAAA,QAEc,wBACN,kBACR,QAAA,QAEU,oBACV,QAAA,QAEY,sBACZ,QAAA,QAEa,uBACb,QAAA,QAES,mBACT,QAAA,QAEQ,kBACR,QAAA,QAEY,sBACL,iBACP,QAAA,QAEY,sBACZ,QAAA,QAEU,oBACV,QAAA,QAEe,yBACf,QAAA,QAES,mBACT,QAAA,QAES,mBACT,QAAA,QAEO,iBACP,QAAA,QAES,mBACT,QAAA,QAEY,sBACZ,QAAA,QAEQ,kBACR,QAAA,QAEgB,0BAChB,QAAA,QAEU,oBACV,QAAA,QAEM,gBACN,QAAA,QAEgB,0BACL,qBACX,QAAA,QAEiB,2BACD,0BACH,uBACb,QAAA,QAEgB,0BAChB,QAAA,QAEM,gBACN,QAAA,QAEW,qBACX,QAAA,QAGc,wBADN,kBAER,QAAA,QAEU,oBACV,QAAA,QAEM,gBACN,QAAA,QAEa,uBACb,QAAA,QAEa,uBACb,QAAA,QAEW,qBACX,QAAA,QAEQ,kBACR,QAAA,QAEc,wBACd,QAAA,QAEY,sBACZ,QAAA,QAEkB,4BAClB,QAAA,QAEQ,kBACR,QAAA,QAEY,sBACZ,QAAA,QAEmB,6BACnB,QAAA,QAEQ,kBACR,QAAA,QAEQ,kBACR,QAAA,QAEqB,+BACrB,QAAA,QAEsB,gCACtB,QAAA,QAEmB,6BACnB,QAAA,QAEqB,+BACrB,QAAA,QAEO,iBACP,QAAA,QAEM,gBACN,QAAA,QAEQ,kBACR,QAAA,QAEY,sBACZ,QAAA,QAEU,oBACV,QAAA,QAEY,sBACZ,QAAA,QAEY,sBACZ,QAAA,QAEY,sBACZ,QAAA,QAEa,uBACb,QAAA,QAEQ,kBACR,QAAA,QAEc,wBACd,QAAA,QAEgB,0BAChB,QAAA,QAEU,oBACV,QAAA,QAEY,sBACZ,QAAA,QAEc,wBACd,QAAA,QAEe,yBACf,QAAA,QAEsB,gCACtB,QAAA,QAEc,wBACd,QAAA,QAES,mBACT,QAAA,QAGqB,+BADR,uBAEb,QAAA,QAGmB,6BADR,qBAEX,QAAA,QAGsB,gCADR,wBAEd,QAAA,QAGK,eADC,gBAEN,QAAA,QAEK,eACL,QAAA,QAEQ,kBACH,eACL,QAAA,QAGK,eADE,iBAEP,QAAA,QAEK,eAGA,eAFA,eACA,eAEL,QAAA,QAGQ,kBACH,eAFE,iBAGP,QAAA,QAGK,eADA,eAEL,QAAA,QAES,mBACJ,eACL,QAAA,QAEM,gBACN,QAAA,QAEW,qBACX,QAAA,QAEgB,0BAChB,QAAA,QAEiB,2BACjB,QAAA,QAEiB,2BACjB,QAAA,QAEkB,4BAClB,QAAA,QAEkB,4BAClB,QAAA,QAEmB,6BACnB,QAAA,QAEW,qBACX,QAAA,QAEa,uBACb,QAAA,QAEgB,0BAChB,QAAA,QAES,mBACT,QAAA,QAEM,gBACN,QAAA,QAEa,uBACb,QAAA,QAEc,wBACd,QAAA,QAES,mBACT,QAAA,QAEgB,0BAChB,QAAA,QAEW,qBACX,QAAA,QAEQ,kBACR,QAAA,QAEK,eACL,QAAA,QAEW,qBACX,QAAA,QAEkB,4BAClB,QAAA,QAEQ,kBACR,QAAA,QAEe,yBACf,QAAA,QAEiB,2BACjB,QAAA,QAEe,yBACf,QAAA,QAEiB,2BACjB,QAAA,QAEkB,4BAClB,QAAA,QAEO,iBACP,QAAA,QAES,mBACT,QAAA,QAES,mBACT,QAAA,QAEO,iBACP,QAAA,QAEU,oBACV,QAAA,QAEO,iBACP,QAAA,QAEY,sBACZ,QAAA,QAEQ,kBACR,QAAA,QAEQ,kBACR,QAAA,QAEM,gBACN,QAAA,QAEQ,kBACE,oBACV,QAAA,QAEO,iBACP,QAAA,QAEQ,kBACR,QAAA,QAES,mBACT,QAAA,QAEK,eACL,QAAA,QAEI,cACJ,QAAA,QAEO,iBACP,QAAA,QAEQ,kBACR,QAAA,QAEW,qBACX,QAAA,QAEgB,0BAChB,QAAA,QAEsB,gCACtB,QAAA,QAEqB,+BACrB,QAAA,QAGqB,+BADR,uBAEb,QAAA,QAEc,wBACd,QAAA,QAEY,sBACZ,QAAA,QAEc,wBACd,QAAA,QAGK,eADS,wBAEd,QAAA,QAEe,yBACf,QAAA,QAEe,yBACf,QAAA,QAEO,iBACP,QAAA,QAEiB,2BACjB,QAAA,QAEW,qBACX,QAAA,QAEQ,kBACR,QAAA,QAGM,gBADO,uBAED,sBACZ,QAAA,QAGgB,0BADF,wBAEd,QAAA,QAEO,iBACP,QAAA,QAEQ,kBACR,QAAA,QAEQ,kBACR,QAAA,QAEe,yBACf,QAAA,QAEoB,8BACpB,QAAA,QAEa,uBACb,QAAA,QAEW,qBACX,QAAA,QAEM,gBACN,QAAA,QAEQ,kBACR,QAAA,QAEQ,kBACR,QAAA,QAEU,oBACV,QAAA,QAEK,eACL,QAAA,QAEU,oBACV,QAAA,QAEO,iBACP,QAAA,QAEK,eACL,QAAA,QAEO,iBACP,QAAA,QAEM,gBACN,QAAA,QAEO,iBACP,QAAA,QAES,mBACT,QAAA,QAEgB,0BAChB,QAAA,QAEO,iBACP,QAAA,QAEc,wBACd,QAAA,QAES,mBACT,QAAA,QAEY,sBACP,eACL,QAAA,QAEK,eACC,gBACN,QAAA,QAEM,gBACN,QAAA,QAES,mBACT,QAAA,QAEY,sBACZ,QAAA,QAEY,sBACZ,QAAA,QAEU,oBACV,QAAA,QAEY,sBACZ,QAAA,QAEa,uBACb,QAAA,QAEc,wBACd,QAAA,QAEmB,6BACnB,QAAA,QAIc,wBAFA,wBACE,0BAEhB,QAAA,QAGgB,0BADJ,sBAEZ,QAAA,QAGc,wBADA,wBAEd,QAAA,QAEc,wBACA,wBACd,QAAA,QAEa,uBACb,QAAA,QAEM,gBACN,QAAA,QAES,mBACT,QAAA,QAEU,oBACV,QAAA,QAEW,qBACA,qBAGA,qBAFC,sBACH,mBAET,QAAA,QAEgB,0BAChB,QAAA,QAEI,cAEG,iBADK,sBAEZ,QAAA,QAGQ,kBADJ,cAEJ,QAAA,QAEY,sBACZ,QAAA,QAEK,eACL,QAAA,QAIa,uBAFQ,+BACV,qBAEX,QAAA,QAEe,yBACf,QAAA,QAEI,cACJ,QAAA,QAEQ,kBACA,kBACR,QAAA,QAGa,uBADP,gBAEN,QAAA,QAGe,yBADP,kBAER,QAAA,QAES,mBACT,QAAA,QAEa,uBACb,QAAA,QAEQ,kBACR,QAAA,QAEW,qBACX,QAAA,QAES,mBACT,QAAA,QAEW,qBACX,QAAA,QAEkB,4BAClB,QAAA,QAEM,gBACN,QAAA,QAGU,oBADK,yBAEf,QAAA,QAEK,eACL,QAAA,QAEY,sBACZ,QAAA,QAEM,gBACN,QAAA,QAEY,sBACZ,QAAA,QAEQ,kBACR,QAAA,QAEM,gBACN,QAAA,QAEa,uBACb,QAAA,QAEM,gBACN,QAAA,QAEY,sBACZ,QAAA,QAEQ,kBACR,QAAA,QAEe,yBACf,QAAA,QAES,mBACT,QAAA,QAEe,yBACf,QAAA,QAEa,uBACb,QAAA,QAES,mBACT,QAAA,QAEW,qBACX,QAAA,QAEW,qBACX,QAAA,QAEY,sBACZ,QAAA,QAEc,wBACd,QAAA,QAEO,iBACP,QAAA,QAEW,qBACX,QAAA,QAEI,cACJ,QAAA,QAEY,sBACZ,QAAA,QAEa,uBACb,QAAA,QAEe,yBACf,QAAA,QAEY,sBACZ,QAAA,QAEW,qBACX,QAAA,QAEY,sBACZ,QAAA,QAEQ,kBACR,QAAA,QAEe,yBACf,QAAA,QAEY,sBACZ,QAAA,QAEW,qBACX,QAAA,QAES,mBACT,QAAA,QAEK,eACL,QAAA,QAES,mBACT,QAAA,QAEW,qBACX,QAAA,QAEI,cACJ,QAAA,QAIK,eAFG,kBACA,kBAER,QAAA,QAEU,oBACV,QAAA,QAEY,sBACZ,QAAA,QAEgB,0BAChB,QAAA,QAEU,oBACV,QAAA,QAEU,oBACV,QAAA,QAES,mBACT,QAAA,QAEQ,kBACR,QAAA,QAEc,wBACd,QAAA,QAEa,uBACb,QAAA,QAEU,oBACV,QAAA,QAEW,qBACX,QAAA,QAEiB,2BACjB,QAAA,QAES,mBACT,QAAA,QAEM,gBACN,QAAA,QAEa,uBACb,QAAA,QAEY,sBACZ,QAAA,QAEa,uBACb,QAAA,QAEW,qBACX,QAAA,QAEO,iBACP,QAAA,QAEM,gBACN,QAAA,QAES,mBACT,QAAA,QAEU,oBACG,uBACb,QAAA,QAEiB,2BACjB,QAAA,QAEc,wBACd,QAAA,QAEa,uBACb,QAAA,QAEY,sBACZ,QAAA,QAEa,uBACb,QAAA,QAEe,yBACf,QAAA,QAEe,yBACf,QAAA,QAEQ,kBACR,QAAA,QAEY,sBACZ,QAAA,QAEmB,6BACnB,QAAA,QAEa,uBACb,QAAA,QAEU,oBACV,QAAA,QAEQ,kBACR,QAAA,QAEW,qBACX,QAAA,QAEY,sBACZ,QAAA,QAGK,eADE,iBAEP,QAAA,QAES,mBACT,QAAA,QAEO,iBACP,QAAA,QAEQ,kBACR,QAAA,QAEQ,kBACR,QAAA,QAEe,yBACf,QAAA,QAGc,wBADV,cAEJ,QAAA,QAEe,yBACf,QAAA,QAEU,oBACV,QAAA,QAEc,wBACd,QAAA,QAEW,qBAEG,wBADL,mBAET,QAAA,QAEW,qBACa,kCACxB,QAAA,QAEW,qBACG,wBACd,QAAA,QAEW,qBACM,2BACjB,QAAA,QAEW,qBACI,yBACf,QAAA,QAEe,yBACf,QAAA,QAEU,oBACV,QAAA,QAEc,wBACd,QAAA,QAEgB,0BAChB,QAAA,QAEa,uBACb,QAAA,QAEe,yBACf,QAAA,QAEQ,kBACR,QAAA,QAEgB,0BAChB,QAAA,QAEO,iBACP,QAAA,QAEe,yBACf,QAAA,QAEa,uBACb,QAAA,QAEa,uBACI,2BACjB,QAAA,QAEa,uBACG,0BAChB,QAAA,QAEa,uBACE,yBACf,QAAA,QAEW,qBACX,QAAA,QAEa,uBACA,uBACb,QAAA,QAGc,wBADD,uBAEb,QAAA,QAEiB,2BACjB,QAAA,QAEe,yBACf,QAAA,QAEc,wBACd,QAAA,QAEgB,0BAChB,QAAA,QAEc,wBACd,QAAA,QAEW,qBACX,QAAA,QAEY,sBACZ,QAAA,QAEkB,4BAClB,QAAA,QAEI,cACJ,QAAA,QAEW,qBACX,QAAA,QAEa,uBACb,QAAA,QAEe,yBACf,QAAA,QAEsB,gCACtB,QAAA,QAEY,sBACZ,QAAA,QAEa,uBACb,QAAA,QAEQ,kBACR,QAAA,QAEQ,kBACR,QAAA,QAES,mBACT,QAAA,QAEO,iBACP,QAAA,QAEmB,6BACnB,QAAA,QAGY,sBADR,cAEJ,QAAA,QAEQ,kBACR,QAAA,QAEO,iBACP,QAAA,QAEQ,kBACR,QAAA,QAEiB,2BACjB,QAAA,QAEkB,4BAClB,QAAA,QAEkB,4BAClB,QAAA,QAEkB,4BAClB,QAAA,QAEU,oBACV,QAAA,QAES,mBACT,QAAA,QAEW,qBACX,QAAA,QAEO,iBACP,QAAA,QAEK,eACL,QAAA,QAEY,sBACZ,QAAA,QAEc,wBACd,QAAA,QAEO,iBACP,QAAA,QAEO,iBACP,QAAA,QAEW,qBACX,QAAA,QAEW,qBACX,QAAA,QAEc,wBACd,QAAA,QAEM,gBACN,QAAA,QAEiB,2BACjB,QAAA,QAEU,oBACV,QAAA,QAEM,gBACN,QAAA,QAEc,wBACd,QAAA,QAEK,eACL,QAAA,QAEc,wBACd,QAAA,QAEU,oBACV,QAAA,QAEQ,kBACR,QAAA,QAEc,wBACd,QAAA,QAEgB,0BAChB,QAAA,QAEa,uBACb,QAAA,QAEe,yBACf,QAAA,QAEc,wBACd,QAAA,QAEiB,2BACjB,QAAA,QAES,mBACT,QAAA,QAEW,qBACX,QAAA,QAEa,uBACb,QAAA,QAES,mBACT,QAAA,QAEQ,kBACR,QAAA,QAEY,sBACZ,QAAA,QAES,mBACT,QAAA,QAEQ,kBACR,QAAA,QAEkB,4BAClB,QAAA,QAEgB,0BAChB,QAAA,QAEmB,6BACnB,QAAA,QAEO,iBACP,QAAA,QAEmB,6BACnB,QAAA,QAEsB,gCACtB,QAAA,QAES,mBACT,QAAA,QAE6B,uCAC7B,QAAA,QAGqC,+CADnB,4BAElB,QAAA,QAIM,gBAFI,oBACO,2BAEjB,QAAA,QAEO,iBACP,QAAA,QAES,mBACT,QAAA,QAGe,yBADN,mBAET,QAAA,QAEY,sBACZ,QAAA,QAEQ,kBACR,QAAA,QAEe,yBACf,QAAA,QAEU,oBACV,QAAA,QAEgB,0BAChB,QAAA,QAEiB,2BACjB,QAAA,QAEa,uBACb,QAAA,QAEO,iBACP,QAAA,QAEW,qBACX,QAAA,QAEoB,8BACE,gCACtB,QAAA,QAEI,cACU,wBACd,QAAA,QAEa,uBACb,QAAA,QAEe,yBACf,QAAA,QAEiB,2BACjB,QAAA,QAEQ,kBACR,QAAA,QAEc,wBACd,QAAA,QAEgB,0BAChB,QAAA,QAGc,wBADP,iBAEP,QAAA,QAGgB,0BADP,mBAET,QAAA,QAEa,uBACb,QAAA,QAEe,yBACf,QAAA,QAEQ,kBACR,QAAA,QAEU,oBACV,QAAA,QAEiB,2BACR,mBACT,QAAA,QAEmB,6BACR,qBACX,QAAA,QAEO,iBACP,QAAA,QAEgB,0BAChB,QAAA,QAEU,oBACV,QAAA,QAEe,yBAEG,4BADL,uBAEb,QAAA,QAEe,yBACa,sCAC5B,QAAA,QAEe,yBACG,4BAClB,QAAA,QAEe,yBACM,+BACrB,QAAA,QAEe,yBACI,6BACnB,QAAA,QAEQ,kBACR,QAAA,QAIM,gBAFG,mBACJ,eAEL,QAAA,QAES,mBACT,QAAA,QAEiB,2BACjB,QAAA,QAEiB,2BACjB,QAAA,QAEgB,0BAChB,QAAA,QAEiB,2BACH,wBACd,QAAA,QAEmB,6BACH,0BAChB,QAAA,QAEU,oBACV,QAAA,QAEM,gBACN,QAAA,QAEM,gBACN,QAAA,QAEM,gBACN,QAAA,QAES,mBACT,QAAA,QAES,mBACT,QAAA,QAEW,qBACX,QAAA,QAEa,uBACb,QAAA,QAEa,uBACb,QAAA,QAEY,sBACZ,QAAA,QAEQ,kBACR,QAAA,QAEU,oBACV,QAAA,QAEc,wBACd,QAAA,QAGc,wBADD,uBAEb,QAAA,QAEU,oBACV,QAAA,QAEU,oBACV,QAAA,QAEW,qBACX,QAAA,QAEY,sBACZ,QAAA,QAEkB,4BAClB,QAAA,QAEW,qBACX,QAAA,QAGa,uBADR,eAEL,QAAA,QAEU,oBACV,QAAA,QAEa,uBACb,QAAA,QAEY,sBACZ,QAAA,QAES,mBACT,QAAA,QAEa,uBACb,QAAA,QAES,mBACT,QAAA,QAEW,qBACX,QAAA,QAEa,uBACb,QAAA,QAEU,oBACV,QAAA,QAES,mBACT,QAAA,QAES,mBACT,QAAA,QAEW,qBACX,QAAA,QAES,mBACG,sBACZ,QAAA,QAEM,gBACN,QAAA,QAEa,uBACb,QAAA,QAEF,SACE,SAAA,SACA,MAAA,IACA,OAAA,IACA,QAAA,EACA,OAAA,KACA,SAAA,OACA,KAAM,cACN,OAAA,EAEgB,0BACA,yBAChB,SAAA,OACA,MAAA,KACA,OAAA,KACA,OAAA,EACA,SAAA,QACA,KAAA"} \ No newline at end of file diff --git a/library/font_awesome/fonts/fontawesome-webfont.eot b/library/fork-awesome/fonts/forkawesome-webfont.eot similarity index 54% rename from library/font_awesome/fonts/fontawesome-webfont.eot rename to library/fork-awesome/fonts/forkawesome-webfont.eot index e9f60ca95..1c76c9895 100644 Binary files a/library/font_awesome/fonts/fontawesome-webfont.eot and b/library/fork-awesome/fonts/forkawesome-webfont.eot differ diff --git a/library/fork-awesome/fonts/forkawesome-webfont.svg b/library/fork-awesome/fonts/forkawesome-webfont.svg new file mode 100644 index 000000000..5fbcf00ae --- /dev/null +++ b/library/fork-awesome/fonts/forkawesome-webfont.svg @@ -0,0 +1,2644 @@ + + + + + +Created by FontForge 20170925 at Mon Feb 26 00:19:18 2018 + By Julien Deswaef +The Fork Awesome font is licensed under the SIL OFL 1.1 (http://scripts.sil.org/OFL). Fork Awesome is a fork based of off Font Awesome 4.7.0 by Dave Gandy. More info on licenses at https://forkawesome.github.io + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.ttf b/library/fork-awesome/fonts/forkawesome-webfont.ttf similarity index 54% rename from library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.ttf rename to library/fork-awesome/fonts/forkawesome-webfont.ttf index 35acda2fa..0c06f96cb 100644 Binary files a/library/font_awesome/src/assets/font-awesome/fonts/fontawesome-webfont.ttf and b/library/fork-awesome/fonts/forkawesome-webfont.ttf differ diff --git a/library/fork-awesome/fonts/forkawesome-webfont.woff b/library/fork-awesome/fonts/forkawesome-webfont.woff new file mode 100644 index 000000000..ee6a89acb Binary files /dev/null and b/library/fork-awesome/fonts/forkawesome-webfont.woff differ diff --git a/library/fork-awesome/fonts/forkawesome-webfont.woff2 b/library/fork-awesome/fonts/forkawesome-webfont.woff2 new file mode 100644 index 000000000..de312f8f2 Binary files /dev/null and b/library/fork-awesome/fonts/forkawesome-webfont.woff2 differ diff --git a/tests/unit/AutonameTest.php b/tests/unit/AutonameTest.php index 33e237bb9..566fe6149 100644 --- a/tests/unit/AutonameTest.php +++ b/tests/unit/AutonameTest.php @@ -62,13 +62,16 @@ class AutonameTest extends TestCase { /** * test with a length, that may be too short + * length is maximum - autoname can return something shorter. */ public function testAutonameLength1() { $autoname1=autoname(1); - $this->assertEquals(1, strlen($autoname1)); + $test = ((strlen($autoname1) < 2) ? 1 : 0); + $this->assertEquals(1, $test); $autoname2=autoname(1); - $this->assertEquals(1, strlen($autoname2)); + $test = ((strlen($autoname2) < 2) ? 1 : 0); + $this->assertEquals(1, $test); // The following test is problematic, with only 26 possibilities // generating the same thing twice happens often aka diff --git a/tests/unit/Web/HttpSigTest.php b/tests/unit/Web/HttpSigTest.php new file mode 100644 index 000000000..18f2ce92b --- /dev/null +++ b/tests/unit/Web/HttpSigTest.php @@ -0,0 +1,125 @@ +assertSame( + $digest, + HTTPSig::generate_digest($text, false) + ); + } + public function generate_digestProvider() { + return [ + 'empty body text' => [ + '', + '47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=' + ], + 'sample body text' => [ + 'body text', + '2fu8kUkvuzuo5XyhWwORNOcJgDColXgxWkw1T5EXzPI=' + ], + 'NULL body text' => [ + null, + '47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=' + ], + ]; + } + + function testGeneratedDigestsOfDifferentTextShouldNotBeEqual() { + $this->assertNotSame( + HTTPSig::generate_digest('text1', false), + HTTPSig::generate_digest('text2', false) + ); + } + + /** + * Process separation needed for header() check. + * @runInSeparateProcess + */ + function testGenerate_digestSendsHttpHeader() { + $ret = HTTPSig::generate_digest('body text', true); + + $this->assertSame('2fu8kUkvuzuo5XyhWwORNOcJgDColXgxWkw1T5EXzPI=', $ret); + $this->assertContains( + 'Digest: SHA-256=2fu8kUkvuzuo5XyhWwORNOcJgDColXgxWkw1T5EXzPI=', + xdebug_get_headers(), + 'HTTP header Digest does not match' + ); + } + + /** + * @uses ::crypto_unencapsulate + */ + function testDecrypt_sigheader() { + $header = 'Header: iv="value_iv" key="value_key" alg="value_alg" data="value_data"'; + $result = [ + 'iv' => 'value_iv', + 'key' => 'value_key', + 'alg' => 'value_alg', + 'data' => 'value_data' + ]; + + $this->assertSame($result, HTTPSig::decrypt_sigheader($header, 'site private key')); + } + /** + * @uses ::crypto_unencapsulate + */ + function testDecrypt_sigheaderUseSitePrivateKey() { + // Create a stub for global function get_config() with expectation + $t = $this->getFunctionMock('Zotlabs\Web', 'get_config'); + $t->expects($this->once())->willReturn('system.prvkey'); + + $header = 'Header: iv="value_iv" key="value_key" alg="value_alg" data="value_data"'; + $result = [ + 'iv' => 'value_iv', + 'key' => 'value_key', + 'alg' => 'value_alg', + 'data' => 'value_data' + ]; + + $this->assertSame($result, HTTPSig::decrypt_sigheader($header)); + } + function testDecrypt_sigheaderIncompleteHeaderShouldReturnEmptyString() { + $header = 'Header: iv="value_iv" key="value_key"'; + + $this->assertEmpty(HTTPSig::decrypt_sigheader($header, 'site private key')); + } +} diff --git a/util/hmessages.po b/util/hmessages.po index ab43266e5..ee7266010 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 3.0RC\n" +"Project-Id-Version: 3.3.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-13 12:54+0100\n" +"POT-Creation-Date: 2018-03-01 08:51+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -146,13 +146,13 @@ msgid "Special - Group Repository" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:287 -#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Settings/Channel.php:474 -#: ../../Zotlabs/Module/Connedit.php:936 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Register.php:221 ../../include/selectors.php:49 +#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Settings/Channel.php:473 +#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/event.php:1308 -#: ../../include/event.php:1315 ../../include/connections.php:689 +#: ../../include/selectors.php:140 ../../include/event.php:1315 +#: ../../include/event.php:1322 ../../include/connections.php:689 #: ../../include/connections.php:696 msgid "Other" msgstr "" @@ -166,7 +166,7 @@ msgstr "" #: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Cards.php:29 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 #: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1198 msgid "Requested profile is not available." msgstr "" @@ -181,7 +181,7 @@ msgstr "" #: ../../Zotlabs/Module/Appman.php:86 ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Article_edit.php:51 #: ../../Zotlabs/Module/New_channel.php:77 -#: ../../Zotlabs/Module/New_channel.php:104 +#: ../../Zotlabs/Module/New_channel.php:102 #: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 #: ../../Zotlabs/Module/Moderate.php:13 #: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:275 @@ -193,11 +193,11 @@ msgstr "" #: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 #: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:400 #: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../Zotlabs/Module/Profile_photo.php:307 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:228 -#: ../../Zotlabs/Module/Item.php:245 ../../Zotlabs/Module/Item.php:255 -#: ../../Zotlabs/Module/Item.php:1085 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Profile_photo.php:302 +#: ../../Zotlabs/Module/Profile_photo.php:315 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 +#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 +#: ../../Zotlabs/Module/Item.php:1099 ../../Zotlabs/Module/Page.php:34 #: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 #: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 #: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 @@ -208,15 +208,15 @@ msgstr "" #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:107 #: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Cards.php:68 ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 #: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 #: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 -#: ../../Zotlabs/Module/Like.php:184 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 #: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 #: ../../Zotlabs/Module/Register.php:77 #: ../../Zotlabs/Module/Cover_photo.php:281 #: ../../Zotlabs/Module/Cover_photo.php:294 -#: ../../Zotlabs/Module/Display.php:404 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Display.php:406 ../../Zotlabs/Module/Network.php:15 #: ../../Zotlabs/Module/Filestorage.php:15 #: ../../Zotlabs/Module/Filestorage.php:70 #: ../../Zotlabs/Module/Filestorage.php:85 @@ -226,16 +226,16 @@ msgstr "" #: ../../Zotlabs/Module/Service_limits.php:11 ../../Zotlabs/Module/Rate.php:113 #: ../../Zotlabs/Module/Card_edit.php:51 #: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Lib/Chatroom.php:133 -#: ../../Zotlabs/Web/WebServer.php:169 ../../addon/keepout/keepout.php:36 +#: ../../Zotlabs/Web/WebServer.php:123 ../../addon/keepout/keepout.php:36 #: ../../addon/openid/Mod_Id.php:53 ../../addon/gitwiki/Mod_Gitwiki.php:196 #: ../../addon/gitwiki/Mod_Gitwiki.php:292 ../../addon/pumpio/pumpio.php:40 #: ../../include/attach.php:150 ../../include/attach.php:197 #: ../../include/attach.php:270 ../../include/attach.php:284 #: ../../include/attach.php:293 ../../include/attach.php:366 #: ../../include/attach.php:380 ../../include/attach.php:387 -#: ../../include/attach.php:469 ../../include/attach.php:1008 -#: ../../include/attach.php:1082 ../../include/attach.php:1247 -#: ../../include/items.php:3633 ../../include/photos.php:27 +#: ../../include/attach.php:469 ../../include/attach.php:1019 +#: ../../include/attach.php:1093 ../../include/attach.php:1258 +#: ../../include/items.php:3656 ../../include/photos.php:27 msgid "Permission denied." msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Block Name" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2288 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2402 msgid "Blocks" msgstr "" @@ -263,11 +263,11 @@ msgid "Edited" msgstr "" #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 -#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:147 -#: ../../Zotlabs/Module/Connedit.php:939 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:146 +#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Cards.php:96 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Storage/Browser.php:273 ../../Zotlabs/Storage/Browser.php:379 +#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 #: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 msgid "Create" msgstr "" @@ -277,15 +277,15 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Settings/Oauth.php:149 #: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Connections.php:260 -#: ../../Zotlabs/Module/Connections.php:297 -#: ../../Zotlabs/Module/Connections.php:317 ../../Zotlabs/Module/Wiki.php:202 +#: ../../Zotlabs/Module/Connections.php:265 +#: ../../Zotlabs/Module/Connections.php:303 +#: ../../Zotlabs/Module/Connections.php:323 ../../Zotlabs/Module/Wiki.php:202 #: ../../Zotlabs/Module/Wiki.php:358 ../../Zotlabs/Module/Menu.php:112 #: ../../Zotlabs/Module/Layouts.php:193 #: ../../Zotlabs/Module/Editwebpage.php:142 #: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Editpost.php:85 -#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Lib/Apps.php:399 -#: ../../Zotlabs/Lib/ThreadItem.php:121 ../../Zotlabs/Storage/Browser.php:285 +#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Lib/Apps.php:409 +#: ../../Zotlabs/Lib/ThreadItem.php:121 ../../Zotlabs/Storage/Browser.php:288 #: ../../Zotlabs/Widget/Cdav.php:126 ../../Zotlabs/Widget/Cdav.php:162 #: ../../addon/gitwiki/Mod_Gitwiki.php:151 #: ../../addon/gitwiki/Mod_Gitwiki.php:252 ../../include/channel.php:1297 @@ -302,19 +302,19 @@ msgstr "" #: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 #: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 #: ../../Zotlabs/Module/Article_edit.php:129 -#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Admin/Accounts.php:174 #: ../../Zotlabs/Module/Admin/Channels.php:149 #: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Settings/Oauth.php:150 #: ../../Zotlabs/Module/Thing.php:262 ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Connections.php:268 +#: ../../Zotlabs/Module/Connections.php:273 #: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Connedit.php:941 ../../Zotlabs/Module/Group.php:179 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 #: ../../Zotlabs/Module/Profiles.php:803 #: ../../Zotlabs/Module/Editwebpage.php:167 #: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Module/Card_edit.php:129 -#: ../../Zotlabs/Lib/Apps.php:400 ../../Zotlabs/Lib/ThreadItem.php:141 -#: ../../Zotlabs/Storage/Browser.php:286 ../../include/conversation.php:690 +#: ../../Zotlabs/Lib/Apps.php:410 ../../Zotlabs/Lib/ThreadItem.php:141 +#: ../../Zotlabs/Storage/Browser.php:289 ../../include/conversation.php:690 #: ../../include/conversation.php:733 msgid "Delete" msgstr "" @@ -344,6 +344,7 @@ msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" #: ../../Zotlabs/Module/Invite.php:82 +#: ../../addon/notifyadmin/notifyadmin.php:40 #, php-format msgid "%s : Message delivery failed." msgstr "" @@ -402,35 +403,36 @@ msgstr "" #: ../../Zotlabs/Module/Setup.php:349 ../../Zotlabs/Module/Connect.php:98 #: ../../Zotlabs/Module/Admin/Features.php:66 #: ../../Zotlabs/Module/Admin/Plugins.php:438 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:167 #: ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Channels.php:147 #: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:277 +#: ../../Zotlabs/Module/Admin/Site.php:289 #: ../../Zotlabs/Module/Admin/Profs.php:157 #: ../../Zotlabs/Module/Admin/Account_edit.php:74 #: ../../Zotlabs/Module/Admin/Security.php:104 #: ../../Zotlabs/Module/Settings/Permcats.php:110 -#: ../../Zotlabs/Module/Settings/Channel.php:489 +#: ../../Zotlabs/Module/Settings/Channel.php:488 #: ../../Zotlabs/Module/Settings/Features.php:47 #: ../../Zotlabs/Module/Settings/Tokens.php:168 #: ../../Zotlabs/Module/Settings/Account.php:118 -#: ../../Zotlabs/Module/Settings/Featured.php:52 -#: ../../Zotlabs/Module/Settings/Display.php:209 +#: ../../Zotlabs/Module/Settings/Featured.php:54 +#: ../../Zotlabs/Module/Settings/Display.php:192 #: ../../Zotlabs/Module/Settings/Oauth.php:87 #: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 #: ../../Zotlabs/Module/Import.php:529 ../../Zotlabs/Module/Cal.php:345 #: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 #: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 #: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 -#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:904 +#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 #: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 +#: ../../Zotlabs/Module/Email_validation.php:40 #: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 #: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:726 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 #: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Mail.php:431 #: ../../Zotlabs/Module/Filestorage.php:160 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../Zotlabs/Lib/ThreadItem.php:750 ../../Zotlabs/Widget/Eventstools.php:16 #: ../../Zotlabs/Widget/Wiki_pages.php:40 #: ../../Zotlabs/Widget/Wiki_pages.php:97 #: ../../view/theme/redbasic_c/php/config.php:95 @@ -443,7 +445,7 @@ msgstr "" #: ../../addon/likebanner/likebanner.php:57 #: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 #: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 -#: ../../addon/diaspora/diaspora.php:816 +#: ../../addon/diaspora/diaspora.php:822 #: ../../addon/gitwiki/Mod_Gitwiki.php:155 #: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 #: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 @@ -458,8 +460,8 @@ msgstr "" #: ../../addon/statusnet/statusnet.php:322 #: ../../addon/statusnet/statusnet.php:380 #: ../../addon/statusnet/statusnet.php:432 -#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:217 -#: ../../addon/twitter/twitter.php:259 +#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 +#: ../../addon/twitter/twitter.php:265 #: ../../addon/smileybutton/smileybutton.php:219 ../../addon/piwik/piwik.php:95 #: ../../addon/pageheader/pageheader.php:48 #: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 @@ -468,21 +470,16 @@ msgstr "" msgid "Submit" msgstr "" -#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Cards.php:38 -#: ../../Zotlabs/Module/Cards.php:178 ../../Zotlabs/Lib/Apps.php:224 -#: ../../include/conversation.php:1890 ../../include/features.php:122 -#: ../../include/nav.php:490 -msgid "Cards" +#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:179 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:124 +#: ../../include/nav.php:469 +msgid "Articles" msgstr "" #: ../../Zotlabs/Module/Articles.php:95 msgid "Add Article" msgstr "" -#: ../../Zotlabs/Module/Articles.php:178 ../../include/nav.php:501 -msgid "Articles" -msgstr "" - #: ../../Zotlabs/Module/Editlayout.php:79 #: ../../Zotlabs/Module/Article_edit.php:17 #: ../../Zotlabs/Module/Article_edit.php:33 @@ -508,8 +505,8 @@ msgstr "" #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 #: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Cloud.php:111 #: ../../Zotlabs/Module/Group.php:74 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:68 ../../Zotlabs/Module/Like.php:295 -#: ../../Zotlabs/Web/WebServer.php:168 ../../addon/redphotos/redphotos.php:119 +#: ../../Zotlabs/Module/Dreport.php:68 ../../Zotlabs/Module/Like.php:296 +#: ../../Zotlabs/Web/WebServer.php:122 ../../addon/redphotos/redphotos.php:119 #: ../../addon/hzfiles/hzfiles.php:73 ../../addon/frphotos/frphotos.php:81 #: ../../addon/redfiles/redfiles.php:109 ../../include/items.php:358 msgid "Permission denied" @@ -523,7 +520,7 @@ msgstr "" msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1633 +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1634 msgid "Profile" msgstr "" @@ -551,9 +548,9 @@ msgstr "" #: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 #: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 #: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 -#: ../../Zotlabs/Lib/Apps.php:744 ../../Zotlabs/Lib/Apps.php:822 +#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:832 #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 -#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:842 +#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:853 #: ../../include/conversation.php:1160 msgid "Unknown" msgstr "" @@ -666,10 +663,12 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Oauth.php:88 #: ../../Zotlabs/Module/Settings/Oauth.php:114 #: ../../Zotlabs/Module/Wiki.php:345 ../../Zotlabs/Module/Wiki.php:375 -#: ../../Zotlabs/Module/Connedit.php:942 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Profile_photo.php:464 +#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 #: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:804 -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../addon/gitwiki/Mod_Gitwiki.php:244 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:365 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../addon/gitwiki/Mod_Gitwiki.php:244 #: ../../addon/gitwiki/Mod_Gitwiki.php:267 ../../include/conversation.php:1386 #: ../../include/conversation.php:1435 msgid "Cancel" @@ -683,85 +682,85 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Channels.php:159 #: ../../Zotlabs/Module/Settings/Oauth.php:89 #: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:924 +#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 #: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 -#: ../../Zotlabs/Storage/Browser.php:280 +#: ../../Zotlabs/Storage/Browser.php:283 #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../addon/rendezvous/rendezvous.php:172 #: ../../addon/gitwiki/Mod_Gitwiki.php:158 msgid "Name" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:925 +#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 msgid "Organisation" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:926 +#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 msgid "Title" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:927 +#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 #: ../../Zotlabs/Module/Profiles.php:789 msgid "Phone" msgstr "" #: ../../Zotlabs/Module/Cdav.php:1174 -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Accounts.php:181 -#: ../../Zotlabs/Module/Connedit.php:928 ../../Zotlabs/Module/Profiles.php:790 +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:790 #: ../../addon/openid/MysqlProvider.php:56 #: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1769 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1775 msgid "Email" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:929 +#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 #: ../../Zotlabs/Module/Profiles.php:791 msgid "Instant messenger" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:930 +#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 #: ../../Zotlabs/Module/Profiles.php:792 msgid "Website" msgstr "" #: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 #: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:931 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 #: ../../Zotlabs/Module/Profiles.php:793 msgid "Address" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:932 +#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 #: ../../Zotlabs/Module/Profiles.php:794 msgid "Note" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:933 -#: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1301 +#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 +#: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1308 #: ../../include/connections.php:682 msgid "Mobile" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:934 -#: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1302 +#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1309 #: ../../include/connections.php:683 msgid "Home" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:935 -#: ../../Zotlabs/Module/Profiles.php:797 ../../include/event.php:1305 +#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Profiles.php:797 ../../include/event.php:1312 #: ../../include/connections.php:686 msgid "Work" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:937 +#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 #: ../../Zotlabs/Module/Profiles.php:799 #: ../../addon/jappixmini/jappixmini.php:368 msgid "Add Contact" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:938 +#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 #: ../../Zotlabs/Module/Profiles.php:800 msgid "Add Field" msgstr "" @@ -770,36 +769,36 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Plugins.php:453 #: ../../Zotlabs/Module/Settings/Oauth.php:42 #: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Connedit.php:940 ../../Zotlabs/Module/Profiles.php:802 -#: ../../Zotlabs/Lib/Apps.php:383 +#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:802 +#: ../../Zotlabs/Lib/Apps.php:393 msgid "Update" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:943 +#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 msgid "P.O. Box" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:944 +#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 msgid "Additional" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:945 +#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 msgid "Street" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:946 +#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 msgid "Locality" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:947 +#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 msgid "Region" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:948 +#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 msgid "ZIP Code" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:949 +#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 #: ../../Zotlabs/Module/Profiles.php:760 msgid "Country" msgstr "" @@ -817,7 +816,7 @@ msgid "This site is not a directory server" msgstr "" #: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Chat.php:25 -#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:431 +#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:508 msgid "You must be logged in to see this page." msgstr "" @@ -893,8 +892,12 @@ msgid "" "or restore these in date order (oldest first)." msgstr "" -#: ../../Zotlabs/Module/Hq.php:136 -msgid "Welcome to hubzilla!" +#: ../../Zotlabs/Module/Hq.php:140 +msgid "Welcome to Hubzilla!" +msgstr "" + +#: ../../Zotlabs/Module/Hq.php:140 +msgid "You have got no unseen posts..." msgstr "" #: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:540 @@ -904,25 +907,25 @@ msgstr "" msgid "Public access denied." msgstr "" -#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:313 -#: ../../Zotlabs/Lib/Apps.php:250 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../include/text.php:1029 ../../include/text.php:1041 -#: ../../include/acl_selectors.php:213 ../../include/nav.php:211 +#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:319 +#: ../../Zotlabs/Lib/Apps.php:256 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../include/text.php:1051 ../../include/text.php:1063 +#: ../../include/acl_selectors.php:118 ../../include/nav.php:179 msgid "Search" msgstr "" -#: ../../Zotlabs/Module/Search.php:225 +#: ../../Zotlabs/Module/Search.php:226 #, php-format msgid "Items tagged with: %s" msgstr "" -#: ../../Zotlabs/Module/Search.php:227 +#: ../../Zotlabs/Module/Search.php:228 #, php-format msgid "Search results for: %s" msgstr "" -#: ../../Zotlabs/Module/Pubstream.php:81 -#: ../../Zotlabs/Widget/Notifications.php:129 +#: ../../Zotlabs/Module/Pubstream.php:93 +#: ../../Zotlabs/Widget/Notifications.php:131 msgid "Public Stream" msgstr "" @@ -1022,7 +1025,7 @@ msgid "Menu Item Permissions" msgstr "" #: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 -#: ../../Zotlabs/Module/Settings/Channel.php:522 +#: ../../Zotlabs/Module/Settings/Channel.php:521 msgid "(click to open/close)" msgstr "" @@ -1045,17 +1048,17 @@ msgstr "" #: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 #: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 #: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 -#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:240 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:252 #: ../../Zotlabs/Module/Settings/Channel.php:305 -#: ../../Zotlabs/Module/Settings/Display.php:105 -#: ../../Zotlabs/Module/Api.php:97 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 #: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 #: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 #: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 #: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 #: ../../Zotlabs/Module/Filestorage.php:155 #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 ../../boot.php:1669 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1587 #: ../../view/theme/redbasic_c/php/config.php:100 #: ../../view/theme/redbasic_c/php/config.php:115 #: ../../view/theme/redbasic/php/config.php:98 @@ -1080,8 +1083,8 @@ msgstr "" #: ../../addon/statusnet/statusnet.php:389 #: ../../addon/statusnet/statusnet.php:411 #: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:242 -#: ../../addon/twitter/twitter.php:246 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 #: ../../addon/smileybutton/smileybutton.php:211 #: ../../addon/smileybutton/smileybutton.php:215 #: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 @@ -1095,17 +1098,17 @@ msgstr "" #: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 #: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 #: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 -#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:242 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:254 #: ../../Zotlabs/Module/Settings/Channel.php:305 -#: ../../Zotlabs/Module/Settings/Display.php:105 -#: ../../Zotlabs/Module/Api.php:96 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 #: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 #: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100 #: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Defperms.php:180 #: ../../Zotlabs/Module/Profiles.php:681 #: ../../Zotlabs/Module/Filestorage.php:155 #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 ../../boot.php:1669 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1587 #: ../../view/theme/redbasic_c/php/config.php:100 #: ../../view/theme/redbasic_c/php/config.php:115 #: ../../view/theme/redbasic/php/config.php:98 @@ -1130,8 +1133,8 @@ msgstr "" #: ../../addon/statusnet/statusnet.php:389 #: ../../addon/statusnet/statusnet.php:411 #: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:242 -#: ../../addon/twitter/twitter.php:246 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 #: ../../addon/smileybutton/smileybutton.php:211 #: ../../addon/smileybutton/smileybutton.php:215 #: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 @@ -1248,8 +1251,8 @@ msgid "Event not found." msgstr "" #: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 -#: ../../Zotlabs/Module/Like.php:384 ../../include/conversation.php:119 -#: ../../include/text.php:1941 ../../include/event.php:1153 +#: ../../Zotlabs/Module/Like.php:385 ../../include/conversation.php:119 +#: ../../include/text.php:2007 ../../include/event.php:1153 msgid "event" msgstr "" @@ -1260,7 +1263,7 @@ msgstr "" #: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 #: ../../Zotlabs/Module/Appman.php:140 ../../Zotlabs/Module/Appman.php:141 #: ../../Zotlabs/Module/Profiles.php:748 ../../Zotlabs/Module/Profiles.php:752 -#: ../../include/datetime.php:265 +#: ../../include/datetime.php:205 msgid "Required" msgstr "" @@ -1311,7 +1314,7 @@ msgid "Edit Location" msgstr "" #: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1123 -#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:764 +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:760 #: ../../include/conversation.php:1330 msgid "Preview" msgstr "" @@ -1341,7 +1344,7 @@ msgid "Delete event" msgstr "" #: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 -#: ../../include/text.php:1760 +#: ../../include/text.php:1826 msgid "Link to Source" msgstr "" @@ -1358,7 +1361,7 @@ msgid "Create Event" msgstr "" #: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 -#: ../../include/channel.php:1636 +#: ../../include/channel.php:1637 msgid "Export" msgstr "" @@ -1431,16 +1434,16 @@ msgid "Hub not found." msgstr "" #: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 -#: ../../Zotlabs/Module/Like.php:382 +#: ../../Zotlabs/Module/Like.php:383 #: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/diaspora/Receiver.php:1433 ../../addon/pubcrawl/as.php:1295 -#: ../../include/conversation.php:116 ../../include/text.php:1938 +#: ../../addon/diaspora/Receiver.php:1518 ../../addon/pubcrawl/as.php:1359 +#: ../../include/conversation.php:116 ../../include/text.php:2004 msgid "photo" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:382 -#: ../../addon/diaspora/Receiver.php:1433 ../../addon/pubcrawl/as.php:1295 -#: ../../include/conversation.php:144 ../../include/text.php:1944 +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:383 +#: ../../addon/diaspora/Receiver.php:1518 ../../addon/pubcrawl/as.php:1359 +#: ../../include/conversation.php:144 ../../include/text.php:2010 msgid "status" msgstr "" @@ -1514,67 +1517,71 @@ msgstr "" msgid "File to Upload" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:121 ../../Zotlabs/Module/Manage.php:138 +#: ../../Zotlabs/Module/New_channel.php:119 ../../Zotlabs/Module/Manage.php:138 #, php-format msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:249 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:254 msgid "Name or caption" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:249 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:254 msgid "" "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " "Group\"" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:251 +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:256 msgid "Choose a short nickname" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:251 +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:256 #, php-format msgid "" "Your nickname will be used to create an easy to remember channel address e." "g. nickname%s" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 msgid "Channel role and privacy" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 msgid "Select a channel role with your privacy requirements." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 msgid "Read more about roles" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:140 +#: ../../Zotlabs/Module/New_channel.php:138 msgid "Create Channel" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:141 +#: ../../Zotlabs/Module/New_channel.php:139 msgid "" "A channel is your identity on this network. It can represent a person, a " "blog, or a forum to name a few. Channels can make connections with other " "channels to share information with highly detailed permissions." msgstr "" -#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/New_channel.php:140 msgid "" "or import an existing channel from another location." msgstr "" +#: ../../Zotlabs/Module/New_channel.php:145 +msgid "Validate" +msgstr "" + #: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " @@ -1617,7 +1624,7 @@ msgid "" msgstr "" #: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:593 +#: ../../Zotlabs/Module/Settings/Channel.php:592 msgid "Remove Channel" msgstr "" @@ -1630,12 +1637,12 @@ msgid "NEW" msgstr "" #: ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:282 ../../include/text.php:1394 +#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 msgid "Size" msgstr "" #: ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:283 +#: ../../Zotlabs/Storage/Browser.php:286 msgid "Last Modified" msgstr "" @@ -2182,30 +2189,26 @@ msgstr "" msgid "Update has been marked successful" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:29 +#: ../../Zotlabs/Module/Admin/Dbsync.php:31 #, php-format msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#: ../../Zotlabs/Module/Admin/Dbsync.php:41 #, php-format msgid "Update function %s could not be found." msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:55 -msgid "No failed updates." -msgstr "" - #: ../../Zotlabs/Module/Admin/Dbsync.php:59 msgid "Failed Updates" msgstr "" @@ -2218,11 +2221,15 @@ msgstr "" msgid "Attempt to execute this update step automatically" msgstr "" +#: ../../Zotlabs/Module/Admin/Dbsync.php:67 +msgid "No failed updates." +msgstr "" + #: ../../Zotlabs/Module/Admin/Plugins.php:259 #: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:89 #: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 -#: ../../Zotlabs/Module/Display.php:408 ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3546 +#: ../../Zotlabs/Module/Display.php:410 ../../Zotlabs/Module/Filestorage.php:24 +#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3569 msgid "Item not found." msgstr "" @@ -2248,12 +2255,12 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Plugins.php:341 #: ../../Zotlabs/Module/Admin/Plugins.php:436 -#: ../../Zotlabs/Module/Admin/Accounts.php:164 +#: ../../Zotlabs/Module/Admin/Accounts.php:165 #: ../../Zotlabs/Module/Admin/Logs.php:82 #: ../../Zotlabs/Module/Admin/Channels.php:145 #: ../../Zotlabs/Module/Admin/Themes.php:122 #: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Site.php:275 +#: ../../Zotlabs/Module/Admin/Site.php:287 #: ../../Zotlabs/Module/Admin/Security.php:86 #: ../../Zotlabs/Module/Admin.php:136 msgid "Administration" @@ -2270,9 +2277,10 @@ msgid "Toggle" msgstr "" #: ../../Zotlabs/Module/Admin/Plugins.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:236 -#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:139 -#: ../../include/nav.php:224 +#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 +#: ../../Zotlabs/Widget/Newmember.php:55 +#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:105 +#: ../../include/nav.php:192 msgid "Settings" msgstr "" @@ -2335,7 +2343,7 @@ msgstr "" msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:383 +#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 msgid "Install" msgstr "" @@ -2361,112 +2369,112 @@ msgstr "" msgid "Remove" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#: ../../Zotlabs/Module/Admin/Accounts.php:37 #, php-format msgid "%s account blocked/unblocked" msgid_plural "%s account blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#: ../../Zotlabs/Module/Admin/Accounts.php:44 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Module/Admin/Accounts.php:79 +#: ../../Zotlabs/Module/Admin/Accounts.php:80 msgid "Account not found" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:90 ../../include/channel.php:2456 +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2462 #, php-format msgid "Account '%s' deleted" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#: ../../Zotlabs/Module/Admin/Accounts.php:99 #, php-format msgid "Account '%s' blocked" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#: ../../Zotlabs/Module/Admin/Accounts.php:107 #, php-format msgid "Account '%s' unblocked" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:165 -#: ../../Zotlabs/Module/Admin/Accounts.php:178 +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 #: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 msgid "Accounts" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 #: ../../Zotlabs/Module/Admin/Channels.php:148 msgid "select all" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Accounts.php:169 msgid "Registrations waiting for confirm" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Accounts.php:170 msgid "Request date" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 msgid "No registrations." msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Connections.php:282 ../../include/conversation.php:732 +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Connections.php:287 ../../include/conversation.php:732 msgid "Approve" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Admin/Accounts.php:173 msgid "Deny" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:174 -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Block" -msgstr "" - #: ../../Zotlabs/Module/Admin/Accounts.php:175 #: ../../Zotlabs/Module/Connedit.php:622 +msgid "Block" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:622 msgid "Unblock" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin/Accounts.php:181 msgid "ID" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/group.php:284 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:284 msgid "All Channels" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Admin/Accounts.php:184 msgid "Register date" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:184 +#: ../../Zotlabs/Module/Admin/Accounts.php:185 msgid "Last login" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:185 +#: ../../Zotlabs/Module/Admin/Accounts.php:186 msgid "Expires" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:186 +#: ../../Zotlabs/Module/Admin/Accounts.php:187 msgid "Service Class" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:188 +#: ../../Zotlabs/Module/Admin/Accounts.php:189 msgid "" "Selected accounts will be deleted!\\n\\nEverything these accounts had posted " "on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:189 +#: ../../Zotlabs/Module/Admin/Accounts.php:190 msgid "" "The account {0} will be deleted!\\n\\nEverything this account has posted on " "this site will be permanently deleted!\\n\\nAre you sure?" @@ -2575,7 +2583,7 @@ msgid "Disallow Code" msgstr "" #: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1808 ../../include/nav.php:410 +#: ../../include/conversation.php:1808 ../../include/nav.php:378 msgid "Channel" msgstr "" @@ -2620,412 +2628,469 @@ msgstr "" msgid "[Unsupported]" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:147 +#: ../../Zotlabs/Module/Admin/Site.php:158 msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:173 +#: ../../Zotlabs/Module/Admin/Site.php:184 #: ../../view/theme/redbasic_c/php/config.php:15 -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:2968 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3082 msgid "Default" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:184 -#: ../../Zotlabs/Module/Settings/Display.php:139 +#: ../../Zotlabs/Module/Admin/Site.php:195 +#: ../../Zotlabs/Module/Settings/Display.php:130 #, php-format msgid "%s - (Incompatible)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:191 -#: ../../Zotlabs/Module/Settings/Display.php:153 +#: ../../Zotlabs/Module/Admin/Site.php:202 msgid "mobile" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:193 +#: ../../Zotlabs/Module/Admin/Site.php:204 msgid "experimental" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:195 +#: ../../Zotlabs/Module/Admin/Site.php:206 msgid "unsupported" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:241 +#: ../../Zotlabs/Module/Admin/Site.php:253 msgid "Yes - with approval" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:247 +#: ../../Zotlabs/Module/Admin/Site.php:259 msgid "My site is not a public server" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:248 +#: ../../Zotlabs/Module/Admin/Site.php:260 msgid "My site has paid access only" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Admin/Site.php:261 msgid "My site has free access only" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Admin/Site.php:262 msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:262 +#: ../../Zotlabs/Module/Admin/Site.php:274 msgid "Beginner/Basic" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:263 +#: ../../Zotlabs/Module/Admin/Site.php:275 msgid "Novice - not skilled but willing to learn" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:264 +#: ../../Zotlabs/Module/Admin/Site.php:276 msgid "Intermediate - somewhat comfortable" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:265 +#: ../../Zotlabs/Module/Admin/Site.php:277 msgid "Advanced - very comfortable" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:266 +#: ../../Zotlabs/Module/Admin/Site.php:278 msgid "Expert - I can write computer code" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Site.php:279 msgid "Wizard - I probably know more than you do" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:276 ../../Zotlabs/Widget/Admin.php:22 +#: ../../Zotlabs/Module/Admin/Site.php:288 ../../Zotlabs/Widget/Admin.php:22 msgid "Site" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:278 -#: ../../Zotlabs/Module/Register.php:263 +#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Register.php:269 msgid "Registration" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:279 +#: ../../Zotlabs/Module/Admin/Site.php:291 msgid "File upload" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:280 +#: ../../Zotlabs/Module/Admin/Site.php:292 msgid "Policies" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:281 ../../include/contact_widgets.php:16 +#: ../../Zotlabs/Module/Admin/Site.php:293 ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:285 +#: ../../Zotlabs/Module/Admin/Site.php:297 #: ../../addon/statusnet/statusnet.php:891 msgid "Site name" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Site default technical skill level" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Used to provide a member experience matched to technical comfort level" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "Lock the technical skill level setting" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "Members can set their own technical comfort level by default" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:291 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "Banner/Logo" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "Administrator Information" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:293 ../../Zotlabs/Module/Siteinfo.php:22 +#: ../../Zotlabs/Module/Admin/Site.php:305 ../../Zotlabs/Module/Siteinfo.php:21 msgid "Site Information" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Site.php:305 msgid "" "Publicly visible description of this site. Displayed on siteinfo page. " "BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Site.php:306 msgid "System language" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "System theme" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Mobile system theme" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "Allow Feeds as Connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "(Heavy system resource usage)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "Maximum image size" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "Does this site allow new member registration?" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "Invitation only" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:302 +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Minimum age" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Minimum age (in years) for who may register on this site." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:315 msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Register text" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:317 msgid "Site homepage to show visitors (default: login box)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:317 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "Preserve site homepage URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "Accounts abandoned after x days" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "Allowed friend domains" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:308 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "Verify Email Addresses" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:308 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "Force publish" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:323 msgid "Import Public Streams" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:323 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Site only Public Streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:326 msgid "Login on Homepage" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:326 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "Enable context help" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "" "Display contextual help for the current page when the help button is pressed." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:329 msgid "Reply-to email address for system generated email." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:315 +#: ../../Zotlabs/Module/Admin/Site.php:330 msgid "Sender (From) email address for system generated email." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:316 +#: ../../Zotlabs/Module/Admin/Site.php:331 msgid "Name of email sender for system generated email." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:333 msgid "Directory Server URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:333 msgid "Default directory server" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:320 +#: ../../Zotlabs/Module/Admin/Site.php:335 msgid "Proxy user" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:336 msgid "Proxy URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:322 +#: ../../Zotlabs/Module/Admin/Site.php:337 msgid "Network timeout" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:322 +#: ../../Zotlabs/Module/Admin/Site.php:337 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:338 msgid "Delivery interval" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:338 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:339 msgid "Deliveries per process" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:339 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust " "if necessary to tune system performance. Recommend: 1-5." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:340 msgid "Queue Threshold" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:340 msgid "" "Always defer immediate delivery if queue contains more than this number of " "entries." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:341 msgid "Poll interval" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:341 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:342 msgid "Path to ImageMagick convert program" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:342 msgid "" "If set, use this program to generate photo thumbnails for huge images ( > " "4000 pixels in either dimension), otherwise memory exhaustion may occur. " "Example: /usr/bin/convert" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:343 msgid "Allow SVG thumbnails in file browser" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:343 msgid "WARNING: SVG images may contain malicious code." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:329 +#: ../../Zotlabs/Module/Admin/Site.php:344 msgid "Maximum Load Average" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:329 +#: ../../Zotlabs/Module/Admin/Site.php:344 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:330 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "Expiration period in days for imported (grid/network) content" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:330 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "0 for no expiration of imported content" msgstr "" +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Page to display after creating a new channel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Recommend: profiles, go, or settings" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Optional: site location" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Region or country" +msgstr "" + #: ../../Zotlabs/Module/Admin/Profs.php:69 msgid "New Profile Field" msgstr "" @@ -3068,8 +3133,8 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Profs.php:74 #: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 #: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1030 -#: ../../include/text.php:1042 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 +#: ../../include/text.php:1064 msgid "Save" msgstr "" @@ -3266,7 +3331,7 @@ msgid "Visible to:" msgstr "" #: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:118 ../../include/acl_selectors.php:183 +#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 msgctxt "acl" msgid "Profile" msgstr "" @@ -3299,25 +3364,25 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Permcats.php:103 #: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Connedit.php:908 ../../Zotlabs/Module/Defperms.php:250 +#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 msgid "My Settings" msgstr "" #: ../../Zotlabs/Module/Settings/Permcats.php:105 #: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Connedit.php:903 ../../Zotlabs/Module/Defperms.php:248 +#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 msgid "inherited" msgstr "" #: ../../Zotlabs/Module/Settings/Permcats.php:108 #: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Defperms.php:253 +#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 msgid "Individual Permissions" msgstr "" #: ../../Zotlabs/Module/Settings/Permcats.php:109 #: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Connedit.php:911 +#: ../../Zotlabs/Module/Connedit.php:894 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher priority than " @@ -3329,7 +3394,7 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Channel.php:69 #: ../../Zotlabs/Module/Settings/Channel.php:72 #: ../../Zotlabs/Module/Settings/Channel.php:83 -#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:28 +#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:24 #: ../../include/selectors.php:123 ../../include/channel.php:437 #: ../../include/channel.php:438 ../../include/channel.php:445 msgid "Friends" @@ -3340,7 +3405,7 @@ msgstr "" #: ../../addon/rendezvous/rendezvous.php:82 #: ../../addon/openstreetmap/openstreetmap.php:184 #: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 -#: ../../addon/twitter/twitter.php:766 ../../addon/piwik/piwik.php:116 +#: ../../addon/twitter/twitter.php:772 ../../addon/piwik/piwik.php:116 #: ../../addon/xmpp/xmpp.php:102 msgid "Settings updated." msgstr "" @@ -3377,370 +3442,369 @@ msgstr "" msgid "Anybody on the internet" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:406 +#: ../../Zotlabs/Module/Settings/Channel.php:405 msgid "Publish your default profile in the network directory" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:411 +#: ../../Zotlabs/Module/Settings/Channel.php:410 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:415 -#: ../../Zotlabs/Module/Profile_photo.php:443 -#: ../../Zotlabs/Module/Cover_photo.php:365 +#: ../../Zotlabs/Module/Settings/Channel.php:414 msgid "or" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:420 +#: ../../Zotlabs/Module/Settings/Channel.php:419 msgid "Your channel address is" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:423 +#: ../../Zotlabs/Module/Settings/Channel.php:422 msgid "Your files/photos are accessible via WebDAV at" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:487 +#: ../../Zotlabs/Module/Settings/Channel.php:486 msgid "Channel Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:494 +#: ../../Zotlabs/Module/Settings/Channel.php:493 msgid "Basic Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:495 ../../include/channel.php:1521 +#: ../../Zotlabs/Module/Settings/Channel.php:494 ../../include/channel.php:1522 msgid "Full Name:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:496 +#: ../../Zotlabs/Module/Settings/Channel.php:495 #: ../../Zotlabs/Module/Settings/Account.php:119 msgid "Email Address:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:497 +#: ../../Zotlabs/Module/Settings/Channel.php:496 msgid "Your Timezone:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:498 +#: ../../Zotlabs/Module/Settings/Channel.php:497 msgid "Default Post Location:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:498 +#: ../../Zotlabs/Module/Settings/Channel.php:497 msgid "Geographical location to display on your posts" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:499 +#: ../../Zotlabs/Module/Settings/Channel.php:498 msgid "Use Browser Location:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:501 +#: ../../Zotlabs/Module/Settings/Channel.php:500 msgid "Adult Content" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:501 +#: ../../Zotlabs/Module/Settings/Channel.php:500 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:503 +#: ../../Zotlabs/Module/Settings/Channel.php:502 msgid "Security and Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:505 +#: ../../Zotlabs/Module/Settings/Channel.php:504 msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:507 +#: ../../Zotlabs/Module/Settings/Channel.php:506 msgid "Hide my online presence" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:507 +#: ../../Zotlabs/Module/Settings/Channel.php:506 msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:509 +#: ../../Zotlabs/Module/Settings/Channel.php:508 msgid "Simple Privacy Settings:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:510 +#: ../../Zotlabs/Module/Settings/Channel.php:509 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:511 +#: ../../Zotlabs/Module/Settings/Channel.php:510 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:512 +#: ../../Zotlabs/Module/Settings/Channel.php:511 msgid "Private - default private, never open or public" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:513 +#: ../../Zotlabs/Module/Settings/Channel.php:512 msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:515 +#: ../../Zotlabs/Module/Settings/Channel.php:514 msgid "Allow others to tag your posts" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:515 +#: ../../Zotlabs/Module/Settings/Channel.php:514 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:517 +#: ../../Zotlabs/Module/Settings/Channel.php:516 msgid "Channel Permission Limits" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "Expire other channel content after this many days" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 #, php-format msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:520 +#: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:520 +#: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "May reduce spam activity" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:521 +#: ../../Zotlabs/Module/Settings/Channel.php:520 msgid "Default Privacy Group" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:522 msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:524 +#: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "Profile to assign new connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:533 +#: ../../Zotlabs/Module/Settings/Channel.php:532 msgid "Channel permissions category:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:534 +#: ../../Zotlabs/Module/Settings/Channel.php:533 msgid "Default Permissions Group" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:539 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:539 msgid "Useful to reduce spamming" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:543 +#: ../../Zotlabs/Module/Settings/Channel.php:542 +#: ../../Zotlabs/Lib/Enotify.php:68 msgid "Notification Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:544 +#: ../../Zotlabs/Module/Settings/Channel.php:543 msgid "By default post a status message when:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:545 +#: ../../Zotlabs/Module/Settings/Channel.php:544 msgid "accepting a friend request" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:546 +#: ../../Zotlabs/Module/Settings/Channel.php:545 msgid "joining a forum/community" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:547 +#: ../../Zotlabs/Module/Settings/Channel.php:546 msgid "making an interesting profile change" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:548 +#: ../../Zotlabs/Module/Settings/Channel.php:547 msgid "Send a notification email when:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:549 +#: ../../Zotlabs/Module/Settings/Channel.php:548 msgid "You receive a connection request" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:550 +#: ../../Zotlabs/Module/Settings/Channel.php:549 msgid "Your connections are confirmed" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:551 +#: ../../Zotlabs/Module/Settings/Channel.php:550 msgid "Someone writes on your profile wall" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:552 +#: ../../Zotlabs/Module/Settings/Channel.php:551 msgid "Someone writes a followup comment" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:553 +#: ../../Zotlabs/Module/Settings/Channel.php:552 msgid "You receive a private message" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:554 +#: ../../Zotlabs/Module/Settings/Channel.php:553 msgid "You receive a friend suggestion" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:555 +#: ../../Zotlabs/Module/Settings/Channel.php:554 msgid "You are tagged in a post" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:556 +#: ../../Zotlabs/Module/Settings/Channel.php:555 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:558 +#: ../../Zotlabs/Module/Settings/Channel.php:557 msgid "Someone likes your post/comment" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:561 +#: ../../Zotlabs/Module/Settings/Channel.php:560 msgid "Show visual notifications including:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:563 +#: ../../Zotlabs/Module/Settings/Channel.php:562 msgid "Unseen grid activity" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:564 +#: ../../Zotlabs/Module/Settings/Channel.php:563 msgid "Unseen channel activity" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:565 +#: ../../Zotlabs/Module/Settings/Channel.php:564 msgid "Unseen private messages" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:565 +#: ../../Zotlabs/Module/Settings/Channel.php:564 +#: ../../Zotlabs/Module/Settings/Channel.php:569 #: ../../Zotlabs/Module/Settings/Channel.php:570 #: ../../Zotlabs/Module/Settings/Channel.php:571 -#: ../../Zotlabs/Module/Settings/Channel.php:572 #: ../../addon/jappixmini/jappixmini.php:343 msgid "Recommended" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:566 +#: ../../Zotlabs/Module/Settings/Channel.php:565 msgid "Upcoming events" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:567 +#: ../../Zotlabs/Module/Settings/Channel.php:566 msgid "Events today" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:568 +#: ../../Zotlabs/Module/Settings/Channel.php:567 msgid "Upcoming birthdays" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:568 +#: ../../Zotlabs/Module/Settings/Channel.php:567 msgid "Not available in all themes" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:569 +#: ../../Zotlabs/Module/Settings/Channel.php:568 msgid "System (personal) notifications" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:570 +#: ../../Zotlabs/Module/Settings/Channel.php:569 msgid "System info messages" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:571 +#: ../../Zotlabs/Module/Settings/Channel.php:570 msgid "System critical alerts" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:572 +#: ../../Zotlabs/Module/Settings/Channel.php:571 msgid "New connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:573 +#: ../../Zotlabs/Module/Settings/Channel.php:572 msgid "System Registrations" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:574 +#: ../../Zotlabs/Module/Settings/Channel.php:573 msgid "Unseen shared files" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:575 +#: ../../Zotlabs/Module/Settings/Channel.php:574 msgid "Unseen public activity" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:575 msgid "Email notification hub (hostname)" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:575 #, php-format msgid "" "If your channel is mirrored to multiple hubs, set this to your preferred " "location. This will prevent duplicate email notifications. Example: %s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:577 +#: ../../Zotlabs/Module/Settings/Channel.php:576 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:579 +#: ../../Zotlabs/Module/Settings/Channel.php:578 msgid "Notify me of events this many days in advance" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:579 +#: ../../Zotlabs/Module/Settings/Channel.php:578 msgid "Must be greater than 0" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:585 +#: ../../Zotlabs/Module/Settings/Channel.php:584 msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:586 +#: ../../Zotlabs/Module/Settings/Channel.php:585 msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:588 +#: ../../Zotlabs/Module/Settings/Channel.php:587 msgid "Miscellaneous Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:589 +#: ../../Zotlabs/Module/Settings/Channel.php:588 msgid "Default photo upload folder" msgstr "" +#: ../../Zotlabs/Module/Settings/Channel.php:588 #: ../../Zotlabs/Module/Settings/Channel.php:589 -#: ../../Zotlabs/Module/Settings/Channel.php:590 msgid "%Y - current year, %m - current month" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:590 +#: ../../Zotlabs/Module/Settings/Channel.php:589 msgid "Default file upload folder" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:592 +#: ../../Zotlabs/Module/Settings/Channel.php:591 msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:594 +#: ../../Zotlabs/Module/Settings/Channel.php:593 msgid "Remove this channel." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:595 +#: ../../Zotlabs/Module/Settings/Channel.php:594 msgid "Firefox Share $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Settings/Channel.php:595 msgid "Start calendar week on Monday" msgstr "" @@ -3793,7 +3857,7 @@ msgid "Expires (yyyy-mm-dd)" msgstr "" #: ../../Zotlabs/Module/Settings/Tokens.php:160 -#: ../../Zotlabs/Module/Connedit.php:907 +#: ../../Zotlabs/Module/Connedit.php:890 msgid "Their Settings" msgstr "" @@ -3858,7 +3922,9 @@ msgid "Your technical skill level" msgstr "" #: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "Used to provide a member experience matched to your comfort level" +msgid "" +"Used to provide a member experience and additional features consistent with " +"your comfort level" msgstr "" #: ../../Zotlabs/Module/Settings/Account.php:120 @@ -3870,148 +3936,152 @@ msgstr "" msgid "Remove this account including all its channels" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:21 +#: ../../Zotlabs/Module/Settings/Featured.php:23 msgid "Affinity Slider settings updated." msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:36 +#: ../../Zotlabs/Module/Settings/Featured.php:38 msgid "No feature settings configured" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:43 +#: ../../Zotlabs/Module/Settings/Featured.php:45 msgid "Default maximum affinity level" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:48 +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "0-99 default 99" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 msgid "Default minimum affinity level" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:52 +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "0-99 - default 0" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:54 msgid "Affinity Slider Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:62 -msgid "Feature/Addon Settings" +#: ../../Zotlabs/Module/Settings/Featured.php:64 +msgid "Addon Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:147 -msgid "No special theme for mobile devices" +#: ../../Zotlabs/Module/Settings/Featured.php:65 +msgid "Please save/submit changes to any panel before opening another." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:150 +#: ../../Zotlabs/Module/Settings/Display.php:139 #, php-format msgid "%s - (Experimental)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:204 +#: ../../Zotlabs/Module/Settings/Display.php:187 msgid "Display Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:205 +#: ../../Zotlabs/Module/Settings/Display.php:188 msgid "Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:206 +#: ../../Zotlabs/Module/Settings/Display.php:189 msgid "Custom Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:207 +#: ../../Zotlabs/Module/Settings/Display.php:190 msgid "Content Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:213 +#: ../../Zotlabs/Module/Settings/Display.php:196 msgid "Display Theme:" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:214 +#: ../../Zotlabs/Module/Settings/Display.php:197 msgid "Select scheme" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:216 -msgid "Mobile Theme:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:217 +#: ../../Zotlabs/Module/Settings/Display.php:199 msgid "Preload images before rendering the page" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:217 +#: ../../Zotlabs/Module/Settings/Display.php:199 msgid "" "The subjective page load time will be longer but the page will be ready when " "displayed" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:218 +#: ../../Zotlabs/Module/Settings/Display.php:200 msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:219 +#: ../../Zotlabs/Module/Settings/Display.php:201 msgid "Update browser every xx seconds" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:219 +#: ../../Zotlabs/Module/Settings/Display.php:201 msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:220 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:220 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "Maximum of 100 items" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:221 +#: ../../Zotlabs/Module/Settings/Display.php:203 msgid "Show emoticons (smilies) as images" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:222 +#: ../../Zotlabs/Module/Settings/Display.php:204 msgid "Provide channel menu in navigation bar" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:222 +#: ../../Zotlabs/Module/Settings/Display.php:204 msgid "Default: channel menu located in app menu" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:223 +#: ../../Zotlabs/Module/Settings/Display.php:205 msgid "Manual conversation updates" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:223 +#: ../../Zotlabs/Module/Settings/Display.php:205 msgid "Default is on, turning this off may increase screen jumping" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:224 +#: ../../Zotlabs/Module/Settings/Display.php:206 msgid "Link post titles to source" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:225 +#: ../../Zotlabs/Module/Settings/Display.php:207 msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:228 +#: ../../Zotlabs/Module/Settings/Display.php:210 msgid "Use blog/list mode on channel page" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:228 -#: ../../Zotlabs/Module/Settings/Display.php:229 +#: ../../Zotlabs/Module/Settings/Display.php:210 +#: ../../Zotlabs/Module/Settings/Display.php:211 msgid "(comments displayed separately)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:229 +#: ../../Zotlabs/Module/Settings/Display.php:211 msgid "Use blog/list mode on grid page" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:230 +#: ../../Zotlabs/Module/Settings/Display.php:212 msgid "Channel page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:230 -#: ../../Zotlabs/Module/Settings/Display.php:231 +#: ../../Zotlabs/Module/Settings/Display.php:212 +#: ../../Zotlabs/Module/Settings/Display.php:213 msgid "click to expand content exceeding this height" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:231 +#: ../../Zotlabs/Module/Settings/Display.php:213 msgid "Grid page max height of content (in pixels)" msgstr "" @@ -4035,7 +4105,7 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Oauth.php:90 #: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:775 +#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 msgid "Consumer Key" msgstr "" @@ -4046,7 +4116,7 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Oauth.php:91 #: ../../Zotlabs/Module/Settings/Oauth.php:117 -#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:776 +#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 msgid "Consumer Secret" msgstr "" @@ -4103,9 +4173,9 @@ msgstr "" #: ../../Zotlabs/Module/Embedphotos.php:158 ../../Zotlabs/Module/Photos.php:712 #: ../../Zotlabs/Module/Photos.php:844 ../../Zotlabs/Module/Photos.php:1381 -#: ../../Zotlabs/Module/Profile_photo.php:437 +#: ../../Zotlabs/Module/Profile_photo.php:458 #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Storage/Browser.php:274 ../../Zotlabs/Storage/Browser.php:381 +#: ../../Zotlabs/Storage/Browser.php:277 ../../Zotlabs/Storage/Browser.php:384 #: ../../Zotlabs/Widget/Cdav.php:133 ../../Zotlabs/Widget/Cdav.php:169 #: ../../Zotlabs/Widget/Portfolio.php:110 ../../Zotlabs/Widget/Album.php:97 msgid "Upload" @@ -4171,7 +4241,7 @@ msgstr "" #: ../../Zotlabs/Module/Thing.php:314 ../../Zotlabs/Module/Thing.php:367 #: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 #: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 -#: ../../Zotlabs/Module/Filestorage.php:147 ../../include/acl_selectors.php:218 +#: ../../Zotlabs/Module/Filestorage.php:147 ../../include/acl_selectors.php:123 msgid "Permissions" msgstr "" @@ -4266,16 +4336,16 @@ msgstr "" msgid "Authentication failed." msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1665 -#: ../../include/channel.php:2301 +#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1583 +#: ../../include/channel.php:2307 msgid "Remote Authentication" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2302 +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2308 msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2303 +#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2309 msgid "Authenticate" msgstr "" @@ -4283,23 +4353,23 @@ msgstr "" msgid "Permissions denied." msgstr "" -#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2312 +#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2426 msgid "Import" msgstr "" -#: ../../Zotlabs/Module/Api.php:72 ../../Zotlabs/Module/Api.php:93 +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 msgid "Authorize application connection" msgstr "" -#: ../../Zotlabs/Module/Api.php:73 +#: ../../Zotlabs/Module/Api.php:75 msgid "Return to your app and insert this Security Code:" msgstr "" -#: ../../Zotlabs/Module/Api.php:83 +#: ../../Zotlabs/Module/Api.php:85 msgid "Please login to continue." msgstr "" -#: ../../Zotlabs/Module/Api.php:95 +#: ../../Zotlabs/Module/Api.php:97 msgid "" "Do you want to authorize this application to access your posts and contacts, " "and/or create new posts for you?" @@ -4317,15 +4387,15 @@ msgstr "" msgid "vcard" msgstr "" -#: ../../Zotlabs/Module/Apps.php:47 ../../Zotlabs/Lib/Apps.php:223 +#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 msgid "Apps" msgstr "" -#: ../../Zotlabs/Module/Apps.php:50 +#: ../../Zotlabs/Module/Apps.php:51 msgid "Manage apps" msgstr "" -#: ../../Zotlabs/Module/Apps.php:51 +#: ../../Zotlabs/Module/Apps.php:52 msgid "Create new app" msgstr "" @@ -4335,7 +4405,7 @@ msgctxt "mood" msgid "%1$s is %2$s" msgstr "" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:247 +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:253 msgid "Mood" msgstr "" @@ -4375,12 +4445,12 @@ msgstr "" #: ../../Zotlabs/Module/Connections.php:88 #: ../../Zotlabs/Module/Connections.php:102 -#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:30 +#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 msgid "All" msgstr "" #: ../../Zotlabs/Module/Connections.php:133 -#: ../../Zotlabs/Widget/Notifications.php:82 +#: ../../Zotlabs/Widget/Notifications.php:84 msgid "New Connections" msgstr "" @@ -4420,70 +4490,70 @@ msgstr "" msgid "Not connected at this location" msgstr "" -#: ../../Zotlabs/Module/Connections.php:258 +#: ../../Zotlabs/Module/Connections.php:263 #, php-format msgid "%1$s [%2$s]" msgstr "" -#: ../../Zotlabs/Module/Connections.php:259 +#: ../../Zotlabs/Module/Connections.php:264 msgid "Edit connection" msgstr "" -#: ../../Zotlabs/Module/Connections.php:261 +#: ../../Zotlabs/Module/Connections.php:266 msgid "Delete connection" msgstr "" -#: ../../Zotlabs/Module/Connections.php:270 +#: ../../Zotlabs/Module/Connections.php:275 msgid "Channel address" msgstr "" -#: ../../Zotlabs/Module/Connections.php:272 +#: ../../Zotlabs/Module/Connections.php:277 msgid "Network" msgstr "" -#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Connections.php:280 msgid "Call" msgstr "" -#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Connections.php:282 msgid "Status" msgstr "" -#: ../../Zotlabs/Module/Connections.php:279 +#: ../../Zotlabs/Module/Connections.php:284 msgid "Connected" msgstr "" -#: ../../Zotlabs/Module/Connections.php:281 +#: ../../Zotlabs/Module/Connections.php:286 msgid "Approve connection" msgstr "" -#: ../../Zotlabs/Module/Connections.php:283 +#: ../../Zotlabs/Module/Connections.php:288 msgid "Ignore connection" msgstr "" -#: ../../Zotlabs/Module/Connections.php:284 +#: ../../Zotlabs/Module/Connections.php:289 #: ../../Zotlabs/Module/Connedit.php:630 msgid "Ignore" msgstr "" -#: ../../Zotlabs/Module/Connections.php:285 +#: ../../Zotlabs/Module/Connections.php:290 msgid "Recent activity" msgstr "" -#: ../../Zotlabs/Module/Connections.php:309 ../../Zotlabs/Lib/Apps.php:229 -#: ../../include/text.php:959 ../../include/nav.php:114 +#: ../../Zotlabs/Module/Connections.php:315 ../../Zotlabs/Lib/Apps.php:235 +#: ../../include/text.php:973 msgid "Connections" msgstr "" -#: ../../Zotlabs/Module/Connections.php:314 +#: ../../Zotlabs/Module/Connections.php:320 msgid "Search your connections" msgstr "" -#: ../../Zotlabs/Module/Connections.php:315 +#: ../../Zotlabs/Module/Connections.php:321 msgid "Connections search" msgstr "" -#: ../../Zotlabs/Module/Connections.php:316 +#: ../../Zotlabs/Module/Connections.php:322 #: ../../Zotlabs/Module/Directory.php:396 #: ../../Zotlabs/Module/Directory.php:401 ../../include/contact_widgets.php:23 msgid "Find" @@ -4681,12 +4751,12 @@ msgid "Please wait" msgstr "" #: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 -#: ../../Zotlabs/Lib/ThreadItem.php:751 +#: ../../Zotlabs/Lib/ThreadItem.php:747 msgid "This is you" msgstr "" #: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 -#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/js_strings.php:6 +#: ../../Zotlabs/Lib/ThreadItem.php:749 ../../include/js_strings.php:6 msgid "Comment" msgstr "" @@ -4736,8 +4806,8 @@ msgid "View all" msgstr "" #: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 -#: ../../include/conversation.php:1978 ../../include/channel.php:1539 -#: ../../include/taxonomy.php:593 +#: ../../include/conversation.php:1978 ../../include/channel.php:1540 +#: ../../include/taxonomy.php:597 msgctxt "noun" msgid "Like" msgid_plural "Likes" @@ -4775,7 +4845,7 @@ msgid "Dislikes" msgstr "" #: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 -#: ../../include/acl_selectors.php:220 +#: ../../include/acl_selectors.php:125 msgid "Close" msgstr "" @@ -4810,7 +4880,7 @@ msgid "Error downloading wiki: " msgstr "" #: ../../Zotlabs/Module/Wiki.php:197 ../../addon/gitwiki/Mod_Gitwiki.php:146 -#: ../../include/conversation.php:1925 ../../include/nav.php:526 +#: ../../include/conversation.php:1925 ../../include/nav.php:494 msgid "Wikis" msgstr "" @@ -4834,23 +4904,23 @@ msgstr "" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:348 #: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1802 -#: ../../include/features.php:378 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 +#: ../../include/text.php:1868 msgid "Markdown" msgstr "" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:348 #: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1800 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1866 msgid "BBcode" msgstr "" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1803 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1869 msgid "Text" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:281 +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 #: ../../addon/gitwiki/Mod_Gitwiki.php:159 msgid "Type" msgstr "" @@ -4917,8 +4987,10 @@ msgstr "" msgid "Embed an image from your albums" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:376 ../../addon/gitwiki/Mod_Gitwiki.php:268 -#: ../../include/conversation.php:1387 ../../include/conversation.php:1434 +#: ../../Zotlabs/Module/Wiki.php:376 ../../Zotlabs/Module/Profile_photo.php:465 +#: ../../Zotlabs/Module/Cover_photo.php:366 +#: ../../addon/gitwiki/Mod_Gitwiki.php:268 ../../include/conversation.php:1387 +#: ../../include/conversation.php:1434 msgid "OK" msgstr "" @@ -5047,7 +5119,7 @@ msgstr "" msgid "System layout" msgstr "" -#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:248 +#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 #: ../../include/conversation.php:1092 msgid "Poke" msgstr "" @@ -5076,97 +5148,97 @@ msgstr "" msgid "Make this post private" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Profile_photo.php:66 #: ../../Zotlabs/Module/Cover_photo.php:56 msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:240 +#: ../../Zotlabs/Module/Profile_photo.php:120 +#: ../../Zotlabs/Module/Profile_photo.php:248 #: ../../include/photo/photo_driver.php:740 msgid "Profile Photos" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:137 +#: ../../Zotlabs/Module/Profile_photo.php:142 #: ../../Zotlabs/Module/Cover_photo.php:159 msgid "Image resize failed." msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:218 #: ../../addon/openclipatar/openclipatar.php:298 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:217 +#: ../../Zotlabs/Module/Profile_photo.php:225 #: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 msgid "Unable to process image" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:252 +#: ../../Zotlabs/Module/Profile_photo.php:260 #: ../../Zotlabs/Module/Cover_photo.php:197 msgid "Image upload failed." msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:271 +#: ../../Zotlabs/Module/Profile_photo.php:279 #: ../../Zotlabs/Module/Cover_photo.php:214 msgid "Unable to process image." msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:332 -#: ../../Zotlabs/Module/Profile_photo.php:379 +#: ../../Zotlabs/Module/Profile_photo.php:343 +#: ../../Zotlabs/Module/Profile_photo.php:390 #: ../../Zotlabs/Module/Cover_photo.php:307 #: ../../Zotlabs/Module/Cover_photo.php:322 msgid "Photo not available." msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:434 +#: ../../Zotlabs/Module/Profile_photo.php:455 #: ../../Zotlabs/Module/Cover_photo.php:358 msgid "Upload File:" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:435 +#: ../../Zotlabs/Module/Profile_photo.php:456 #: ../../Zotlabs/Module/Cover_photo.php:359 msgid "Select a profile:" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:436 +#: ../../Zotlabs/Module/Profile_photo.php:457 msgid "Use Photo for Profile" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:436 -msgid "Upload Profile Photo" +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Change Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:437 -#: ../../addon/openclipatar/openclipatar.php:182 -#: ../../addon/openclipatar/openclipatar.php:194 +#: ../../Zotlabs/Module/Profile_photo.php:458 msgid "Use" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:443 -#: ../../Zotlabs/Module/Cover_photo.php:365 -msgid "skip this step" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:443 -#: ../../Zotlabs/Module/Cover_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "" - #: ../../Zotlabs/Module/Profile_photo.php:462 -#: ../../Zotlabs/Module/Cover_photo.php:381 +#: ../../Zotlabs/Module/Profile_photo.php:463 +#: ../../Zotlabs/Module/Cover_photo.php:363 +#: ../../Zotlabs/Module/Cover_photo.php:364 +msgid "Use a photo from your albums" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:467 +#: ../../Zotlabs/Module/Cover_photo.php:369 +msgid "Select existing photo" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:486 +#: ../../Zotlabs/Module/Cover_photo.php:386 msgid "Crop Image" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:463 -#: ../../Zotlabs/Module/Cover_photo.php:382 +#: ../../Zotlabs/Module/Profile_photo.php:487 +#: ../../Zotlabs/Module/Cover_photo.php:387 msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:465 -#: ../../Zotlabs/Module/Cover_photo.php:384 +#: ../../Zotlabs/Module/Profile_photo.php:489 +#: ../../Zotlabs/Module/Cover_photo.php:389 msgid "Done Editing" msgstr "" @@ -5178,65 +5250,65 @@ msgstr "" msgid "Online" msgstr "" -#: ../../Zotlabs/Module/Item.php:193 +#: ../../Zotlabs/Module/Item.php:194 msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Item.php:475 +#: ../../Zotlabs/Module/Item.php:476 msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Item.php:853 +#: ../../Zotlabs/Module/Item.php:867 msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Item.php:998 +#: ../../Zotlabs/Module/Item.php:1012 msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Item.php:1034 +#: ../../Zotlabs/Module/Item.php:1048 msgid "Your comment is awaiting approval." msgstr "" -#: ../../Zotlabs/Module/Item.php:1139 +#: ../../Zotlabs/Module/Item.php:1153 msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Item.php:1168 +#: ../../Zotlabs/Module/Item.php:1182 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Item.php:1175 +#: ../../Zotlabs/Module/Item.php:1189 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../Zotlabs/Module/Ping.php:311 +#: ../../Zotlabs/Module/Ping.php:320 msgid "sent you a private message" msgstr "" -#: ../../Zotlabs/Module/Ping.php:360 +#: ../../Zotlabs/Module/Ping.php:372 msgid "added your channel" msgstr "" -#: ../../Zotlabs/Module/Ping.php:384 +#: ../../Zotlabs/Module/Ping.php:396 msgid "requires approval" msgstr "" -#: ../../Zotlabs/Module/Ping.php:394 +#: ../../Zotlabs/Module/Ping.php:406 msgid "g A l F d" msgstr "" -#: ../../Zotlabs/Module/Ping.php:412 +#: ../../Zotlabs/Module/Ping.php:424 msgid "[today]" msgstr "" -#: ../../Zotlabs/Module/Ping.php:421 +#: ../../Zotlabs/Module/Ping.php:433 msgid "posted an event" msgstr "" -#: ../../Zotlabs/Module/Ping.php:454 +#: ../../Zotlabs/Module/Ping.php:466 msgid "shared a file with you" msgstr "" @@ -5246,7 +5318,7 @@ msgstr "" #: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 #: ../../Zotlabs/Module/Display.php:133 -#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:168 +#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 #: ../../include/help.php:81 msgid "Page not found." msgstr "" @@ -5299,9 +5371,9 @@ msgstr "" msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:241 +#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 #: ../../addon/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:1032 ../../include/nav.php:148 +#: ../../include/conversation.php:1032 ../../include/nav.php:114 msgid "View Profile" msgstr "" @@ -5411,15 +5483,15 @@ msgstr "" msgid "Open Set Affinity section by default" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:26 +#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 msgid "Me" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:27 +#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 msgid "Family" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:29 +#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 msgid "Acquaintances" msgstr "" @@ -5451,119 +5523,124 @@ msgstr "" msgid "Set Affinity & Profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:855 +#: ../../Zotlabs/Module/Connedit.php:838 msgid "This connection is unreachable from this location." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:856 +#: ../../Zotlabs/Module/Connedit.php:839 msgid "This connection may be unreachable from other channel locations." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:858 +#: ../../Zotlabs/Module/Connedit.php:841 msgid "Location independence is not supported by their network." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:864 +#: ../../Zotlabs/Module/Connedit.php:847 msgid "" "This connection is unreachable from this location. Location independence is " "not supported by their network." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:867 ../../Zotlabs/Module/Defperms.php:238 +#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 #: ../../Zotlabs/Widget/Settings_menu.php:109 msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:867 ../../include/items.php:4134 +#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4164 #, php-format msgid "Connection: %s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:868 ../../Zotlabs/Module/Defperms.php:239 +#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 msgid "Apply these permissions automatically" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:868 +#: ../../Zotlabs/Module/Connedit.php:851 msgid "Connection requests will be approved without your interaction" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:869 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 msgid "Permission role" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Defperms.php:241 +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 +msgid "Loading" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 msgid "Add permission role" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:877 +#: ../../Zotlabs/Module/Connedit.php:860 msgid "This connection's primary address is" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:878 +#: ../../Zotlabs/Module/Connedit.php:861 msgid "Available locations:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:883 ../../Zotlabs/Module/Defperms.php:245 +#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:884 +#: ../../Zotlabs/Module/Connedit.php:867 msgid "Connection Tools" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:886 +#: ../../Zotlabs/Module/Connedit.php:869 msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:887 ../../Zotlabs/Module/Rate.php:155 +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:888 +#: ../../Zotlabs/Module/Connedit.php:871 msgid "Slide to adjust your rating" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:889 ../../Zotlabs/Module/Connedit.php:894 +#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 msgid "Optionally explain your rating" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:891 +#: ../../Zotlabs/Module/Connedit.php:874 msgid "Custom Filter" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:892 +#: ../../Zotlabs/Module/Connedit.php:875 msgid "Only import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:892 ../../Zotlabs/Module/Connedit.php:893 +#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:893 +#: ../../Zotlabs/Module/Connedit.php:876 msgid "Do not import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:895 +#: ../../Zotlabs/Module/Connedit.php:878 msgid "This information is public!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:900 +#: ../../Zotlabs/Module/Connedit.php:883 msgid "Connection Pending Approval" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:905 +#: ../../Zotlabs/Module/Connedit.php:888 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:912 +#: ../../Zotlabs/Module/Connedit.php:895 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher priority than " @@ -5571,11 +5648,11 @@ msgid "" "any impact unless the inherited setting changes." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:913 +#: ../../Zotlabs/Module/Connedit.php:896 msgid "Last update:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:922 +#: ../../Zotlabs/Module/Connedit.php:904 msgid "Details" msgstr "" @@ -5609,7 +5686,7 @@ msgid "Please enter a link URL:" msgstr "" #: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:768 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:764 #: ../../include/conversation.php:1432 msgid "Encrypt text" msgstr "" @@ -5643,14 +5720,14 @@ msgstr "" msgid "min" msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:242 -#: ../../include/conversation.php:1831 ../../include/nav.php:433 +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 +#: ../../include/conversation.php:1831 ../../include/nav.php:401 msgid "Photos" msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:237 -#: ../../Zotlabs/Storage/Browser.php:269 ../../include/conversation.php:1839 -#: ../../include/nav.php:441 +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1839 +#: ../../include/nav.php:409 msgid "Files" msgstr "" @@ -5690,7 +5767,7 @@ msgstr "" msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2289 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2403 msgid "Menus" msgstr "" @@ -5742,12 +5819,12 @@ msgstr "" msgid "Allow bookmarks" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2290 +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2404 msgid "Layouts" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:245 -#: ../../include/nav.php:208 ../../include/nav.php:312 +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 +#: ../../include/nav.php:176 ../../include/nav.php:280 #: ../../include/help.php:68 ../../include/help.php:74 msgid "Help" msgstr "" @@ -5765,20 +5842,49 @@ msgid "Download PDL file" msgstr "" #: ../../Zotlabs/Module/Cloud.php:114 +msgid "Please refresh page" +msgstr "" + +#: ../../Zotlabs/Module/Cloud.php:117 msgid "Unknown error" msgstr "" +#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "" + #: ../../Zotlabs/Module/Tagger.php:48 msgid "Post not found." msgstr "" #: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 -#: ../../include/bbcode.php:335 +#: ../../include/bbcode.php:339 msgid "post" msgstr "" #: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 -#: ../../include/text.php:1946 +#: ../../include/text.php:2012 msgid "comment" msgstr "" @@ -5826,7 +5932,7 @@ msgid "Could not create privacy group." msgstr "" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 -#: ../../include/items.php:4101 +#: ../../include/items.php:4131 msgid "Privacy group not found." msgstr "" @@ -6001,7 +6107,8 @@ msgstr "" msgid "Relation" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:739 ../../include/datetime.php:58 +#: ../../Zotlabs/Module/Profiles.php:739 ../../Zotlabs/Widget/Newmember.php:53 +#: ../../include/datetime.php:58 msgid "Miscellaneous" msgstr "" @@ -6143,10 +6250,73 @@ msgid "Profile Image" msgstr "" #: ../../Zotlabs/Module/Profiles.php:833 ../../include/channel.php:1297 -#: ../../include/nav.php:151 +#: ../../include/nav.php:117 msgid "Edit Profiles" msgstr "" +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:43 +msgid "View friend suggestions" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:39 ../../Zotlabs/Widget/Newmember.php:42 +msgid "View the channel directory" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "" + +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "" + #: ../../Zotlabs/Module/Editwebpage.php:139 msgid "Page link" msgstr "" @@ -6159,8 +6329,8 @@ msgstr "" msgid "Create a new channel" msgstr "" -#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:234 -#: ../../include/nav.php:136 ../../include/nav.php:222 +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 +#: ../../include/nav.php:102 ../../include/nav.php:190 msgid "Channel Manager" msgstr "" @@ -6194,7 +6364,13 @@ msgstr "" msgid "Delegated Channel" msgstr "" -#: ../../Zotlabs/Module/Cards.php:95 +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:181 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1890 +#: ../../include/features.php:114 ../../include/nav.php:458 +msgid "Cards" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:99 msgid "Add Card" msgstr "" @@ -6202,45 +6378,45 @@ msgstr "" msgid "This directory server requires an access token" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Siteinfo.php:18 msgid "About this site" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:20 +#: ../../Zotlabs/Module/Siteinfo.php:19 msgid "Site Name" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:24 +#: ../../Zotlabs/Module/Siteinfo.php:23 msgid "Administrator" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:26 ../../Zotlabs/Module/Register.php:229 +#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 msgid "Terms of Service" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:27 +#: ../../Zotlabs/Module/Siteinfo.php:26 msgid "Software and Project information" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:28 +#: ../../Zotlabs/Module/Siteinfo.php:27 msgid "This site is powered by $Projectname" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:29 +#: ../../Zotlabs/Module/Siteinfo.php:28 msgid "" "Federated and decentralised networking and identity services provided by Zot" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:31 +#: ../../Zotlabs/Module/Siteinfo.php:30 #, php-format msgid "Version %s" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:32 +#: ../../Zotlabs/Module/Siteinfo.php:31 msgid "Project homepage" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:33 +#: ../../Zotlabs/Module/Siteinfo.php:32 msgid "Developer homepage" msgstr "" @@ -6281,8 +6457,8 @@ msgstr "" msgid "Export selected" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:238 -#: ../../include/conversation.php:1912 ../../include/nav.php:513 +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 +#: ../../include/conversation.php:1912 ../../include/nav.php:481 msgid "Webpages" msgstr "" @@ -6442,7 +6618,7 @@ msgid "*" msgstr "" #: ../../Zotlabs/Module/Sources.php:96 -#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:228 +#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:274 msgid "Channel Sources" msgstr "" @@ -6498,88 +6674,88 @@ msgstr "" msgid "Unable to remove source." msgstr "" -#: ../../Zotlabs/Module/Like.php:22 +#: ../../Zotlabs/Module/Like.php:54 msgid "Like/Dislike" msgstr "" -#: ../../Zotlabs/Module/Like.php:27 +#: ../../Zotlabs/Module/Like.php:59 msgid "This action is restricted to members." msgstr "" -#: ../../Zotlabs/Module/Like.php:28 +#: ../../Zotlabs/Module/Like.php:60 msgid "" "Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "" -#: ../../Zotlabs/Module/Like.php:108 ../../Zotlabs/Module/Like.php:134 -#: ../../Zotlabs/Module/Like.php:172 +#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 +#: ../../Zotlabs/Module/Like.php:173 msgid "Invalid request." msgstr "" -#: ../../Zotlabs/Module/Like.php:120 ../../include/conversation.php:122 +#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 msgid "channel" msgstr "" -#: ../../Zotlabs/Module/Like.php:149 +#: ../../Zotlabs/Module/Like.php:150 msgid "thing" msgstr "" -#: ../../Zotlabs/Module/Like.php:195 +#: ../../Zotlabs/Module/Like.php:196 msgid "Channel unavailable." msgstr "" -#: ../../Zotlabs/Module/Like.php:243 +#: ../../Zotlabs/Module/Like.php:244 msgid "Previous action reversed." msgstr "" -#: ../../Zotlabs/Module/Like.php:435 ../../addon/diaspora/Receiver.php:1462 -#: ../../addon/pubcrawl/as.php:1330 ../../include/conversation.php:160 +#: ../../Zotlabs/Module/Like.php:436 ../../addon/diaspora/Receiver.php:1547 +#: ../../addon/pubcrawl/as.php:1394 ../../include/conversation.php:160 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:437 ../../addon/pubcrawl/as.php:1332 +#: ../../Zotlabs/Module/Like.php:438 ../../addon/pubcrawl/as.php:1396 #: ../../include/conversation.php:163 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:439 +#: ../../Zotlabs/Module/Like.php:440 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:441 +#: ../../Zotlabs/Module/Like.php:442 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:443 +#: ../../Zotlabs/Module/Like.php:444 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:445 +#: ../../Zotlabs/Module/Like.php:446 ../../addon/diaspora/Receiver.php:2031 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:447 +#: ../../Zotlabs/Module/Like.php:448 ../../addon/diaspora/Receiver.php:2033 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:449 +#: ../../Zotlabs/Module/Like.php:450 ../../addon/diaspora/Receiver.php:2035 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:561 +#: ../../Zotlabs/Module/Like.php:562 msgid "Action completed." msgstr "" -#: ../../Zotlabs/Module/Like.php:562 +#: ../../Zotlabs/Module/Like.php:563 msgid "Thank you." msgstr "" @@ -6602,12 +6778,12 @@ msgstr "" msgid "Homepage: " msgstr "" -#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1564 +#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1565 msgid "Age:" msgstr "" #: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1392 -#: ../../include/event.php:53 ../../include/event.php:85 +#: ../../include/event.php:54 ../../include/event.php:86 msgid "Location:" msgstr "" @@ -6615,11 +6791,11 @@ msgstr "" msgid "Description:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:330 ../../include/channel.php:1580 +#: ../../Zotlabs/Module/Directory.php:330 ../../include/channel.php:1581 msgid "Hometown:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:332 ../../include/channel.php:1588 +#: ../../Zotlabs/Module/Directory.php:332 ../../include/channel.php:1589 msgid "About:" msgstr "" @@ -6859,19 +7035,19 @@ msgstr "" msgid "Rate" msgstr "" -#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 msgid "webpage" msgstr "" -#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:269 +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:273 msgid "block" msgstr "" -#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:266 +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 msgid "layout" msgstr "" -#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:272 +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 msgid "menu" msgstr "" @@ -6931,20 +7107,20 @@ msgstr "" msgid "Passwords do not match." msgstr "" -#: ../../Zotlabs/Module/Register.php:127 ../../Zotlabs/Module/Register.php:137 +#: ../../Zotlabs/Module/Register.php:132 +msgid "Registration successful. Continue to create your first channel..." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:135 msgid "" "Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../Zotlabs/Module/Register.php:135 -msgid "Registration successful. Continue to create your first channel..." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:144 +#: ../../Zotlabs/Module/Register.php:142 msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../Zotlabs/Module/Register.php:147 +#: ../../Zotlabs/Module/Register.php:145 msgid "Your registration can not be processed." msgstr "" @@ -6966,53 +7142,53 @@ msgid "" "Please try again tomorrow." msgstr "" -#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/Register.php:238 #, php-format msgid "I accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Register.php:241 +#: ../../Zotlabs/Module/Register.php:245 #, php-format msgid "I am over %s years of age and accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Register.php:245 +#: ../../Zotlabs/Module/Register.php:250 msgid "Your email address" msgstr "" -#: ../../Zotlabs/Module/Register.php:246 +#: ../../Zotlabs/Module/Register.php:251 msgid "Choose a password" msgstr "" -#: ../../Zotlabs/Module/Register.php:247 +#: ../../Zotlabs/Module/Register.php:252 msgid "Please re-enter your password" msgstr "" -#: ../../Zotlabs/Module/Register.php:248 +#: ../../Zotlabs/Module/Register.php:253 msgid "Please enter your invitation code" msgstr "" -#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Register.php:258 msgid "no" msgstr "" -#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Register.php:258 msgid "yes" msgstr "" -#: ../../Zotlabs/Module/Register.php:268 +#: ../../Zotlabs/Module/Register.php:274 msgid "Membership on this site is by invitation only." msgstr "" -#: ../../Zotlabs/Module/Register.php:280 ../../boot.php:1645 -#: ../../include/nav.php:196 +#: ../../Zotlabs/Module/Register.php:286 ../../boot.php:1563 +#: ../../include/nav.php:164 msgid "Register" msgstr "" -#: ../../Zotlabs/Module/Register.php:281 +#: ../../Zotlabs/Module/Register.php:287 msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." +"This site requires email verification. After completing this form, please " +"check your email for further instructions." msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:136 @@ -7020,35 +7196,35 @@ msgstr "" msgid "Cover Photos" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4478 +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4508 msgid "female" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4479 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4509 #, php-format msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4480 +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4510 msgid "male" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4481 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4511 #, php-format msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4483 +#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4513 #, php-format msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2053 +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2059 msgid "cover photo" msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:360 -msgid "Upload Cover Photo" +msgid "Change Cover Photo" msgstr "" #: ../../Zotlabs/Module/Help.php:23 @@ -7056,7 +7232,7 @@ msgid "Documentation Search" msgstr "" #: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1821 -#: ../../include/nav.php:423 +#: ../../include/nav.php:391 msgid "About" msgstr "" @@ -7080,11 +7256,11 @@ msgstr "" msgid "Contents" msgstr "" -#: ../../Zotlabs/Module/Display.php:349 +#: ../../Zotlabs/Module/Display.php:351 msgid "Article" msgstr "" -#: ../../Zotlabs/Module/Display.php:401 +#: ../../Zotlabs/Module/Display.php:403 msgid "Item has been removed." msgstr "" @@ -7100,44 +7276,44 @@ msgstr "" msgid "Select a tag to remove: " msgstr "" -#: ../../Zotlabs/Module/Network.php:97 +#: ../../Zotlabs/Module/Network.php:100 msgid "No such group" msgstr "" -#: ../../Zotlabs/Module/Network.php:137 +#: ../../Zotlabs/Module/Network.php:142 msgid "No such channel" msgstr "" -#: ../../Zotlabs/Module/Network.php:142 +#: ../../Zotlabs/Module/Network.php:147 msgid "forum" msgstr "" -#: ../../Zotlabs/Module/Network.php:154 +#: ../../Zotlabs/Module/Network.php:159 msgid "Search Results For:" msgstr "" -#: ../../Zotlabs/Module/Network.php:222 +#: ../../Zotlabs/Module/Network.php:230 msgid "Privacy group is empty" msgstr "" -#: ../../Zotlabs/Module/Network.php:231 +#: ../../Zotlabs/Module/Network.php:240 msgid "Privacy group: " msgstr "" -#: ../../Zotlabs/Module/Network.php:257 +#: ../../Zotlabs/Module/Network.php:268 msgid "Invalid connection." msgstr "" -#: ../../Zotlabs/Module/Network.php:276 ../../addon/redred/redred.php:65 +#: ../../Zotlabs/Module/Network.php:289 ../../addon/redred/redred.php:65 msgid "Invalid channel." msgstr "" -#: ../../Zotlabs/Module/Acl.php:358 +#: ../../Zotlabs/Module/Acl.php:361 msgid "network" msgstr "" #: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../addon/opensearch/opensearch.php:42 +#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 msgid "$Projectname" msgstr "" @@ -7187,7 +7363,7 @@ msgid "Show URL to this file" msgstr "" #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 +#: ../../Zotlabs/Storage/Browser.php:397 msgid "Show in your contacts shared folder" msgstr "" @@ -7203,16 +7379,24 @@ msgstr "" msgid "View Common Connections" msgstr "" +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "" + #: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:83 #, php-format msgid "Visit %s's profile [%s]" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:113 msgid "View Connections" msgstr "" @@ -7321,7 +7505,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1673 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1591 msgid "Password Reset" msgstr "" @@ -7395,143 +7579,143 @@ msgstr "" msgid "5. Wizard - I probably know more than you do" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:225 +#: ../../Zotlabs/Lib/Apps.php:231 msgid "Site Admin" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:226 ../../addon/buglink/buglink.php:16 +#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 msgid "Report Bug" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:227 +#: ../../Zotlabs/Lib/Apps.php:233 msgid "View Bookmarks" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:228 +#: ../../Zotlabs/Lib/Apps.php:234 msgid "My Chatrooms" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:230 +#: ../../Zotlabs/Lib/Apps.php:236 msgid "Firefox Share" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:231 +#: ../../Zotlabs/Lib/Apps.php:237 msgid "Remote Diagnostics" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:232 ../../include/features.php:352 +#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:390 msgid "Suggest Channels" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:233 ../../boot.php:1664 ../../include/nav.php:160 -#: ../../include/nav.php:164 +#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1582 ../../include/nav.php:126 +#: ../../include/nav.php:130 msgid "Login" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/nav.php:105 +#: ../../Zotlabs/Lib/Apps.php:241 msgid "Activity" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:239 ../../include/conversation.php:1928 -#: ../../include/features.php:95 ../../include/nav.php:529 +#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1928 +#: ../../include/features.php:87 ../../include/nav.php:497 msgid "Wiki" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:240 ../../include/nav.php:109 +#: ../../Zotlabs/Lib/Apps.php:246 msgid "Channel Home" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:243 ../../include/conversation.php:1850 -#: ../../include/conversation.php:1853 ../../include/nav.php:131 +#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1850 +#: ../../include/conversation.php:1853 msgid "Events" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:244 +#: ../../Zotlabs/Lib/Apps.php:250 msgid "Directory" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:246 ../../include/nav.php:123 +#: ../../Zotlabs/Lib/Apps.php:252 msgid "Mail" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:249 +#: ../../Zotlabs/Lib/Apps.php:255 msgid "Chat" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:251 +#: ../../Zotlabs/Lib/Apps.php:257 msgid "Probe" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:252 +#: ../../Zotlabs/Lib/Apps.php:258 msgid "Suggest" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:253 +#: ../../Zotlabs/Lib/Apps.php:259 msgid "Random Channel" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:254 +#: ../../Zotlabs/Lib/Apps.php:260 msgid "Invite" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:255 ../../Zotlabs/Widget/Admin.php:26 +#: ../../Zotlabs/Lib/Apps.php:261 ../../Zotlabs/Widget/Admin.php:26 msgid "Features" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:256 ../../addon/openid/MysqlProvider.php:69 +#: ../../Zotlabs/Lib/Apps.php:262 ../../addon/openid/MysqlProvider.php:69 msgid "Language" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:257 +#: ../../Zotlabs/Lib/Apps.php:263 msgid "Post" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:258 ../../addon/openid/MysqlProvider.php:58 +#: ../../Zotlabs/Lib/Apps.php:264 ../../addon/openid/MysqlProvider.php:58 #: ../../addon/openid/MysqlProvider.php:59 #: ../../addon/openid/MysqlProvider.php:60 msgid "Profile Photo" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:397 +#: ../../Zotlabs/Lib/Apps.php:407 msgid "Purchase" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:401 +#: ../../Zotlabs/Lib/Apps.php:411 msgid "Undelete" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:409 +#: ../../Zotlabs/Lib/Apps.php:419 msgid "Add to app-tray" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:410 +#: ../../Zotlabs/Lib/Apps.php:420 msgid "Remove from app-tray" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:411 +#: ../../Zotlabs/Lib/Apps.php:421 msgid "Pin to navbar" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:412 +#: ../../Zotlabs/Lib/Apps.php:422 msgid "Unpin from navbar" msgstr "" -#: ../../Zotlabs/Lib/Permcat.php:58 +#: ../../Zotlabs/Lib/Permcat.php:82 msgctxt "permcat" msgid "default" msgstr "" -#: ../../Zotlabs/Lib/Permcat.php:96 +#: ../../Zotlabs/Lib/Permcat.php:133 msgctxt "permcat" msgid "follower" msgstr "" -#: ../../Zotlabs/Lib/Permcat.php:100 +#: ../../Zotlabs/Lib/Permcat.php:137 msgctxt "permcat" msgid "contributor" msgstr "" -#: ../../Zotlabs/Lib/Permcat.php:104 +#: ../../Zotlabs/Lib/Permcat.php:141 msgctxt "permcat" msgid "publisher" msgstr "" @@ -7600,18 +7784,18 @@ msgid "Message" msgstr "" #: ../../Zotlabs/Lib/NativeWikiPage.php:597 -#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:674 -#: ../../include/bbcode.php:822 +#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:706 +#: ../../include/bbcode.php:865 msgid "Different viewers will see this text differently" msgstr "" #: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:128 +#: ../../include/acl_selectors.php:33 msgid "Visible to your default audience" msgstr "" #: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:201 +#: ../../include/acl_selectors.php:106 msgid "Only me" msgstr "" @@ -7692,8 +7876,8 @@ msgstr "" msgid "$Projectname Notification" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:283 -#: ../../addon/diaspora/util.php:296 ../../addon/diaspora/p.php:48 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 +#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 msgid "$projectname" msgstr "" @@ -7706,218 +7890,257 @@ msgstr "" msgid "%s Administrator" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:116 +#: ../../Zotlabs/Lib/Enotify.php:66 #, php-format -msgid "%s " +msgid "This email was sent by %1$s at %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." msgstr "" #: ../../Zotlabs/Lib/Enotify.php:120 #, php-format -msgid "[$Projectname:Notify] New mail received at %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:122 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:123 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:123 -msgid "a private message" +msgid "%s " msgstr "" #: ../../Zotlabs/Lib/Enotify.php:124 #, php-format +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:126 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:127 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:127 +msgid "a private message" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:128 +#, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:184 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +#: ../../Zotlabs/Lib/Enotify.php:141 +msgid "commented on" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +#: ../../Zotlabs/Lib/Enotify.php:152 +msgid "liked" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:201 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "disliked" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:213 +#: ../../Zotlabs/Lib/Enotify.php:198 +#, php-format +msgid "%1$s, %2$s %3$s [zrl=%4$s]a %5$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:207 +#, php-format +msgid "%1$s, %2$s %3$s [zrl=%4$s]%5$s's %6$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:217 +#, php-format +msgid "%1$s, %2$s %3$s [zrl=%4$s]your %5$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:230 #, php-format msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:215 +#: ../../Zotlabs/Lib/Enotify.php:232 #, php-format msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:216 +#: ../../Zotlabs/Lib/Enotify.php:233 #, php-format msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:219 ../../Zotlabs/Lib/Enotify.php:301 -#: ../../Zotlabs/Lib/Enotify.php:318 ../../Zotlabs/Lib/Enotify.php:344 -#: ../../Zotlabs/Lib/Enotify.php:362 ../../Zotlabs/Lib/Enotify.php:376 +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:318 +#: ../../Zotlabs/Lib/Enotify.php:335 ../../Zotlabs/Lib/Enotify.php:361 +#: ../../Zotlabs/Lib/Enotify.php:379 ../../Zotlabs/Lib/Enotify.php:393 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:223 ../../Zotlabs/Lib/Enotify.php:224 +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 #, php-format msgid "Please visit %s to approve or reject this comment." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:282 +#: ../../Zotlabs/Lib/Enotify.php:299 #, php-format msgid "%1$s, %2$s liked [zrl=%3$s]your %4$s[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:297 +#: ../../Zotlabs/Lib/Enotify.php:314 #, php-format msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:298 +#: ../../Zotlabs/Lib/Enotify.php:315 #, php-format msgid "%1$s, %2$s liked an item/conversation you created." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:309 +#: ../../Zotlabs/Lib/Enotify.php:326 #, php-format msgid "[$Projectname:Notify] %s posted to your profile wall" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:311 +#: ../../Zotlabs/Lib/Enotify.php:328 #, php-format msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:313 +#: ../../Zotlabs/Lib/Enotify.php:330 #, php-format msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:337 +#: ../../Zotlabs/Lib/Enotify.php:354 #, php-format msgid "[$Projectname:Notify] %s tagged you" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:338 +#: ../../Zotlabs/Lib/Enotify.php:355 #, php-format msgid "%1$s, %2$s tagged you at %3$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:339 +#: ../../Zotlabs/Lib/Enotify.php:356 #, php-format msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:351 +#: ../../Zotlabs/Lib/Enotify.php:368 #, php-format msgid "[$Projectname:Notify] %1$s poked you" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:352 +#: ../../Zotlabs/Lib/Enotify.php:369 #, php-format msgid "%1$s, %2$s poked you at %3$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:353 +#: ../../Zotlabs/Lib/Enotify.php:370 #, php-format msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:369 +#: ../../Zotlabs/Lib/Enotify.php:386 #, php-format msgid "[$Projectname:Notify] %s tagged your post" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:370 +#: ../../Zotlabs/Lib/Enotify.php:387 #, php-format msgid "%1$s, %2$s tagged your post at %3$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:371 +#: ../../Zotlabs/Lib/Enotify.php:388 #, php-format msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:383 +#: ../../Zotlabs/Lib/Enotify.php:400 msgid "[$Projectname:Notify] Introduction received" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:384 +#: ../../Zotlabs/Lib/Enotify.php:401 #, php-format msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:385 +#: ../../Zotlabs/Lib/Enotify.php:402 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:389 ../../Zotlabs/Lib/Enotify.php:408 +#: ../../Zotlabs/Lib/Enotify.php:406 ../../Zotlabs/Lib/Enotify.php:425 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:391 +#: ../../Zotlabs/Lib/Enotify.php:408 #, php-format msgid "Please visit %s to approve or reject the connection request." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:398 +#: ../../Zotlabs/Lib/Enotify.php:415 msgid "[$Projectname:Notify] Friend suggestion received" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:399 +#: ../../Zotlabs/Lib/Enotify.php:416 #, php-format msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:400 +#: ../../Zotlabs/Lib/Enotify.php:417 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:406 +#: ../../Zotlabs/Lib/Enotify.php:423 msgid "Name:" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:407 +#: ../../Zotlabs/Lib/Enotify.php:424 msgid "Photo:" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:410 +#: ../../Zotlabs/Lib/Enotify.php:427 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:629 +#: ../../Zotlabs/Lib/Enotify.php:647 msgid "[$Projectname:Notify]" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:793 +#: ../../Zotlabs/Lib/Enotify.php:815 msgid "created a new post" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:794 +#: ../../Zotlabs/Lib/Enotify.php:816 #, php-format msgid "commented on %s's post" msgstr "" +#: ../../Zotlabs/Lib/Enotify.php:823 +#, php-format +msgid "edited a post dated %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:827 +#, php-format +msgid "edited a comment dated %s" +msgstr "" + #: ../../Zotlabs/Lib/NativeWiki.php:151 msgid "Wiki updated successfully" msgstr "" @@ -7926,12 +8149,12 @@ msgstr "" msgid "Wiki files deleted successfully" msgstr "" -#: ../../Zotlabs/Lib/DB_Upgrade.php:95 +#: ../../Zotlabs/Lib/DB_Upgrade.php:83 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../Zotlabs/Lib/DB_Upgrade.php:101 +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 #, php-format msgid "Update %s failed. See error logs." msgstr "" @@ -7996,11 +8219,11 @@ msgstr "" msgid "Add Tag" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:506 +#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:510 msgid "like" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:507 +#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:511 msgid "dislike" msgstr "" @@ -8093,51 +8316,51 @@ msgstr "" msgid "%s show all" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1377 +#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/conversation.php:1377 msgid "Bold" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:756 ../../include/conversation.php:1378 +#: ../../Zotlabs/Lib/ThreadItem.php:752 ../../include/conversation.php:1378 msgid "Italic" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:757 ../../include/conversation.php:1379 +#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1379 msgid "Underline" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:758 ../../include/conversation.php:1380 +#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1380 msgid "Quote" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:759 ../../include/conversation.php:1381 +#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1381 msgid "Code" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:760 +#: ../../Zotlabs/Lib/ThreadItem.php:756 msgid "Image" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:761 +#: ../../Zotlabs/Lib/ThreadItem.php:757 msgid "Attach File" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:762 +#: ../../Zotlabs/Lib/ThreadItem.php:758 msgid "Insert Link" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:763 +#: ../../Zotlabs/Lib/ThreadItem.php:759 msgid "Video" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:773 +#: ../../Zotlabs/Lib/ThreadItem.php:769 msgid "Your full name (required)" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:774 +#: ../../Zotlabs/Lib/ThreadItem.php:770 msgid "Your email address (required)" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:775 +#: ../../Zotlabs/Lib/ThreadItem.php:771 msgid "Your website URL (optional)" msgstr "" @@ -8153,11 +8376,11 @@ msgstr "" msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:284 +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 msgid "parent" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2707 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2821 msgid "Collection" msgstr "" @@ -8169,8 +8392,8 @@ msgstr "" msgid "Addressbook" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:452 -#: ../../include/nav.php:455 +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 +#: ../../include/nav.php:423 msgid "Calendar" msgstr "" @@ -8182,41 +8405,41 @@ msgstr "" msgid "Schedule Outbox" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:270 +#: ../../Zotlabs/Storage/Browser.php:273 msgid "Total" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:272 +#: ../../Zotlabs/Storage/Browser.php:275 msgid "Shared" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:350 +#: ../../Zotlabs/Storage/Browser.php:353 #, php-format msgid "You are using %1$s of your available file storage." msgstr "" -#: ../../Zotlabs/Storage/Browser.php:355 +#: ../../Zotlabs/Storage/Browser.php:358 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:366 +#: ../../Zotlabs/Storage/Browser.php:369 msgid "WARNING:" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:378 +#: ../../Zotlabs/Storage/Browser.php:381 msgid "Create new folder" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:380 +#: ../../Zotlabs/Storage/Browser.php:383 msgid "Upload file" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:393 +#: ../../Zotlabs/Storage/Browser.php:396 msgid "Drop files here to immediately upload" msgstr "" -#: ../../Zotlabs/Widget/Forums.php:99 +#: ../../Zotlabs/Widget/Forums.php:100 msgid "Forums" msgstr "" @@ -8299,8 +8522,8 @@ msgstr "" #: ../../Zotlabs/Widget/Appcategories.php:40 #: ../../Zotlabs/Widget/Tagcloud.php:25 ../../include/contact_widgets.php:97 #: ../../include/contact_widgets.php:141 ../../include/contact_widgets.php:186 -#: ../../include/taxonomy.php:337 ../../include/taxonomy.php:419 -#: ../../include/taxonomy.php:439 ../../include/taxonomy.php:460 +#: ../../include/taxonomy.php:344 ../../include/taxonomy.php:426 +#: ../../include/taxonomy.php:446 ../../include/taxonomy.php:467 msgid "Categories" msgstr "" @@ -8342,21 +8565,21 @@ msgstr "" msgid "Combined View" msgstr "" -#: ../../Zotlabs/Widget/Mailmenu.php:20 ../../include/nav.php:126 +#: ../../Zotlabs/Widget/Mailmenu.php:20 msgid "Inbox" msgstr "" -#: ../../Zotlabs/Widget/Mailmenu.php:25 ../../include/nav.php:127 +#: ../../Zotlabs/Widget/Mailmenu.php:25 msgid "Outbox" msgstr "" -#: ../../Zotlabs/Widget/Mailmenu.php:30 ../../include/nav.php:128 +#: ../../Zotlabs/Widget/Mailmenu.php:30 msgid "New Message" msgstr "" #: ../../Zotlabs/Widget/Chatroom_list.php:16 #: ../../include/conversation.php:1864 ../../include/conversation.php:1867 -#: ../../include/nav.php:466 ../../include/nav.php:469 +#: ../../include/nav.php:434 ../../include/nav.php:437 msgid "Chatrooms" msgstr "" @@ -8438,7 +8661,7 @@ msgstr "" msgid "Remove term" msgstr "" -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:316 +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:354 msgid "Saved Searches" msgstr "" @@ -8463,7 +8686,7 @@ msgstr "" msgid "Page name" msgstr "" -#: ../../Zotlabs/Widget/Affinity.php:49 +#: ../../Zotlabs/Widget/Affinity.php:45 msgid "Refresh" msgstr "" @@ -8480,7 +8703,7 @@ msgid "See more..." msgstr "" #: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:414 +#: ../../include/features.php:443 msgid "Saved Folders" msgstr "" @@ -8488,6 +8711,54 @@ msgstr "" msgid "Click to show more" msgstr "" +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "Profile Creation" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:35 +msgid "Upload profile photo" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:36 +msgid "Upload cover photo" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:37 ../../include/nav.php:119 +msgid "Edit your profile" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "Find and Connect with others" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:44 +msgid "Manage your connections" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "Communicate" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:49 +msgid "View your channel homepage" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:50 +msgid "View your network stream" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:56 +msgid "Documentation" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:67 +msgid "View public stream. Warning: not moderated" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:71 +msgid "New Member Links" +msgstr "" + #: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 msgid "Member registrations waiting for confirmation" msgstr "" @@ -8500,7 +8771,7 @@ msgstr "" msgid "DB updates" msgstr "" -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:231 +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 msgid "Admin" msgstr "" @@ -8521,7 +8792,7 @@ msgid "Additional features" msgstr "" #: ../../Zotlabs/Widget/Settings_menu.php:57 -msgid "Feature/Addon settings" +msgid "Addon settings" msgstr "" #: ../../Zotlabs/Widget/Settings_menu.php:63 @@ -8540,7 +8811,7 @@ msgstr "" msgid "Connected apps" msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:168 +#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:231 msgid "Permission Groups" msgstr "" @@ -8560,7 +8831,7 @@ msgstr "" msgid "New Network Activity Notifications" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:20 ../../include/nav.php:106 +#: ../../Zotlabs/Widget/Notifications.php:20 msgid "View your network activity" msgstr "" @@ -8569,161 +8840,163 @@ msgid "Mark all notifications read" msgstr "" #: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:44 -#: ../../Zotlabs/Widget/Notifications.php:139 +#: ../../Zotlabs/Widget/Notifications.php:45 +#: ../../Zotlabs/Widget/Notifications.php:141 msgid "Show new posts only" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:34 -msgid "New Home Activity" +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:142 +msgid "Filter by name" msgstr "" #: ../../Zotlabs/Widget/Notifications.php:35 +msgid "New Home Activity" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:36 msgid "New Home Activity Notifications" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:38 +#: ../../Zotlabs/Widget/Notifications.php:39 msgid "View your home activity" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:41 -#: ../../Zotlabs/Widget/Notifications.php:136 +#: ../../Zotlabs/Widget/Notifications.php:42 +#: ../../Zotlabs/Widget/Notifications.php:138 msgid "Mark all notifications seen" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:52 +#: ../../Zotlabs/Widget/Notifications.php:54 msgid "New Mails" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:53 +#: ../../Zotlabs/Widget/Notifications.php:55 msgid "New Mails Notifications" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:56 +#: ../../Zotlabs/Widget/Notifications.php:58 msgid "View your private mails" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:59 +#: ../../Zotlabs/Widget/Notifications.php:61 msgid "Mark all messages seen" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:67 +#: ../../Zotlabs/Widget/Notifications.php:69 msgid "New Events" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:68 +#: ../../Zotlabs/Widget/Notifications.php:70 msgid "New Events Notifications" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:71 ../../include/nav.php:132 +#: ../../Zotlabs/Widget/Notifications.php:73 msgid "View events" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:74 ../../include/nav.php:133 +#: ../../Zotlabs/Widget/Notifications.php:76 msgid "Mark all events seen" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:83 +#: ../../Zotlabs/Widget/Notifications.php:85 msgid "New Connections Notifications" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:86 +#: ../../Zotlabs/Widget/Notifications.php:88 msgid "View all connections" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:94 +#: ../../Zotlabs/Widget/Notifications.php:96 msgid "New Files" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:95 +#: ../../Zotlabs/Widget/Notifications.php:97 msgid "New Files Notifications" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:102 -#: ../../Zotlabs/Widget/Notifications.php:103 ../../include/nav.php:119 +#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Widget/Notifications.php:105 msgid "Notices" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:106 +#: ../../Zotlabs/Widget/Notifications.php:108 msgid "View all notices" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:109 +#: ../../Zotlabs/Widget/Notifications.php:111 msgid "Mark all notices seen" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:119 +#: ../../Zotlabs/Widget/Notifications.php:121 msgid "New Registrations" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:120 +#: ../../Zotlabs/Widget/Notifications.php:122 msgid "New Registrations Notifications" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:130 +#: ../../Zotlabs/Widget/Notifications.php:132 msgid "Public Stream Notifications" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:133 +#: ../../Zotlabs/Widget/Notifications.php:135 msgid "View the public stream" msgstr "" -#: ../../Zotlabs/Widget/Notifications.php:147 ../../include/nav.php:316 -msgid "Loading" +#: ../../Zotlabs/Widget/Notifications.php:150 +msgid "Sorry, you have got no notifications at the moment" msgstr "" #: ../../util/nconfig.php:34 msgid "Source channel not found." msgstr "" -#: ../../boot.php:1644 +#: ../../boot.php:1562 msgid "Create an account to access services and applications" msgstr "" -#: ../../boot.php:1663 ../../include/nav.php:145 ../../include/nav.php:174 -#: ../../include/nav.php:191 +#: ../../boot.php:1581 ../../include/nav.php:111 ../../include/nav.php:140 +#: ../../include/nav.php:159 msgid "Logout" msgstr "" -#: ../../boot.php:1667 +#: ../../boot.php:1585 msgid "Login/Email" msgstr "" -#: ../../boot.php:1668 +#: ../../boot.php:1586 msgid "Password" msgstr "" -#: ../../boot.php:1669 +#: ../../boot.php:1587 msgid "Remember me" msgstr "" -#: ../../boot.php:1672 +#: ../../boot.php:1590 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:2257 -msgid "toggle mobile" -msgstr "" - -#: ../../boot.php:2419 +#: ../../boot.php:2347 #, php-format msgid "[$Projectname] Website SSL error for %s" msgstr "" -#: ../../boot.php:2424 +#: ../../boot.php:2352 msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../boot.php:2540 +#: ../../boot.php:2468 #, php-format msgid "[$Projectname] Cron tasks not running on %s" msgstr "" -#: ../../boot.php:2545 +#: ../../boot.php:2473 msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../boot.php:2546 ../../include/datetime.php:292 +#: ../../boot.php:2474 ../../include/datetime.php:232 msgid "never" msgstr "" @@ -8847,7 +9120,7 @@ msgstr "" msgid "Errors encountered deleting database table " msgstr "" -#: ../../addon/rendezvous/rendezvous.php:95 ../../addon/twitter/twitter.php:773 +#: ../../addon/rendezvous/rendezvous.php:95 ../../addon/twitter/twitter.php:779 msgid "Submit Settings" msgstr "" @@ -9050,7 +9323,7 @@ msgid "Page to load after image selection." msgstr "" #: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1301 -#: ../../include/nav.php:153 +#: ../../include/nav.php:119 msgid "Edit Profile" msgstr "" @@ -9107,6 +9380,11 @@ msgstr "" msgid "Drawn by: " msgstr "" +#: ../../addon/openclipatar/openclipatar.php:182 +#: ../../addon/openclipatar/openclipatar.php:194 +msgid "Use this image" +msgstr "" + #: ../../addon/openclipatar/openclipatar.php:192 msgid "Or select from a free OpenClipart.org image:" msgstr "" @@ -9123,10 +9401,6 @@ msgstr "" msgid "Profile photo updated successfully." msgstr "" -#: ../../addon/zotvi/zot6.php:25 ../../include/zot.php:4051 -msgid "invalid target signature" -msgstr "" - #: ../../addon/adultphotoflag/adultphotoflag.php:24 msgid "Flag Adult Photos" msgstr "" @@ -9223,7 +9497,7 @@ msgstr "" msgid "Possible adult content" msgstr "" -#: ../../addon/nsfw/nsfw.php:211 +#: ../../addon/nsfw/nsfw.php:222 #, php-format msgid "%s - view" msgstr "" @@ -9280,6 +9554,15 @@ msgstr "" msgid "Dreamwidth Post Settings" msgstr "" +#: ../../addon/notifyadmin/notifyadmin.php:34 +msgid "New registration" +msgstr "" + +#: ../../addon/notifyadmin/notifyadmin.php:42 +#, php-format +msgid "Message sent to %s. New account registration: %s" +msgstr "" + #: ../../addon/dirstats/dirstats.php:94 msgid "Hubzilla Directory Stats" msgstr "" @@ -9528,17 +9811,17 @@ msgstr "" msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:289 +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:290 msgid "Login failed." msgstr "" #: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1480 +#: ../../include/selectors.php:66 ../../include/channel.php:1481 msgid "Male" msgstr "" #: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1478 +#: ../../include/selectors.php:66 ../../include/channel.php:1479 msgid "Female" msgstr "" @@ -9725,38 +10008,38 @@ msgstr "" msgid "declared undying love for" msgstr "" -#: ../../addon/diaspora/diaspora.php:772 +#: ../../addon/diaspora/diaspora.php:778 msgid "Diaspora Protocol Settings updated." msgstr "" -#: ../../addon/diaspora/diaspora.php:791 +#: ../../addon/diaspora/diaspora.php:797 msgid "" "The Diaspora protocol does not support location independence. Connections " "you make within that network may be unreachable from alternate channel " "locations." msgstr "" -#: ../../addon/diaspora/diaspora.php:794 +#: ../../addon/diaspora/diaspora.php:800 msgid "Enable the Diaspora protocol for this channel" msgstr "" -#: ../../addon/diaspora/diaspora.php:798 +#: ../../addon/diaspora/diaspora.php:804 msgid "Allow any Diaspora member to comment on your public posts" msgstr "" -#: ../../addon/diaspora/diaspora.php:802 +#: ../../addon/diaspora/diaspora.php:808 msgid "Prevent your hashtags from being redirected to other sites" msgstr "" -#: ../../addon/diaspora/diaspora.php:806 +#: ../../addon/diaspora/diaspora.php:812 msgid "Sign and forward posts and comments with no existing Diaspora signature" msgstr "" -#: ../../addon/diaspora/diaspora.php:811 +#: ../../addon/diaspora/diaspora.php:817 msgid "Followed hashtags (comma separated, do not include the #)" msgstr "" -#: ../../addon/diaspora/diaspora.php:816 +#: ../../addon/diaspora/diaspora.php:822 msgid "Diaspora Protocol Settings" msgstr "" @@ -9950,6 +10233,10 @@ msgstr "" msgid "Message subject" msgstr "" +#: ../../addon/mdpost/mdpost.php:41 +msgid "Use markdown for editing posts" +msgstr "" + #: ../../addon/openstreetmap/openstreetmap.php:146 msgid "View Larger" msgstr "" @@ -10032,7 +10319,7 @@ msgid "Hubzilla to Friendica Post Settings" msgstr "" #: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1397 -#: ../../include/channel.php:1567 +#: ../../include/channel.php:1568 msgid "Status:" msgstr "" @@ -10197,31 +10484,31 @@ msgstr "" msgid "Friendica Login Password" msgstr "" -#: ../../addon/pubcrawl/as.php:1077 ../../addon/pubcrawl/as.php:1164 -#: ../../addon/pubcrawl/as.php:1339 ../../include/network.php:1768 +#: ../../addon/pubcrawl/as.php:1101 ../../addon/pubcrawl/as.php:1228 +#: ../../addon/pubcrawl/as.php:1403 ../../include/network.php:1774 msgid "ActivityPub" msgstr "" -#: ../../addon/pubcrawl/pubcrawl.php:1033 +#: ../../addon/pubcrawl/pubcrawl.php:1034 msgid "ActivityPub Protocol Settings updated." msgstr "" -#: ../../addon/pubcrawl/pubcrawl.php:1042 +#: ../../addon/pubcrawl/pubcrawl.php:1043 msgid "" "The ActivityPub protocol does not support location independence. Connections " "you make within that network may be unreachable from alternate channel " "locations." msgstr "" -#: ../../addon/pubcrawl/pubcrawl.php:1045 +#: ../../addon/pubcrawl/pubcrawl.php:1046 msgid "Enable the ActivityPub protocol for this channel" msgstr "" -#: ../../addon/pubcrawl/pubcrawl.php:1048 +#: ../../addon/pubcrawl/pubcrawl.php:1049 msgid "Send multi-media HTML articles" msgstr "" -#: ../../addon/pubcrawl/pubcrawl.php:1048 +#: ../../addon/pubcrawl/pubcrawl.php:1049 msgid "Not supported by some microblog services such as Mastodon" msgstr "" @@ -10530,7 +10817,7 @@ msgstr "" msgid "Cancel GNU social Connection" msgstr "" -#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:232 +#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 msgid "Currently connected to: " msgstr "" @@ -10562,7 +10849,7 @@ msgid "" "account by default" msgstr "" -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 msgid "Clear OAuth configuration" msgstr "" @@ -10590,39 +10877,39 @@ msgstr "" msgid "Enter some text" msgstr "" -#: ../../addon/chess/chess.php:278 ../../addon/chess/chess.php:465 +#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 msgid "Invalid game." msgstr "" -#: ../../addon/chess/chess.php:284 ../../addon/chess/chess.php:471 +#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 msgid "You are not a player in this game." msgstr "" -#: ../../addon/chess/chess.php:340 +#: ../../addon/chess/chess.php:415 msgid "You must be a local channel to create a game." msgstr "" -#: ../../addon/chess/chess.php:358 +#: ../../addon/chess/chess.php:433 msgid "You must select one opponent that is not yourself." msgstr "" -#: ../../addon/chess/chess.php:367 -msgid "You must select white or black." +#: ../../addon/chess/chess.php:444 +msgid "Random color chosen." msgstr "" -#: ../../addon/chess/chess.php:375 +#: ../../addon/chess/chess.php:452 msgid "Error creating new game." msgstr "" -#: ../../addon/chess/chess.php:409 ../../include/channel.php:1152 +#: ../../addon/chess/chess.php:486 ../../include/channel.php:1152 msgid "Requested channel is not available." msgstr "" -#: ../../addon/chess/chess.php:423 +#: ../../addon/chess/chess.php:500 msgid "You must select a local channel /chess/channelname" msgstr "" -#: ../../addon/chess/chess.php:969 +#: ../../addon/chess/chess.php:1066 msgid "Enable notifications" msgstr "" @@ -10630,17 +10917,17 @@ msgstr "" msgid "Post to Twitter" msgstr "" -#: ../../addon/twitter/twitter.php:154 +#: ../../addon/twitter/twitter.php:155 msgid "Twitter settings updated." msgstr "" -#: ../../addon/twitter/twitter.php:183 +#: ../../addon/twitter/twitter.php:184 msgid "" "No consumer key pair for Twitter found. Please contact your site " "administrator." msgstr "" -#: ../../addon/twitter/twitter.php:205 +#: ../../addon/twitter/twitter.php:206 msgid "" "At this Hubzilla instance the Twitter plugin was enabled but you have not " "yet connected your account to your Twitter account. To do so click the " @@ -10649,15 +10936,15 @@ msgid "" "be posted to Twitter." msgstr "" -#: ../../addon/twitter/twitter.php:207 +#: ../../addon/twitter/twitter.php:208 msgid "Log in with Twitter" msgstr "" -#: ../../addon/twitter/twitter.php:210 +#: ../../addon/twitter/twitter.php:211 msgid "Copy the PIN from Twitter here" msgstr "" -#: ../../addon/twitter/twitter.php:237 +#: ../../addon/twitter/twitter.php:238 msgid "" "Note: Due your privacy settings (Hide your profile " "details from unknown viewers?) the link potentially included in public " @@ -10665,27 +10952,35 @@ msgid "" "the visitor that the access to your profile has been restricted." msgstr "" -#: ../../addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:243 msgid "Allow posting to Twitter" msgstr "" -#: ../../addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:243 msgid "" "If enabled your public postings can be posted to the associated Twitter " "account" msgstr "" -#: ../../addon/twitter/twitter.php:246 +#: ../../addon/twitter/twitter.php:247 +msgid "Twitter post length" +msgstr "" + +#: ../../addon/twitter/twitter.php:247 +msgid "Maximum tweet length" +msgstr "" + +#: ../../addon/twitter/twitter.php:252 msgid "Send public postings to Twitter by default" msgstr "" -#: ../../addon/twitter/twitter.php:246 +#: ../../addon/twitter/twitter.php:252 msgid "" "If enabled your public postings will be posted to the associated Twitter " "account by default" msgstr "" -#: ../../addon/twitter/twitter.php:264 +#: ../../addon/twitter/twitter.php:270 msgid "Twitter Post Settings" msgstr "" @@ -10910,7 +11205,7 @@ msgstr "" #: ../../addon/sendzid/sendzid.php:26 msgid "" "Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." +"identity is only shared with $Projectname sites." msgstr "" #: ../../addon/tictac/tictac.php:21 @@ -11294,11 +11589,11 @@ msgstr "" msgid "Hermaphrodite" msgstr "" -#: ../../include/selectors.php:49 ../../include/channel.php:1484 +#: ../../include/selectors.php:49 ../../include/channel.php:1485 msgid "Neuter" msgstr "" -#: ../../include/selectors.php:49 ../../include/channel.php:1486 +#: ../../include/selectors.php:49 ../../include/channel.php:1487 msgid "Non-specific" msgstr "" @@ -11498,8 +11793,8 @@ msgstr "" msgid "%1$s poked %2$s" msgstr "" -#: ../../include/conversation.php:251 ../../include/text.php:1104 -#: ../../include/text.php:1109 +#: ../../include/conversation.php:251 ../../include/text.php:1129 +#: ../../include/text.php:1133 msgid "poked" msgstr "" @@ -11701,32 +11996,32 @@ msgstr "" msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/conversation.php:1811 ../../include/nav.php:413 +#: ../../include/conversation.php:1811 ../../include/nav.php:381 msgid "Status Messages and Posts" msgstr "" -#: ../../include/conversation.php:1824 ../../include/nav.php:426 +#: ../../include/conversation.php:1824 ../../include/nav.php:394 msgid "Profile Details" msgstr "" -#: ../../include/conversation.php:1834 ../../include/nav.php:436 +#: ../../include/conversation.php:1834 ../../include/nav.php:404 #: ../../include/photos.php:655 msgid "Photo Albums" msgstr "" -#: ../../include/conversation.php:1842 ../../include/nav.php:444 +#: ../../include/conversation.php:1842 ../../include/nav.php:412 msgid "Files and Storage" msgstr "" -#: ../../include/conversation.php:1879 ../../include/nav.php:479 +#: ../../include/conversation.php:1879 ../../include/nav.php:447 msgid "Bookmarks" msgstr "" -#: ../../include/conversation.php:1882 ../../include/nav.php:482 +#: ../../include/conversation.php:1882 ../../include/nav.php:450 msgid "Saved Bookmarks" msgstr "" -#: ../../include/conversation.php:1893 ../../include/nav.php:493 +#: ../../include/conversation.php:1893 ../../include/nav.php:461 msgid "View Cards" msgstr "" @@ -11734,11 +12029,11 @@ msgstr "" msgid "articles" msgstr "" -#: ../../include/conversation.php:1904 ../../include/nav.php:504 +#: ../../include/conversation.php:1904 ../../include/nav.php:472 msgid "View Articles" msgstr "" -#: ../../include/conversation.php:1915 ../../include/nav.php:516 +#: ../../include/conversation.php:1915 ../../include/nav.php:484 msgid "View Webpages" msgstr "" @@ -11810,368 +12105,368 @@ msgid "" "Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../include/import.php:105 +#: ../../include/import.php:106 msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../include/text.php:478 +#: ../../include/text.php:492 msgid "prev" msgstr "" -#: ../../include/text.php:480 +#: ../../include/text.php:494 msgid "first" msgstr "" -#: ../../include/text.php:509 +#: ../../include/text.php:523 msgid "last" msgstr "" -#: ../../include/text.php:512 +#: ../../include/text.php:526 msgid "next" msgstr "" -#: ../../include/text.php:523 +#: ../../include/text.php:537 msgid "older" msgstr "" -#: ../../include/text.php:525 +#: ../../include/text.php:539 msgid "newer" msgstr "" -#: ../../include/text.php:947 +#: ../../include/text.php:961 msgid "No connections" msgstr "" -#: ../../include/text.php:972 +#: ../../include/text.php:993 #, php-format msgid "View all %s connections" msgstr "" -#: ../../include/text.php:1104 ../../include/text.php:1109 +#: ../../include/text.php:1129 ../../include/text.php:1133 msgid "poke" msgstr "" -#: ../../include/text.php:1110 +#: ../../include/text.php:1134 msgid "ping" msgstr "" -#: ../../include/text.php:1110 +#: ../../include/text.php:1134 msgid "pinged" msgstr "" -#: ../../include/text.php:1111 +#: ../../include/text.php:1135 msgid "prod" msgstr "" -#: ../../include/text.php:1111 +#: ../../include/text.php:1135 msgid "prodded" msgstr "" -#: ../../include/text.php:1112 +#: ../../include/text.php:1136 msgid "slap" msgstr "" -#: ../../include/text.php:1112 +#: ../../include/text.php:1136 msgid "slapped" msgstr "" -#: ../../include/text.php:1113 +#: ../../include/text.php:1137 msgid "finger" msgstr "" -#: ../../include/text.php:1113 +#: ../../include/text.php:1137 msgid "fingered" msgstr "" -#: ../../include/text.php:1114 +#: ../../include/text.php:1138 msgid "rebuff" msgstr "" -#: ../../include/text.php:1114 +#: ../../include/text.php:1138 msgid "rebuffed" msgstr "" -#: ../../include/text.php:1126 +#: ../../include/text.php:1161 msgid "happy" msgstr "" -#: ../../include/text.php:1127 +#: ../../include/text.php:1162 msgid "sad" msgstr "" -#: ../../include/text.php:1128 +#: ../../include/text.php:1163 msgid "mellow" msgstr "" -#: ../../include/text.php:1129 +#: ../../include/text.php:1164 msgid "tired" msgstr "" -#: ../../include/text.php:1130 +#: ../../include/text.php:1165 msgid "perky" msgstr "" -#: ../../include/text.php:1131 +#: ../../include/text.php:1166 msgid "angry" msgstr "" -#: ../../include/text.php:1132 +#: ../../include/text.php:1167 msgid "stupefied" msgstr "" -#: ../../include/text.php:1133 +#: ../../include/text.php:1168 msgid "puzzled" msgstr "" -#: ../../include/text.php:1134 +#: ../../include/text.php:1169 msgid "interested" msgstr "" -#: ../../include/text.php:1135 +#: ../../include/text.php:1170 msgid "bitter" msgstr "" -#: ../../include/text.php:1136 +#: ../../include/text.php:1171 msgid "cheerful" msgstr "" -#: ../../include/text.php:1137 +#: ../../include/text.php:1172 msgid "alive" msgstr "" -#: ../../include/text.php:1138 +#: ../../include/text.php:1173 msgid "annoyed" msgstr "" -#: ../../include/text.php:1139 +#: ../../include/text.php:1174 msgid "anxious" msgstr "" -#: ../../include/text.php:1140 +#: ../../include/text.php:1175 msgid "cranky" msgstr "" -#: ../../include/text.php:1141 +#: ../../include/text.php:1176 msgid "disturbed" msgstr "" -#: ../../include/text.php:1142 +#: ../../include/text.php:1177 msgid "frustrated" msgstr "" -#: ../../include/text.php:1143 +#: ../../include/text.php:1178 msgid "depressed" msgstr "" -#: ../../include/text.php:1144 +#: ../../include/text.php:1179 msgid "motivated" msgstr "" -#: ../../include/text.php:1145 +#: ../../include/text.php:1180 msgid "relaxed" msgstr "" -#: ../../include/text.php:1146 +#: ../../include/text.php:1181 msgid "surprised" msgstr "" -#: ../../include/text.php:1320 ../../include/js_strings.php:70 +#: ../../include/text.php:1360 ../../include/js_strings.php:76 msgid "Monday" msgstr "" -#: ../../include/text.php:1320 ../../include/js_strings.php:71 +#: ../../include/text.php:1360 ../../include/js_strings.php:77 msgid "Tuesday" msgstr "" -#: ../../include/text.php:1320 ../../include/js_strings.php:72 +#: ../../include/text.php:1360 ../../include/js_strings.php:78 msgid "Wednesday" msgstr "" -#: ../../include/text.php:1320 ../../include/js_strings.php:73 +#: ../../include/text.php:1360 ../../include/js_strings.php:79 msgid "Thursday" msgstr "" -#: ../../include/text.php:1320 ../../include/js_strings.php:74 +#: ../../include/text.php:1360 ../../include/js_strings.php:80 msgid "Friday" msgstr "" -#: ../../include/text.php:1320 ../../include/js_strings.php:75 +#: ../../include/text.php:1360 ../../include/js_strings.php:81 msgid "Saturday" msgstr "" -#: ../../include/text.php:1320 ../../include/js_strings.php:69 +#: ../../include/text.php:1360 ../../include/js_strings.php:75 msgid "Sunday" msgstr "" -#: ../../include/text.php:1324 ../../include/js_strings.php:45 +#: ../../include/text.php:1364 ../../include/js_strings.php:51 msgid "January" msgstr "" -#: ../../include/text.php:1324 ../../include/js_strings.php:46 +#: ../../include/text.php:1364 ../../include/js_strings.php:52 msgid "February" msgstr "" -#: ../../include/text.php:1324 ../../include/js_strings.php:47 +#: ../../include/text.php:1364 ../../include/js_strings.php:53 msgid "March" msgstr "" -#: ../../include/text.php:1324 ../../include/js_strings.php:48 +#: ../../include/text.php:1364 ../../include/js_strings.php:54 msgid "April" msgstr "" -#: ../../include/text.php:1324 +#: ../../include/text.php:1364 msgid "May" msgstr "" -#: ../../include/text.php:1324 ../../include/js_strings.php:50 +#: ../../include/text.php:1364 ../../include/js_strings.php:56 msgid "June" msgstr "" -#: ../../include/text.php:1324 ../../include/js_strings.php:51 +#: ../../include/text.php:1364 ../../include/js_strings.php:57 msgid "July" msgstr "" -#: ../../include/text.php:1324 ../../include/js_strings.php:52 +#: ../../include/text.php:1364 ../../include/js_strings.php:58 msgid "August" msgstr "" -#: ../../include/text.php:1324 ../../include/js_strings.php:53 +#: ../../include/text.php:1364 ../../include/js_strings.php:59 msgid "September" msgstr "" -#: ../../include/text.php:1324 ../../include/js_strings.php:54 +#: ../../include/text.php:1364 ../../include/js_strings.php:60 msgid "October" msgstr "" -#: ../../include/text.php:1324 ../../include/js_strings.php:55 +#: ../../include/text.php:1364 ../../include/js_strings.php:61 msgid "November" msgstr "" -#: ../../include/text.php:1324 ../../include/js_strings.php:56 +#: ../../include/text.php:1364 ../../include/js_strings.php:62 msgid "December" msgstr "" -#: ../../include/text.php:1388 ../../include/text.php:1392 +#: ../../include/text.php:1428 ../../include/text.php:1432 msgid "Unknown Attachment" msgstr "" -#: ../../include/text.php:1394 ../../include/feedutils.php:825 +#: ../../include/text.php:1434 ../../include/feedutils.php:852 msgid "unknown" msgstr "" -#: ../../include/text.php:1430 +#: ../../include/text.php:1470 msgid "remove category" msgstr "" -#: ../../include/text.php:1504 +#: ../../include/text.php:1544 msgid "remove from file" msgstr "" -#: ../../include/text.php:1623 ../../include/message.php:12 +#: ../../include/text.php:1686 ../../include/message.php:12 msgid "Download binary/encrypted content" msgstr "" -#: ../../include/text.php:1782 ../../include/language.php:364 +#: ../../include/text.php:1848 ../../include/language.php:397 msgid "default" msgstr "" -#: ../../include/text.php:1790 +#: ../../include/text.php:1856 msgid "Page layout" msgstr "" -#: ../../include/text.php:1790 +#: ../../include/text.php:1856 msgid "You can create your own with the layouts tool" msgstr "" -#: ../../include/text.php:1801 +#: ../../include/text.php:1867 msgid "HTML" msgstr "" -#: ../../include/text.php:1804 +#: ../../include/text.php:1870 msgid "Comanche Layout" msgstr "" -#: ../../include/text.php:1809 +#: ../../include/text.php:1875 msgid "PHP" msgstr "" -#: ../../include/text.php:1818 +#: ../../include/text.php:1884 msgid "Page content type" msgstr "" -#: ../../include/text.php:1951 +#: ../../include/text.php:2017 msgid "activity" msgstr "" -#: ../../include/text.php:2014 +#: ../../include/text.php:2099 msgid "a-z, 0-9, -, and _ only" msgstr "" -#: ../../include/text.php:2285 +#: ../../include/text.php:2399 msgid "Design Tools" msgstr "" -#: ../../include/text.php:2291 +#: ../../include/text.php:2405 msgid "Pages" msgstr "" -#: ../../include/text.php:2313 +#: ../../include/text.php:2427 msgid "Import website..." msgstr "" -#: ../../include/text.php:2314 +#: ../../include/text.php:2428 msgid "Select folder to import" msgstr "" -#: ../../include/text.php:2315 +#: ../../include/text.php:2429 msgid "Import from a zipped folder:" msgstr "" -#: ../../include/text.php:2316 +#: ../../include/text.php:2430 msgid "Import from cloud files:" msgstr "" -#: ../../include/text.php:2317 +#: ../../include/text.php:2431 msgid "/cloud/channel/path/to/folder" msgstr "" -#: ../../include/text.php:2318 +#: ../../include/text.php:2432 msgid "Enter path to website files" msgstr "" -#: ../../include/text.php:2319 +#: ../../include/text.php:2433 msgid "Select folder" msgstr "" -#: ../../include/text.php:2320 +#: ../../include/text.php:2434 msgid "Export website..." msgstr "" -#: ../../include/text.php:2321 +#: ../../include/text.php:2435 msgid "Export to a zip file" msgstr "" -#: ../../include/text.php:2322 +#: ../../include/text.php:2436 msgid "website.zip" msgstr "" -#: ../../include/text.php:2323 +#: ../../include/text.php:2437 msgid "Enter a name for the zip file." msgstr "" -#: ../../include/text.php:2324 +#: ../../include/text.php:2438 msgid "Export to cloud files" msgstr "" -#: ../../include/text.php:2325 +#: ../../include/text.php:2439 msgid "/path/to/export/folder" msgstr "" -#: ../../include/text.php:2326 +#: ../../include/text.php:2440 msgid "Enter a path to a cloud files destination." msgstr "" -#: ../../include/text.php:2327 +#: ../../include/text.php:2441 msgid "Specify folder" msgstr "" @@ -12219,7 +12514,7 @@ msgstr "" msgid "View all %d common connections" msgstr "" -#: ../../include/markdown.php:158 ../../include/bbcode.php:339 +#: ../../include/markdown.php:158 ../../include/bbcode.php:343 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "" @@ -12323,182 +12618,182 @@ msgstr "" msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:31 msgid "timeago.prefixAgo" msgstr "" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:32 msgid "timeago.prefixFromNow" msgstr "" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "" - -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "" - -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "" - -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "" - #: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" +msgid "timeago.suffixAgo" msgstr "" #: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "" - -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "" - -#: ../../include/js_strings.php:36 -msgid "a day" +msgid "timeago.suffixFromNow" msgstr "" #: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" +msgid "less than a minute" msgstr "" #: ../../include/js_strings.php:38 -msgid "about a month" +msgid "about a minute" msgstr "" #: ../../include/js_strings.php:39 #, php-format -msgid "%d months" +msgid "%d minutes" msgstr "" #: ../../include/js_strings.php:40 -msgid "about a year" +msgid "about an hour" msgstr "" #: ../../include/js_strings.php:41 #, php-format -msgid "%d years" +msgid "about %d hours" msgstr "" #: ../../include/js_strings.php:42 -msgid " " +msgid "a day" msgstr "" #: ../../include/js_strings.php:43 -msgid "timeago.numbers" +#, php-format +msgid "%d days" +msgstr "" + +#: ../../include/js_strings.php:44 +msgid "about a month" +msgstr "" + +#: ../../include/js_strings.php:45 +#, php-format +msgid "%d months" +msgstr "" + +#: ../../include/js_strings.php:46 +msgid "about a year" +msgstr "" + +#: ../../include/js_strings.php:47 +#, php-format +msgid "%d years" +msgstr "" + +#: ../../include/js_strings.php:48 +msgid " " msgstr "" #: ../../include/js_strings.php:49 +msgid "timeago.numbers" +msgstr "" + +#: ../../include/js_strings.php:55 msgctxt "long" msgid "May" msgstr "" -#: ../../include/js_strings.php:57 +#: ../../include/js_strings.php:63 msgid "Jan" msgstr "" -#: ../../include/js_strings.php:58 +#: ../../include/js_strings.php:64 msgid "Feb" msgstr "" -#: ../../include/js_strings.php:59 +#: ../../include/js_strings.php:65 msgid "Mar" msgstr "" -#: ../../include/js_strings.php:60 +#: ../../include/js_strings.php:66 msgid "Apr" msgstr "" -#: ../../include/js_strings.php:61 +#: ../../include/js_strings.php:67 msgctxt "short" msgid "May" msgstr "" -#: ../../include/js_strings.php:62 +#: ../../include/js_strings.php:68 msgid "Jun" msgstr "" -#: ../../include/js_strings.php:63 +#: ../../include/js_strings.php:69 msgid "Jul" msgstr "" -#: ../../include/js_strings.php:64 +#: ../../include/js_strings.php:70 msgid "Aug" msgstr "" -#: ../../include/js_strings.php:65 +#: ../../include/js_strings.php:71 msgid "Sep" msgstr "" -#: ../../include/js_strings.php:66 +#: ../../include/js_strings.php:72 msgid "Oct" msgstr "" -#: ../../include/js_strings.php:67 +#: ../../include/js_strings.php:73 msgid "Nov" msgstr "" -#: ../../include/js_strings.php:68 +#: ../../include/js_strings.php:74 msgid "Dec" msgstr "" -#: ../../include/js_strings.php:76 +#: ../../include/js_strings.php:82 msgid "Sun" msgstr "" -#: ../../include/js_strings.php:77 +#: ../../include/js_strings.php:83 msgid "Mon" msgstr "" -#: ../../include/js_strings.php:78 +#: ../../include/js_strings.php:84 msgid "Tue" msgstr "" -#: ../../include/js_strings.php:79 +#: ../../include/js_strings.php:85 msgid "Wed" msgstr "" -#: ../../include/js_strings.php:80 +#: ../../include/js_strings.php:86 msgid "Thu" msgstr "" -#: ../../include/js_strings.php:81 +#: ../../include/js_strings.php:87 msgid "Fri" msgstr "" -#: ../../include/js_strings.php:82 +#: ../../include/js_strings.php:88 msgid "Sat" msgstr "" -#: ../../include/js_strings.php:83 +#: ../../include/js_strings.php:89 msgctxt "calendar" msgid "today" msgstr "" -#: ../../include/js_strings.php:84 +#: ../../include/js_strings.php:90 msgctxt "calendar" msgid "month" msgstr "" -#: ../../include/js_strings.php:85 +#: ../../include/js_strings.php:91 msgctxt "calendar" msgid "week" msgstr "" -#: ../../include/js_strings.php:86 +#: ../../include/js_strings.php:92 msgctxt "calendar" msgid "day" msgstr "" -#: ../../include/js_strings.php:87 +#: ../../include/js_strings.php:93 msgctxt "calendar" msgid "All day" msgstr "" @@ -12546,61 +12841,61 @@ msgstr "" msgid "Item was not found." msgstr "" -#: ../../include/attach.php:553 +#: ../../include/attach.php:554 msgid "No source file." msgstr "" -#: ../../include/attach.php:575 +#: ../../include/attach.php:576 msgid "Cannot locate file to replace" msgstr "" -#: ../../include/attach.php:593 +#: ../../include/attach.php:595 msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/attach.php:734 +#: ../../include/attach.php:737 #, php-format msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/attach.php:754 +#: ../../include/attach.php:758 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/attach.php:929 +#: ../../include/attach.php:940 msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/attach.php:948 +#: ../../include/attach.php:959 msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/attach.php:1022 ../../include/attach.php:1038 +#: ../../include/attach.php:1033 ../../include/attach.php:1049 msgid "Path not available." msgstr "" -#: ../../include/attach.php:1087 ../../include/attach.php:1252 +#: ../../include/attach.php:1098 ../../include/attach.php:1263 msgid "Empty pathname" msgstr "" -#: ../../include/attach.php:1113 +#: ../../include/attach.php:1124 msgid "duplicate filename or path" msgstr "" -#: ../../include/attach.php:1138 +#: ../../include/attach.php:1149 msgid "Path not found." msgstr "" -#: ../../include/attach.php:1206 +#: ../../include/attach.php:1217 msgid "mkdir failed." msgstr "" -#: ../../include/attach.php:1210 +#: ../../include/attach.php:1221 msgid "database storage failed." msgstr "" -#: ../../include/attach.php:1258 +#: ../../include/attach.php:1269 msgid "Empty path" msgstr "" @@ -12647,34 +12942,34 @@ msgstr "" msgid "Visible to specific connections." msgstr "" -#: ../../include/items.php:4117 +#: ../../include/items.php:4147 msgid "Privacy group is empty." msgstr "" -#: ../../include/items.php:4124 +#: ../../include/items.php:4154 #, php-format msgid "Privacy group: %s" msgstr "" -#: ../../include/items.php:4136 +#: ../../include/items.php:4166 msgid "Connection not found." msgstr "" -#: ../../include/items.php:4485 +#: ../../include/items.php:4515 msgid "profile photo" msgstr "" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 #, php-format msgid "[Edited %s]" msgstr "" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 msgctxt "edit_activity" msgid "Post" msgstr "" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 msgctxt "edit_activity" msgid "Comment" msgstr "" @@ -12719,11 +13014,11 @@ msgstr "" msgid "Visible to everybody" msgstr "" -#: ../../include/channel.php:1396 ../../include/channel.php:1523 +#: ../../include/channel.php:1396 ../../include/channel.php:1524 msgid "Gender:" msgstr "" -#: ../../include/channel.php:1398 ../../include/channel.php:1578 +#: ../../include/channel.php:1398 ../../include/channel.php:1579 msgid "Homepage:" msgstr "" @@ -12731,108 +13026,112 @@ msgstr "" msgid "Online Now" msgstr "" -#: ../../include/channel.php:1482 +#: ../../include/channel.php:1452 +msgid "Change your profile photo" +msgstr "" + +#: ../../include/channel.php:1483 msgid "Trans" msgstr "" -#: ../../include/channel.php:1528 +#: ../../include/channel.php:1529 msgid "Like this channel" msgstr "" -#: ../../include/channel.php:1552 +#: ../../include/channel.php:1553 msgid "j F, Y" msgstr "" -#: ../../include/channel.php:1553 +#: ../../include/channel.php:1554 msgid "j F" msgstr "" -#: ../../include/channel.php:1560 +#: ../../include/channel.php:1561 msgid "Birthday:" msgstr "" -#: ../../include/channel.php:1573 +#: ../../include/channel.php:1574 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/channel.php:1576 +#: ../../include/channel.php:1577 msgid "Sexual Preference:" msgstr "" -#: ../../include/channel.php:1582 +#: ../../include/channel.php:1583 msgid "Tags:" msgstr "" -#: ../../include/channel.php:1584 +#: ../../include/channel.php:1585 msgid "Political Views:" msgstr "" -#: ../../include/channel.php:1586 +#: ../../include/channel.php:1587 msgid "Religion:" msgstr "" -#: ../../include/channel.php:1590 +#: ../../include/channel.php:1591 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/channel.php:1592 +#: ../../include/channel.php:1593 msgid "Likes:" msgstr "" -#: ../../include/channel.php:1594 +#: ../../include/channel.php:1595 msgid "Dislikes:" msgstr "" -#: ../../include/channel.php:1596 +#: ../../include/channel.php:1597 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/channel.php:1598 +#: ../../include/channel.php:1599 msgid "My other channels:" msgstr "" -#: ../../include/channel.php:1600 +#: ../../include/channel.php:1601 msgid "Musical interests:" msgstr "" -#: ../../include/channel.php:1602 +#: ../../include/channel.php:1603 msgid "Books, literature:" msgstr "" -#: ../../include/channel.php:1604 +#: ../../include/channel.php:1605 msgid "Television:" msgstr "" -#: ../../include/channel.php:1606 +#: ../../include/channel.php:1607 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/channel.php:1608 +#: ../../include/channel.php:1609 msgid "Love/Romance:" msgstr "" -#: ../../include/channel.php:1610 +#: ../../include/channel.php:1611 msgid "Work/employment:" msgstr "" -#: ../../include/channel.php:1612 +#: ../../include/channel.php:1613 msgid "School/education:" msgstr "" -#: ../../include/channel.php:1635 +#: ../../include/channel.php:1636 msgid "Like this thing" msgstr "" -#: ../../include/event.php:23 ../../include/event.php:70 +#: ../../include/event.php:24 ../../include/event.php:71 msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/event.php:31 ../../include/event.php:74 +#: ../../include/event.php:32 ../../include/event.php:75 msgid "Starts:" msgstr "" -#: ../../include/event.php:41 ../../include/event.php:78 +#: ../../include/event.php:42 ../../include/event.php:79 msgid "Finishes:" msgstr "" @@ -12840,167 +13139,175 @@ msgstr "" msgid "This event has been added to your calendar." msgstr "" -#: ../../include/event.php:1220 +#: ../../include/event.php:1227 msgid "Not specified" msgstr "" -#: ../../include/event.php:1221 +#: ../../include/event.php:1228 msgid "Needs Action" msgstr "" -#: ../../include/event.php:1222 +#: ../../include/event.php:1229 msgid "Completed" msgstr "" -#: ../../include/event.php:1223 +#: ../../include/event.php:1230 msgid "In Process" msgstr "" -#: ../../include/event.php:1224 +#: ../../include/event.php:1231 msgid "Cancelled" msgstr "" -#: ../../include/event.php:1303 ../../include/connections.php:684 +#: ../../include/event.php:1310 ../../include/connections.php:684 msgid "Home, Voice" msgstr "" -#: ../../include/event.php:1304 ../../include/connections.php:685 +#: ../../include/event.php:1311 ../../include/connections.php:685 msgid "Home, Fax" msgstr "" -#: ../../include/event.php:1306 ../../include/connections.php:687 +#: ../../include/event.php:1313 ../../include/connections.php:687 msgid "Work, Voice" msgstr "" -#: ../../include/event.php:1307 ../../include/connections.php:688 +#: ../../include/event.php:1314 ../../include/connections.php:688 msgid "Work, Fax" msgstr "" -#: ../../include/network.php:761 +#: ../../include/network.php:762 msgid "view full size" msgstr "" -#: ../../include/network.php:1763 ../../include/network.php:1764 +#: ../../include/network.php:1769 ../../include/network.php:1770 msgid "Friendica" msgstr "" -#: ../../include/network.php:1765 +#: ../../include/network.php:1771 msgid "OStatus" msgstr "" -#: ../../include/network.php:1766 +#: ../../include/network.php:1772 msgid "GNU-Social" msgstr "" -#: ../../include/network.php:1767 +#: ../../include/network.php:1773 msgid "RSS/Atom" msgstr "" -#: ../../include/network.php:1770 +#: ../../include/network.php:1776 msgid "Diaspora" msgstr "" -#: ../../include/network.php:1771 +#: ../../include/network.php:1777 msgid "Facebook" msgstr "" -#: ../../include/network.php:1772 +#: ../../include/network.php:1778 msgid "Zot" msgstr "" -#: ../../include/network.php:1773 +#: ../../include/network.php:1779 msgid "LinkedIn" msgstr "" -#: ../../include/network.php:1774 +#: ../../include/network.php:1780 msgid "XMPP/IM" msgstr "" -#: ../../include/network.php:1775 +#: ../../include/network.php:1781 msgid "MySpace" msgstr "" -#: ../../include/language.php:377 +#: ../../include/language.php:410 msgid "Select an alternate language" msgstr "" -#: ../../include/acl_selectors.php:208 +#: ../../include/acl_selectors.php:113 msgid "Who can see this?" msgstr "" -#: ../../include/acl_selectors.php:209 +#: ../../include/acl_selectors.php:114 msgid "Custom selection" msgstr "" -#: ../../include/acl_selectors.php:210 +#: ../../include/acl_selectors.php:115 msgid "" "Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " "the scope of \"Show\"." msgstr "" -#: ../../include/acl_selectors.php:211 +#: ../../include/acl_selectors.php:116 msgid "Show" msgstr "" -#: ../../include/acl_selectors.php:212 +#: ../../include/acl_selectors.php:117 msgid "Don't show" msgstr "" -#: ../../include/acl_selectors.php:245 +#: ../../include/acl_selectors.php:150 #, php-format msgid "" "Post permissions %s cannot be changed %s after a post is shared.
    These " "permissions set who is allowed to view the post." msgstr "" -#: ../../include/dba/dba_driver.php:190 +#: ../../include/dba/dba_driver.php:178 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/bbcode.php:194 ../../include/bbcode.php:1106 -#: ../../include/bbcode.php:1109 ../../include/bbcode.php:1114 -#: ../../include/bbcode.php:1117 ../../include/bbcode.php:1120 -#: ../../include/bbcode.php:1123 ../../include/bbcode.php:1128 -#: ../../include/bbcode.php:1131 ../../include/bbcode.php:1136 -#: ../../include/bbcode.php:1139 ../../include/bbcode.php:1142 -#: ../../include/bbcode.php:1145 +#: ../../include/bbcode.php:198 ../../include/bbcode.php:1151 +#: ../../include/bbcode.php:1154 ../../include/bbcode.php:1159 +#: ../../include/bbcode.php:1162 ../../include/bbcode.php:1165 +#: ../../include/bbcode.php:1168 ../../include/bbcode.php:1173 +#: ../../include/bbcode.php:1176 ../../include/bbcode.php:1181 +#: ../../include/bbcode.php:1184 ../../include/bbcode.php:1187 +#: ../../include/bbcode.php:1190 msgid "Image/photo" msgstr "" -#: ../../include/bbcode.php:233 ../../include/bbcode.php:1156 +#: ../../include/bbcode.php:237 ../../include/bbcode.php:1201 msgid "Encrypted content" msgstr "" -#: ../../include/bbcode.php:249 +#: ../../include/bbcode.php:253 #, php-format msgid "Install %1$s element %2$s" msgstr "" -#: ../../include/bbcode.php:253 +#: ../../include/bbcode.php:257 #, php-format msgid "" "This post contains an installable %s element, however you lack permissions " "to install it on this site." msgstr "" -#: ../../include/bbcode.php:331 +#: ../../include/bbcode.php:335 msgid "card" msgstr "" -#: ../../include/bbcode.php:333 +#: ../../include/bbcode.php:337 msgid "article" msgstr "" -#: ../../include/bbcode.php:416 ../../include/bbcode.php:424 +#: ../../include/bbcode.php:420 ../../include/bbcode.php:428 msgid "Click to open/close" msgstr "" -#: ../../include/bbcode.php:424 +#: ../../include/bbcode.php:428 msgid "spoiler" msgstr "" -#: ../../include/bbcode.php:1094 +#: ../../include/bbcode.php:441 +msgid "View article" +msgstr "" + +#: ../../include/bbcode.php:441 +msgid "View summary" +msgstr "" + +#: ../../include/bbcode.php:1139 msgid "$1 wrote:" msgstr "" @@ -13020,7 +13327,7 @@ msgstr "" msgid "Embedding disabled" msgstr "" -#: ../../include/zid.php:340 +#: ../../include/zid.php:346 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" @@ -13029,344 +13336,364 @@ msgstr "" msgid "General Features" msgstr "" -#: ../../include/features.php:59 -msgid "Multiple Profiles" -msgstr "" - #: ../../include/features.php:60 -msgid "Ability to create multiple profiles" -msgstr "" - -#: ../../include/features.php:68 msgid "Advanced Profiles" msgstr "" -#: ../../include/features.php:69 +#: ../../include/features.php:61 msgid "Additional profile sections and selections" msgstr "" -#: ../../include/features.php:77 +#: ../../include/features.php:69 msgid "Profile Import/Export" msgstr "" -#: ../../include/features.php:78 +#: ../../include/features.php:70 msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../include/features.php:86 +#: ../../include/features.php:78 msgid "Web Pages" msgstr "" -#: ../../include/features.php:87 +#: ../../include/features.php:79 msgid "Provide managed web pages on your channel" msgstr "" -#: ../../include/features.php:96 +#: ../../include/features.php:88 msgid "Provide a wiki for your channel" msgstr "" -#: ../../include/features.php:113 +#: ../../include/features.php:105 msgid "Private Notes" msgstr "" -#: ../../include/features.php:114 +#: ../../include/features.php:106 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "" -#: ../../include/features.php:123 +#: ../../include/features.php:115 msgid "Create personal planning cards" msgstr "" -#: ../../include/features.php:141 +#: ../../include/features.php:125 +msgid "Create interactive articles" +msgstr "" + +#: ../../include/features.php:133 msgid "Navigation Channel Select" msgstr "" -#: ../../include/features.php:142 +#: ../../include/features.php:134 msgid "Change channels directly from within the navigation dropdown menu" msgstr "" -#: ../../include/features.php:150 +#: ../../include/features.php:142 msgid "Photo Location" msgstr "" -#: ../../include/features.php:151 +#: ../../include/features.php:143 msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../include/features.php:159 +#: ../../include/features.php:151 msgid "Access Controlled Chatrooms" msgstr "" -#: ../../include/features.php:160 +#: ../../include/features.php:152 msgid "Provide chatrooms and chat services with access control." msgstr "" -#: ../../include/features.php:169 -msgid "Provide alternate connection permission roles." -msgstr "" - -#: ../../include/features.php:177 +#: ../../include/features.php:161 msgid "Smart Birthdays" msgstr "" -#: ../../include/features.php:178 +#: ../../include/features.php:162 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "" -#: ../../include/features.php:186 +#: ../../include/features.php:170 msgid "Event Timezone Selection" msgstr "" -#: ../../include/features.php:187 +#: ../../include/features.php:171 msgid "Allow event creation in timezones other than your own." msgstr "" -#: ../../include/features.php:195 -msgid "Advanced Directory Search" -msgstr "" - -#: ../../include/features.php:196 -msgid "Allows creation of complex directory search queries" -msgstr "" - -#: ../../include/features.php:204 -msgid "Advanced Theme and Layout Settings" -msgstr "" - -#: ../../include/features.php:205 -msgid "Allows fine tuning of themes and page layouts" -msgstr "" - -#: ../../include/features.php:215 -msgid "Post Composition Features" -msgstr "" - -#: ../../include/features.php:219 -msgid "Large Photos" -msgstr "" - -#: ../../include/features.php:220 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "" - -#: ../../include/features.php:229 -msgid "Automatically import channel content from other channels or feeds" -msgstr "" - -#: ../../include/features.php:237 -msgid "Even More Encryption" -msgstr "" - -#: ../../include/features.php:238 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "" - -#: ../../include/features.php:246 -msgid "Enable Voting Tools" -msgstr "" - -#: ../../include/features.php:247 -msgid "Provide a class of post which others can vote on" -msgstr "" - -#: ../../include/features.php:255 -msgid "Disable Comments" -msgstr "" - -#: ../../include/features.php:256 -msgid "Provide the option to disable comments for a post" -msgstr "" - -#: ../../include/features.php:264 -msgid "Delayed Posting" -msgstr "" - -#: ../../include/features.php:265 -msgid "Allow posts to be published at a later date" -msgstr "" - -#: ../../include/features.php:273 -msgid "Content Expiration" -msgstr "" - -#: ../../include/features.php:274 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "" - -#: ../../include/features.php:282 -msgid "Suppress Duplicate Posts/Comments" -msgstr "" - -#: ../../include/features.php:283 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "" - -#: ../../include/features.php:294 -msgid "Network and Stream Filtering" -msgstr "" - -#: ../../include/features.php:298 -msgid "Search by Date" -msgstr "" - -#: ../../include/features.php:299 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../include/features.php:307 ../../include/group.php:328 -msgid "Privacy Groups" -msgstr "" - -#: ../../include/features.php:308 -msgid "Enable management and selection of privacy groups" -msgstr "" - -#: ../../include/features.php:317 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:325 -msgid "Network Personal Tab" -msgstr "" - -#: ../../include/features.php:326 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:334 -msgid "Network New Tab" -msgstr "" - -#: ../../include/features.php:335 -msgid "Enable tab to display all new Network activity" -msgstr "" - -#: ../../include/features.php:343 -msgid "Affinity Tool" -msgstr "" - -#: ../../include/features.php:344 -msgid "Filter stream activity by depth of relationships" -msgstr "" - -#: ../../include/features.php:353 -msgid "Show friend and connection suggestions" -msgstr "" - -#: ../../include/features.php:361 -msgid "Connection Filtering" -msgstr "" - -#: ../../include/features.php:362 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "" - -#: ../../include/features.php:374 -msgid "Post/Comment Tools" -msgstr "" - -#: ../../include/features.php:379 -msgid "Use markdown for editing posts" -msgstr "" - -#: ../../include/features.php:387 -msgid "Community Tagging" -msgstr "" - -#: ../../include/features.php:388 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:396 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:397 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:405 -msgid "Emoji Reactions" -msgstr "" - -#: ../../include/features.php:406 -msgid "Add emoji reaction ability to posts" -msgstr "" - -#: ../../include/features.php:415 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:423 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:424 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:432 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:433 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/features.php:441 -msgid "Tag Cloud" -msgstr "" - -#: ../../include/features.php:442 -msgid "Provide a personal tag cloud on your channel page" -msgstr "" - -#: ../../include/features.php:453 +#: ../../include/features.php:180 msgid "Premium Channel" msgstr "" -#: ../../include/features.php:454 +#: ../../include/features.php:181 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "" -#: ../../include/taxonomy.php:377 ../../include/taxonomy.php:398 +#: ../../include/features.php:189 +msgid "Advanced Directory Search" +msgstr "" + +#: ../../include/features.php:190 +msgid "Allows creation of complex directory search queries" +msgstr "" + +#: ../../include/features.php:198 +msgid "Advanced Theme and Layout Settings" +msgstr "" + +#: ../../include/features.php:199 +msgid "Allows fine tuning of themes and page layouts" +msgstr "" + +#: ../../include/features.php:208 +msgid "Access Control and Permissions" +msgstr "" + +#: ../../include/features.php:212 ../../include/group.php:328 +msgid "Privacy Groups" +msgstr "" + +#: ../../include/features.php:213 +msgid "Enable management and selection of privacy groups" +msgstr "" + +#: ../../include/features.php:221 +msgid "Multiple Profiles" +msgstr "" + +#: ../../include/features.php:222 +msgid "Ability to create multiple profiles" +msgstr "" + +#: ../../include/features.php:232 +msgid "Provide alternate connection permission roles." +msgstr "" + +#: ../../include/features.php:240 +msgid "OAuth Clients" +msgstr "" + +#: ../../include/features.php:241 +msgid "Manage authenticatication tokens for mobile and remote apps." +msgstr "" + +#: ../../include/features.php:249 +msgid "Access Tokens" +msgstr "" + +#: ../../include/features.php:250 +msgid "Create access tokens so that non-members can access private content." +msgstr "" + +#: ../../include/features.php:261 +msgid "Post Composition Features" +msgstr "" + +#: ../../include/features.php:265 +msgid "Large Photos" +msgstr "" + +#: ../../include/features.php:266 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "" + +#: ../../include/features.php:275 +msgid "Automatically import channel content from other channels or feeds" +msgstr "" + +#: ../../include/features.php:283 +msgid "Even More Encryption" +msgstr "" + +#: ../../include/features.php:284 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "" + +#: ../../include/features.php:292 +msgid "Enable Voting Tools" +msgstr "" + +#: ../../include/features.php:293 +msgid "Provide a class of post which others can vote on" +msgstr "" + +#: ../../include/features.php:301 +msgid "Disable Comments" +msgstr "" + +#: ../../include/features.php:302 +msgid "Provide the option to disable comments for a post" +msgstr "" + +#: ../../include/features.php:310 +msgid "Delayed Posting" +msgstr "" + +#: ../../include/features.php:311 +msgid "Allow posts to be published at a later date" +msgstr "" + +#: ../../include/features.php:319 +msgid "Content Expiration" +msgstr "" + +#: ../../include/features.php:320 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "" + +#: ../../include/features.php:328 +msgid "Suppress Duplicate Posts/Comments" +msgstr "" + +#: ../../include/features.php:329 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "" + +#: ../../include/features.php:340 +msgid "Network and Stream Filtering" +msgstr "" + +#: ../../include/features.php:344 +msgid "Search by Date" +msgstr "" + +#: ../../include/features.php:345 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: ../../include/features.php:355 +msgid "Save search terms for re-use" +msgstr "" + +#: ../../include/features.php:363 +msgid "Network Personal Tab" +msgstr "" + +#: ../../include/features.php:364 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "" + +#: ../../include/features.php:372 +msgid "Network New Tab" +msgstr "" + +#: ../../include/features.php:373 +msgid "Enable tab to display all new Network activity" +msgstr "" + +#: ../../include/features.php:381 +msgid "Affinity Tool" +msgstr "" + +#: ../../include/features.php:382 +msgid "Filter stream activity by depth of relationships" +msgstr "" + +#: ../../include/features.php:391 +msgid "Show friend and connection suggestions" +msgstr "" + +#: ../../include/features.php:399 +msgid "Connection Filtering" +msgstr "" + +#: ../../include/features.php:400 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "" + +#: ../../include/features.php:412 +msgid "Post/Comment Tools" +msgstr "" + +#: ../../include/features.php:416 +msgid "Community Tagging" +msgstr "" + +#: ../../include/features.php:417 +msgid "Ability to tag existing posts" +msgstr "" + +#: ../../include/features.php:425 +msgid "Post Categories" +msgstr "" + +#: ../../include/features.php:426 +msgid "Add categories to your posts" +msgstr "" + +#: ../../include/features.php:434 +msgid "Emoji Reactions" +msgstr "" + +#: ../../include/features.php:435 +msgid "Add emoji reaction ability to posts" +msgstr "" + +#: ../../include/features.php:444 +msgid "Ability to file posts under folders" +msgstr "" + +#: ../../include/features.php:452 +msgid "Dislike Posts" +msgstr "" + +#: ../../include/features.php:453 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: ../../include/features.php:461 +msgid "Star Posts" +msgstr "" + +#: ../../include/features.php:462 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: ../../include/features.php:470 +msgid "Tag Cloud" +msgstr "" + +#: ../../include/features.php:471 +msgid "Provide a personal tag cloud on your channel page" +msgstr "" + +#: ../../include/taxonomy.php:384 ../../include/taxonomy.php:405 msgid "Tags" msgstr "" -#: ../../include/taxonomy.php:483 +#: ../../include/taxonomy.php:487 msgid "Keywords" msgstr "" -#: ../../include/taxonomy.php:504 +#: ../../include/taxonomy.php:508 msgid "have" msgstr "" -#: ../../include/taxonomy.php:504 +#: ../../include/taxonomy.php:508 msgid "has" msgstr "" -#: ../../include/taxonomy.php:505 +#: ../../include/taxonomy.php:509 msgid "want" msgstr "" -#: ../../include/taxonomy.php:505 +#: ../../include/taxonomy.php:509 msgid "wants" msgstr "" -#: ../../include/taxonomy.php:506 +#: ../../include/taxonomy.php:510 msgid "likes" msgstr "" -#: ../../include/taxonomy.php:507 +#: ../../include/taxonomy.php:511 msgid "dislikes" msgstr "" @@ -13398,256 +13725,200 @@ msgstr "" msgid "Failed to store account information." msgstr "" -#: ../../include/account.php:291 +#: ../../include/account.php:313 #, php-format msgid "Registration confirmation for %s" msgstr "" -#: ../../include/account.php:360 +#: ../../include/account.php:382 #, php-format msgid "Registration request at %s" msgstr "" -#: ../../include/account.php:382 +#: ../../include/account.php:404 msgid "your registration password" msgstr "" -#: ../../include/account.php:388 ../../include/account.php:450 +#: ../../include/account.php:410 ../../include/account.php:472 #, php-format msgid "Registration details for %s" msgstr "" -#: ../../include/account.php:461 +#: ../../include/account.php:483 msgid "Account approved." msgstr "" -#: ../../include/account.php:501 +#: ../../include/account.php:523 #, php-format msgid "Registration revoked for %s" msgstr "" -#: ../../include/account.php:780 ../../include/account.php:782 +#: ../../include/account.php:802 ../../include/account.php:804 msgid "Click here to upgrade." msgstr "" -#: ../../include/account.php:788 +#: ../../include/account.php:810 msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/account.php:793 +#: ../../include/account.php:815 msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/datetime.php:150 +#: ../../include/datetime.php:134 msgid "Birthday" msgstr "" -#: ../../include/datetime.php:152 +#: ../../include/datetime.php:134 msgid "Age: " msgstr "" -#: ../../include/datetime.php:154 +#: ../../include/datetime.php:134 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/datetime.php:298 +#: ../../include/datetime.php:238 msgid "less than a second ago" msgstr "" -#: ../../include/datetime.php:316 +#: ../../include/datetime.php:256 #, php-format msgctxt "e.g. 22 hours ago, 1 minute ago" msgid "%1$d %2$s ago" msgstr "" -#: ../../include/datetime.php:327 +#: ../../include/datetime.php:267 msgctxt "relative_date" msgid "year" msgid_plural "years" msgstr[0] "" msgstr[1] "" -#: ../../include/datetime.php:330 +#: ../../include/datetime.php:270 msgctxt "relative_date" msgid "month" msgid_plural "months" msgstr[0] "" msgstr[1] "" -#: ../../include/datetime.php:333 +#: ../../include/datetime.php:273 msgctxt "relative_date" msgid "week" msgid_plural "weeks" msgstr[0] "" msgstr[1] "" -#: ../../include/datetime.php:336 +#: ../../include/datetime.php:276 msgctxt "relative_date" msgid "day" msgid_plural "days" msgstr[0] "" msgstr[1] "" -#: ../../include/datetime.php:339 +#: ../../include/datetime.php:279 msgctxt "relative_date" msgid "hour" msgid_plural "hours" msgstr[0] "" msgstr[1] "" -#: ../../include/datetime.php:342 +#: ../../include/datetime.php:282 msgctxt "relative_date" msgid "minute" msgid_plural "minutes" msgstr[0] "" msgstr[1] "" -#: ../../include/datetime.php:345 +#: ../../include/datetime.php:285 msgctxt "relative_date" msgid "second" msgid_plural "seconds" msgstr[0] "" msgstr[1] "" -#: ../../include/datetime.php:579 +#: ../../include/datetime.php:514 #, php-format msgid "%1$s's birthday" msgstr "" -#: ../../include/datetime.php:580 +#: ../../include/datetime.php:515 #, php-format msgid "Happy Birthday %1$s" msgstr "" -#: ../../include/nav.php:98 +#: ../../include/nav.php:96 msgid "Remote authentication" msgstr "" -#: ../../include/nav.php:98 +#: ../../include/nav.php:96 msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/nav.php:105 -msgid "Network Activity" -msgstr "" - -#: ../../include/nav.php:107 -msgid "Mark all activity notifications seen" -msgstr "" - -#: ../../include/nav.php:109 -msgid "Channel home" -msgstr "" - -#: ../../include/nav.php:110 -msgid "View your channel home" -msgstr "" - -#: ../../include/nav.php:111 -msgid "Mark all channel notifications seen" -msgstr "" - -#: ../../include/nav.php:116 -msgid "Registrations" -msgstr "" - -#: ../../include/nav.php:119 -msgid "Notifications" -msgstr "" - -#: ../../include/nav.php:120 -msgid "View all notifications" -msgstr "" - -#: ../../include/nav.php:121 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../include/nav.php:123 -msgid "Private mail" -msgstr "" - -#: ../../include/nav.php:124 -msgid "View your private messages" -msgstr "" - -#: ../../include/nav.php:125 -msgid "Mark all private messages seen" -msgstr "" - -#: ../../include/nav.php:131 -msgid "Event Calendar" -msgstr "" - -#: ../../include/nav.php:136 ../../include/nav.php:222 +#: ../../include/nav.php:102 ../../include/nav.php:190 msgid "Manage Your Channels" msgstr "" -#: ../../include/nav.php:139 ../../include/nav.php:224 +#: ../../include/nav.php:105 ../../include/nav.php:192 msgid "Account/Channel Settings" msgstr "" -#: ../../include/nav.php:145 ../../include/nav.php:174 +#: ../../include/nav.php:111 ../../include/nav.php:140 msgid "End this session" msgstr "" -#: ../../include/nav.php:148 +#: ../../include/nav.php:114 msgid "Your profile page" msgstr "" -#: ../../include/nav.php:151 +#: ../../include/nav.php:117 msgid "Manage/Edit profiles" msgstr "" -#: ../../include/nav.php:153 -msgid "Edit your profile" -msgstr "" - -#: ../../include/nav.php:160 ../../include/nav.php:164 +#: ../../include/nav.php:126 ../../include/nav.php:130 msgid "Sign in" msgstr "" -#: ../../include/nav.php:189 +#: ../../include/nav.php:157 msgid "Take me home" msgstr "" -#: ../../include/nav.php:191 +#: ../../include/nav.php:159 msgid "Log me out of this site" msgstr "" -#: ../../include/nav.php:196 +#: ../../include/nav.php:164 msgid "Create an account" msgstr "" -#: ../../include/nav.php:208 +#: ../../include/nav.php:176 msgid "Help and documentation" msgstr "" -#: ../../include/nav.php:211 +#: ../../include/nav.php:179 msgid "Search site @name, #tag, ?docs, content" msgstr "" -#: ../../include/nav.php:231 +#: ../../include/nav.php:199 msgid "Site Setup and Configuration" msgstr "" -#: ../../include/nav.php:322 +#: ../../include/nav.php:290 msgid "@name, #tag, ?doc, content" msgstr "" -#: ../../include/nav.php:323 +#: ../../include/nav.php:291 msgid "Please wait..." msgstr "" -#: ../../include/nav.php:329 +#: ../../include/nav.php:297 msgid "Add Apps" msgstr "" -#: ../../include/nav.php:330 +#: ../../include/nav.php:298 msgid "Arrange Apps" msgstr "" -#: ../../include/nav.php:331 +#: ../../include/nav.php:299 msgid "Toggle System Apps" msgstr "" @@ -13678,19 +13949,23 @@ msgstr "" msgid "Upload New Photos" msgstr "" -#: ../../include/zot.php:675 +#: ../../include/zot.php:767 msgid "Invalid data packet" msgstr "" -#: ../../include/zot.php:702 +#: ../../include/zot.php:794 msgid "Unable to verify channel signature" msgstr "" -#: ../../include/zot.php:2409 +#: ../../include/zot.php:2529 #, php-format msgid "Unable to verify site signature for %s" msgstr "" +#: ../../include/zot.php:4180 +msgid "invalid target signature" +msgstr "" + #: ../../include/group.php:22 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -13734,7 +14009,7 @@ msgstr "" msgid "Email validation is incomplete. Please check your email." msgstr "" -#: ../../include/auth.php:278 +#: ../../include/auth.php:279 msgid "Failed authentication" msgstr "" diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index c6f6d2322..dc02dfb11 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -43,8 +43,7 @@ namespace Composer\Autoload; class ClassLoader { // PSR-4 - private $firstCharsPsr4 = array(); - private $prefixLengthsPsr4 = array(); // For BC with legacy static maps + private $prefixLengthsPsr4 = array(); private $prefixDirsPsr4 = array(); private $fallbackDirsPsr4 = array(); @@ -171,10 +170,11 @@ class ClassLoader } } elseif (!isset($this->prefixDirsPsr4[$prefix])) { // Register directories for a new namespace. - if ('\\' !== substr($prefix, -1)) { + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } - $this->firstCharsPsr4[$prefix[0]] = true; + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; $this->prefixDirsPsr4[$prefix] = (array) $paths; } elseif ($prepend) { // Prepend directories for an already registered namespace. @@ -221,10 +221,11 @@ class ClassLoader if (!$prefix) { $this->fallbackDirsPsr4 = (array) $paths; } else { - if ('\\' !== substr($prefix, -1)) { + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } - $this->firstCharsPsr4[$prefix[0]] = true; + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; $this->prefixDirsPsr4[$prefix] = (array) $paths; } } @@ -372,7 +373,7 @@ class ClassLoader $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; $first = $class[0]; - if (isset($this->firstCharsPsr4[$first]) || isset($this->prefixLengthsPsr4[$first])) { + if (isset($this->prefixLengthsPsr4[$first])) { $subPath = $class; while (false !== $lastPos = strrpos($subPath, '\\')) { $subPath = substr($subPath, 0, $lastPos); diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 3c3031de8..f3b48cd69 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -270,7 +270,6 @@ return array( 'HTMLPurifier_VarParser_Flexible' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php', 'HTMLPurifier_VarParser_Native' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php', 'HTMLPurifier_Zipper' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier/Zipper.php', - 'Hubzilla\\Import\\Import' => $baseDir . '/include/Import/Importer.php', 'ID3Parser\\ID3Parser' => $vendorDir . '/lukasreschke/id3parser/src/ID3Parser.php', 'ID3Parser\\getID3\\Tags\\getid3_id3v1' => $vendorDir . '/lukasreschke/id3parser/src/getID3/Tags/getid3_id3v1.php', 'ID3Parser\\getID3\\Tags\\getid3_id3v2' => $vendorDir . '/lukasreschke/id3parser/src/getID3/Tags/getid3_id3v2.php', @@ -788,6 +787,8 @@ return array( 'Zotlabs\\Daemon\\Thumbnail' => $baseDir . '/Zotlabs/Daemon/Thumbnail.php', 'Zotlabs\\Extend\\Hook' => $baseDir . '/Zotlabs/Extend/Hook.php', 'Zotlabs\\Identity\\BasicId\\BasicId' => $baseDir . '/Zotlabs/Identity/BasicId.php', + 'Zotlabs\\Identity\\OAuth2Server' => $baseDir . '/Zotlabs/Identity/OAuth2Server.php', + 'Zotlabs\\Identity\\OAuth2Storage' => $baseDir . '/Zotlabs/Identity/OAuth2Storage.php', 'Zotlabs\\Identity\\ProfilePhoto\\ProfilePhoto' => $baseDir . '/Zotlabs/Identity/ProfilePhoto.php', 'Zotlabs\\Lib\\AConfig' => $baseDir . '/Zotlabs/Lib/AConfig.php', 'Zotlabs\\Lib\\AbConfig' => $baseDir . '/Zotlabs/Lib/AbConfig.php', @@ -798,6 +799,7 @@ return array( 'Zotlabs\\Lib\\Chatroom' => $baseDir . '/Zotlabs/Lib/Chatroom.php', 'Zotlabs\\Lib\\Config' => $baseDir . '/Zotlabs/Lib/Config.php', 'Zotlabs\\Lib\\DB_Upgrade' => $baseDir . '/Zotlabs/Lib/DB_Upgrade.php', + 'Zotlabs\\Lib\\DReport' => $baseDir . '/Zotlabs/Lib/DReport.php', 'Zotlabs\\Lib\\Enotify' => $baseDir . '/Zotlabs/Lib/Enotify.php', 'Zotlabs\\Lib\\ExtendedZip' => $baseDir . '/Zotlabs/Lib/ExtendedZip.php', 'Zotlabs\\Lib\\IConfig' => $baseDir . '/Zotlabs/Lib/IConfig.php', @@ -810,15 +812,15 @@ return array( 'Zotlabs\\Lib\\PConfig' => $baseDir . '/Zotlabs/Lib/PConfig.php', 'Zotlabs\\Lib\\Permcat' => $baseDir . '/Zotlabs/Lib/Permcat.php', 'Zotlabs\\Lib\\PermissionDescription' => $baseDir . '/Zotlabs/Lib/PermissionDescription.php', - 'Zotlabs\\Lib\\ProtoDriver' => $baseDir . '/Zotlabs/Lib/ProtoDriver.php', 'Zotlabs\\Lib\\SConfig' => $baseDir . '/Zotlabs/Lib/SConfig.php', + 'Zotlabs\\Lib\\Share' => $baseDir . '/Zotlabs/Lib/Share.php', 'Zotlabs\\Lib\\SuperCurl' => $baseDir . '/Zotlabs/Lib/SuperCurl.php', 'Zotlabs\\Lib\\System' => $baseDir . '/Zotlabs/Lib/System.php', 'Zotlabs\\Lib\\Techlevels' => $baseDir . '/Zotlabs/Lib/Techlevels.php', 'Zotlabs\\Lib\\ThreadItem' => $baseDir . '/Zotlabs/Lib/ThreadItem.php', 'Zotlabs\\Lib\\ThreadStream' => $baseDir . '/Zotlabs/Lib/ThreadStream.php', + 'Zotlabs\\Lib\\Verify' => $baseDir . '/Zotlabs/Lib/Verify.php', 'Zotlabs\\Lib\\XConfig' => $baseDir . '/Zotlabs/Lib/XConfig.php', - 'Zotlabs\\Lib\\ZotDriver' => $baseDir . '/Zotlabs/Lib/ZotDriver.php', 'Zotlabs\\Module\\Achievements' => $baseDir . '/Zotlabs/Module/Achievements.php', 'Zotlabs\\Module\\Acl' => $baseDir . '/Zotlabs/Module/Acl.php', 'Zotlabs\\Module\\Admin' => $baseDir . '/Zotlabs/Module/Admin.php', @@ -874,6 +876,8 @@ return array( 'Zotlabs\\Module\\Editlayout' => $baseDir . '/Zotlabs/Module/Editlayout.php', 'Zotlabs\\Module\\Editpost' => $baseDir . '/Zotlabs/Module/Editpost.php', 'Zotlabs\\Module\\Editwebpage' => $baseDir . '/Zotlabs/Module/Editwebpage.php', + 'Zotlabs\\Module\\Email_resend' => $baseDir . '/Zotlabs/Module/Email_resend.php', + 'Zotlabs\\Module\\Email_validation' => $baseDir . '/Zotlabs/Module/Email_validation.php', 'Zotlabs\\Module\\Embedphotos' => $baseDir . '/Zotlabs/Module/Embedphotos.php', 'Zotlabs\\Module\\Events' => $baseDir . '/Zotlabs/Module/Events.php', 'Zotlabs\\Module\\Fbrowser' => $baseDir . '/Zotlabs/Module/Fbrowser.php', @@ -885,6 +889,7 @@ return array( 'Zotlabs\\Module\\Filestorage' => $baseDir . '/Zotlabs/Module/Filestorage.php', 'Zotlabs\\Module\\Follow' => $baseDir . '/Zotlabs/Module/Follow.php', 'Zotlabs\\Module\\Getfile' => $baseDir . '/Zotlabs/Module/Getfile.php', + 'Zotlabs\\Module\\Go' => $baseDir . '/Zotlabs/Module/Go.php', 'Zotlabs\\Module\\Group' => $baseDir . '/Zotlabs/Module/Group.php', 'Zotlabs\\Module\\Hcard' => $baseDir . '/Zotlabs/Module/Hcard.php', 'Zotlabs\\Module\\Help' => $baseDir . '/Zotlabs/Module/Help.php', @@ -1027,6 +1032,213 @@ return array( 'Zotlabs\\Thumbs\\Pdf' => $baseDir . '/Zotlabs/Thumbs/Pdf.php', 'Zotlabs\\Thumbs\\Text' => $baseDir . '/Zotlabs/Thumbs/Text.php', 'Zotlabs\\Thumbs\\Video' => $baseDir . '/Zotlabs/Thumbs/Video.php', + 'Zotlabs\\Update\\_1000' => $baseDir . '/Zotlabs/Update/_1000.php', + 'Zotlabs\\Update\\_1001' => $baseDir . '/Zotlabs/Update/_1001.php', + 'Zotlabs\\Update\\_1002' => $baseDir . '/Zotlabs/Update/_1002.php', + 'Zotlabs\\Update\\_1003' => $baseDir . '/Zotlabs/Update/_1003.php', + 'Zotlabs\\Update\\_1004' => $baseDir . '/Zotlabs/Update/_1004.php', + 'Zotlabs\\Update\\_1005' => $baseDir . '/Zotlabs/Update/_1005.php', + 'Zotlabs\\Update\\_1006' => $baseDir . '/Zotlabs/Update/_1006.php', + 'Zotlabs\\Update\\_1007' => $baseDir . '/Zotlabs/Update/_1007.php', + 'Zotlabs\\Update\\_1008' => $baseDir . '/Zotlabs/Update/_1008.php', + 'Zotlabs\\Update\\_1009' => $baseDir . '/Zotlabs/Update/_1009.php', + 'Zotlabs\\Update\\_1010' => $baseDir . '/Zotlabs/Update/_1010.php', + 'Zotlabs\\Update\\_1011' => $baseDir . '/Zotlabs/Update/_1011.php', + 'Zotlabs\\Update\\_1012' => $baseDir . '/Zotlabs/Update/_1012.php', + 'Zotlabs\\Update\\_1013' => $baseDir . '/Zotlabs/Update/_1013.php', + 'Zotlabs\\Update\\_1014' => $baseDir . '/Zotlabs/Update/_1014.php', + 'Zotlabs\\Update\\_1015' => $baseDir . '/Zotlabs/Update/_1015.php', + 'Zotlabs\\Update\\_1016' => $baseDir . '/Zotlabs/Update/_1016.php', + 'Zotlabs\\Update\\_1017' => $baseDir . '/Zotlabs/Update/_1017.php', + 'Zotlabs\\Update\\_1018' => $baseDir . '/Zotlabs/Update/_1018.php', + 'Zotlabs\\Update\\_1019' => $baseDir . '/Zotlabs/Update/_1019.php', + 'Zotlabs\\Update\\_1020' => $baseDir . '/Zotlabs/Update/_1020.php', + 'Zotlabs\\Update\\_1021' => $baseDir . '/Zotlabs/Update/_1021.php', + 'Zotlabs\\Update\\_1022' => $baseDir . '/Zotlabs/Update/_1022.php', + 'Zotlabs\\Update\\_1023' => $baseDir . '/Zotlabs/Update/_1023.php', + 'Zotlabs\\Update\\_1024' => $baseDir . '/Zotlabs/Update/_1024.php', + 'Zotlabs\\Update\\_1025' => $baseDir . '/Zotlabs/Update/_1025.php', + 'Zotlabs\\Update\\_1026' => $baseDir . '/Zotlabs/Update/_1026.php', + 'Zotlabs\\Update\\_1027' => $baseDir . '/Zotlabs/Update/_1027.php', + 'Zotlabs\\Update\\_1028' => $baseDir . '/Zotlabs/Update/_1028.php', + 'Zotlabs\\Update\\_1029' => $baseDir . '/Zotlabs/Update/_1029.php', + 'Zotlabs\\Update\\_1030' => $baseDir . '/Zotlabs/Update/_1030.php', + 'Zotlabs\\Update\\_1031' => $baseDir . '/Zotlabs/Update/_1031.php', + 'Zotlabs\\Update\\_1032' => $baseDir . '/Zotlabs/Update/_1032.php', + 'Zotlabs\\Update\\_1033' => $baseDir . '/Zotlabs/Update/_1033.php', + 'Zotlabs\\Update\\_1034' => $baseDir . '/Zotlabs/Update/_1034.php', + 'Zotlabs\\Update\\_1035' => $baseDir . '/Zotlabs/Update/_1035.php', + 'Zotlabs\\Update\\_1036' => $baseDir . '/Zotlabs/Update/_1036.php', + 'Zotlabs\\Update\\_1037' => $baseDir . '/Zotlabs/Update/_1037.php', + 'Zotlabs\\Update\\_1038' => $baseDir . '/Zotlabs/Update/_1038.php', + 'Zotlabs\\Update\\_1039' => $baseDir . '/Zotlabs/Update/_1039.php', + 'Zotlabs\\Update\\_1040' => $baseDir . '/Zotlabs/Update/_1040.php', + 'Zotlabs\\Update\\_1041' => $baseDir . '/Zotlabs/Update/_1041.php', + 'Zotlabs\\Update\\_1042' => $baseDir . '/Zotlabs/Update/_1042.php', + 'Zotlabs\\Update\\_1043' => $baseDir . '/Zotlabs/Update/_1043.php', + 'Zotlabs\\Update\\_1044' => $baseDir . '/Zotlabs/Update/_1044.php', + 'Zotlabs\\Update\\_1045' => $baseDir . '/Zotlabs/Update/_1045.php', + 'Zotlabs\\Update\\_1046' => $baseDir . '/Zotlabs/Update/_1046.php', + 'Zotlabs\\Update\\_1047' => $baseDir . '/Zotlabs/Update/_1047.php', + 'Zotlabs\\Update\\_1048' => $baseDir . '/Zotlabs/Update/_1048.php', + 'Zotlabs\\Update\\_1049' => $baseDir . '/Zotlabs/Update/_1049.php', + 'Zotlabs\\Update\\_1050' => $baseDir . '/Zotlabs/Update/_1050.php', + 'Zotlabs\\Update\\_1051' => $baseDir . '/Zotlabs/Update/_1051.php', + 'Zotlabs\\Update\\_1052' => $baseDir . '/Zotlabs/Update/_1052.php', + 'Zotlabs\\Update\\_1053' => $baseDir . '/Zotlabs/Update/_1053.php', + 'Zotlabs\\Update\\_1054' => $baseDir . '/Zotlabs/Update/_1054.php', + 'Zotlabs\\Update\\_1055' => $baseDir . '/Zotlabs/Update/_1055.php', + 'Zotlabs\\Update\\_1056' => $baseDir . '/Zotlabs/Update/_1056.php', + 'Zotlabs\\Update\\_1057' => $baseDir . '/Zotlabs/Update/_1057.php', + 'Zotlabs\\Update\\_1058' => $baseDir . '/Zotlabs/Update/_1058.php', + 'Zotlabs\\Update\\_1059' => $baseDir . '/Zotlabs/Update/_1059.php', + 'Zotlabs\\Update\\_1060' => $baseDir . '/Zotlabs/Update/_1060.php', + 'Zotlabs\\Update\\_1061' => $baseDir . '/Zotlabs/Update/_1061.php', + 'Zotlabs\\Update\\_1062' => $baseDir . '/Zotlabs/Update/_1062.php', + 'Zotlabs\\Update\\_1063' => $baseDir . '/Zotlabs/Update/_1063.php', + 'Zotlabs\\Update\\_1064' => $baseDir . '/Zotlabs/Update/_1064.php', + 'Zotlabs\\Update\\_1065' => $baseDir . '/Zotlabs/Update/_1065.php', + 'Zotlabs\\Update\\_1066' => $baseDir . '/Zotlabs/Update/_1066.php', + 'Zotlabs\\Update\\_1067' => $baseDir . '/Zotlabs/Update/_1067.php', + 'Zotlabs\\Update\\_1068' => $baseDir . '/Zotlabs/Update/_1068.php', + 'Zotlabs\\Update\\_1069' => $baseDir . '/Zotlabs/Update/_1069.php', + 'Zotlabs\\Update\\_1070' => $baseDir . '/Zotlabs/Update/_1070.php', + 'Zotlabs\\Update\\_1071' => $baseDir . '/Zotlabs/Update/_1071.php', + 'Zotlabs\\Update\\_1072' => $baseDir . '/Zotlabs/Update/_1072.php', + 'Zotlabs\\Update\\_1073' => $baseDir . '/Zotlabs/Update/_1073.php', + 'Zotlabs\\Update\\_1074' => $baseDir . '/Zotlabs/Update/_1074.php', + 'Zotlabs\\Update\\_1075' => $baseDir . '/Zotlabs/Update/_1075.php', + 'Zotlabs\\Update\\_1076' => $baseDir . '/Zotlabs/Update/_1076.php', + 'Zotlabs\\Update\\_1077' => $baseDir . '/Zotlabs/Update/_1077.php', + 'Zotlabs\\Update\\_1078' => $baseDir . '/Zotlabs/Update/_1078.php', + 'Zotlabs\\Update\\_1079' => $baseDir . '/Zotlabs/Update/_1079.php', + 'Zotlabs\\Update\\_1080' => $baseDir . '/Zotlabs/Update/_1080.php', + 'Zotlabs\\Update\\_1081' => $baseDir . '/Zotlabs/Update/_1081.php', + 'Zotlabs\\Update\\_1082' => $baseDir . '/Zotlabs/Update/_1082.php', + 'Zotlabs\\Update\\_1083' => $baseDir . '/Zotlabs/Update/_1083.php', + 'Zotlabs\\Update\\_1084' => $baseDir . '/Zotlabs/Update/_1084.php', + 'Zotlabs\\Update\\_1085' => $baseDir . '/Zotlabs/Update/_1085.php', + 'Zotlabs\\Update\\_1086' => $baseDir . '/Zotlabs/Update/_1086.php', + 'Zotlabs\\Update\\_1087' => $baseDir . '/Zotlabs/Update/_1087.php', + 'Zotlabs\\Update\\_1088' => $baseDir . '/Zotlabs/Update/_1088.php', + 'Zotlabs\\Update\\_1089' => $baseDir . '/Zotlabs/Update/_1089.php', + 'Zotlabs\\Update\\_1090' => $baseDir . '/Zotlabs/Update/_1090.php', + 'Zotlabs\\Update\\_1091' => $baseDir . '/Zotlabs/Update/_1091.php', + 'Zotlabs\\Update\\_1092' => $baseDir . '/Zotlabs/Update/_1092.php', + 'Zotlabs\\Update\\_1093' => $baseDir . '/Zotlabs/Update/_1093.php', + 'Zotlabs\\Update\\_1094' => $baseDir . '/Zotlabs/Update/_1094.php', + 'Zotlabs\\Update\\_1095' => $baseDir . '/Zotlabs/Update/_1095.php', + 'Zotlabs\\Update\\_1096' => $baseDir . '/Zotlabs/Update/_1096.php', + 'Zotlabs\\Update\\_1097' => $baseDir . '/Zotlabs/Update/_1097.php', + 'Zotlabs\\Update\\_1098' => $baseDir . '/Zotlabs/Update/_1098.php', + 'Zotlabs\\Update\\_1099' => $baseDir . '/Zotlabs/Update/_1099.php', + 'Zotlabs\\Update\\_1100' => $baseDir . '/Zotlabs/Update/_1100.php', + 'Zotlabs\\Update\\_1101' => $baseDir . '/Zotlabs/Update/_1101.php', + 'Zotlabs\\Update\\_1102' => $baseDir . '/Zotlabs/Update/_1102.php', + 'Zotlabs\\Update\\_1103' => $baseDir . '/Zotlabs/Update/_1103.php', + 'Zotlabs\\Update\\_1104' => $baseDir . '/Zotlabs/Update/_1104.php', + 'Zotlabs\\Update\\_1105' => $baseDir . '/Zotlabs/Update/_1105.php', + 'Zotlabs\\Update\\_1106' => $baseDir . '/Zotlabs/Update/_1106.php', + 'Zotlabs\\Update\\_1107' => $baseDir . '/Zotlabs/Update/_1107.php', + 'Zotlabs\\Update\\_1108' => $baseDir . '/Zotlabs/Update/_1108.php', + 'Zotlabs\\Update\\_1109' => $baseDir . '/Zotlabs/Update/_1109.php', + 'Zotlabs\\Update\\_1110' => $baseDir . '/Zotlabs/Update/_1110.php', + 'Zotlabs\\Update\\_1111' => $baseDir . '/Zotlabs/Update/_1111.php', + 'Zotlabs\\Update\\_1112' => $baseDir . '/Zotlabs/Update/_1112.php', + 'Zotlabs\\Update\\_1113' => $baseDir . '/Zotlabs/Update/_1113.php', + 'Zotlabs\\Update\\_1114' => $baseDir . '/Zotlabs/Update/_1114.php', + 'Zotlabs\\Update\\_1115' => $baseDir . '/Zotlabs/Update/_1115.php', + 'Zotlabs\\Update\\_1116' => $baseDir . '/Zotlabs/Update/_1116.php', + 'Zotlabs\\Update\\_1117' => $baseDir . '/Zotlabs/Update/_1117.php', + 'Zotlabs\\Update\\_1118' => $baseDir . '/Zotlabs/Update/_1118.php', + 'Zotlabs\\Update\\_1119' => $baseDir . '/Zotlabs/Update/_1119.php', + 'Zotlabs\\Update\\_1120' => $baseDir . '/Zotlabs/Update/_1120.php', + 'Zotlabs\\Update\\_1121' => $baseDir . '/Zotlabs/Update/_1121.php', + 'Zotlabs\\Update\\_1122' => $baseDir . '/Zotlabs/Update/_1122.php', + 'Zotlabs\\Update\\_1123' => $baseDir . '/Zotlabs/Update/_1123.php', + 'Zotlabs\\Update\\_1124' => $baseDir . '/Zotlabs/Update/_1124.php', + 'Zotlabs\\Update\\_1125' => $baseDir . '/Zotlabs/Update/_1125.php', + 'Zotlabs\\Update\\_1126' => $baseDir . '/Zotlabs/Update/_1126.php', + 'Zotlabs\\Update\\_1127' => $baseDir . '/Zotlabs/Update/_1127.php', + 'Zotlabs\\Update\\_1128' => $baseDir . '/Zotlabs/Update/_1128.php', + 'Zotlabs\\Update\\_1129' => $baseDir . '/Zotlabs/Update/_1129.php', + 'Zotlabs\\Update\\_1130' => $baseDir . '/Zotlabs/Update/_1130.php', + 'Zotlabs\\Update\\_1131' => $baseDir . '/Zotlabs/Update/_1131.php', + 'Zotlabs\\Update\\_1132' => $baseDir . '/Zotlabs/Update/_1132.php', + 'Zotlabs\\Update\\_1133' => $baseDir . '/Zotlabs/Update/_1133.php', + 'Zotlabs\\Update\\_1134' => $baseDir . '/Zotlabs/Update/_1134.php', + 'Zotlabs\\Update\\_1135' => $baseDir . '/Zotlabs/Update/_1135.php', + 'Zotlabs\\Update\\_1136' => $baseDir . '/Zotlabs/Update/_1136.php', + 'Zotlabs\\Update\\_1137' => $baseDir . '/Zotlabs/Update/_1137.php', + 'Zotlabs\\Update\\_1138' => $baseDir . '/Zotlabs/Update/_1138.php', + 'Zotlabs\\Update\\_1139' => $baseDir . '/Zotlabs/Update/_1139.php', + 'Zotlabs\\Update\\_1140' => $baseDir . '/Zotlabs/Update/_1140.php', + 'Zotlabs\\Update\\_1141' => $baseDir . '/Zotlabs/Update/_1141.php', + 'Zotlabs\\Update\\_1142' => $baseDir . '/Zotlabs/Update/_1142.php', + 'Zotlabs\\Update\\_1143' => $baseDir . '/Zotlabs/Update/_1143.php', + 'Zotlabs\\Update\\_1144' => $baseDir . '/Zotlabs/Update/_1144.php', + 'Zotlabs\\Update\\_1145' => $baseDir . '/Zotlabs/Update/_1145.php', + 'Zotlabs\\Update\\_1146' => $baseDir . '/Zotlabs/Update/_1146.php', + 'Zotlabs\\Update\\_1147' => $baseDir . '/Zotlabs/Update/_1147.php', + 'Zotlabs\\Update\\_1148' => $baseDir . '/Zotlabs/Update/_1148.php', + 'Zotlabs\\Update\\_1149' => $baseDir . '/Zotlabs/Update/_1149.php', + 'Zotlabs\\Update\\_1150' => $baseDir . '/Zotlabs/Update/_1150.php', + 'Zotlabs\\Update\\_1151' => $baseDir . '/Zotlabs/Update/_1151.php', + 'Zotlabs\\Update\\_1152' => $baseDir . '/Zotlabs/Update/_1152.php', + 'Zotlabs\\Update\\_1153' => $baseDir . '/Zotlabs/Update/_1153.php', + 'Zotlabs\\Update\\_1154' => $baseDir . '/Zotlabs/Update/_1154.php', + 'Zotlabs\\Update\\_1155' => $baseDir . '/Zotlabs/Update/_1155.php', + 'Zotlabs\\Update\\_1156' => $baseDir . '/Zotlabs/Update/_1156.php', + 'Zotlabs\\Update\\_1157' => $baseDir . '/Zotlabs/Update/_1157.php', + 'Zotlabs\\Update\\_1158' => $baseDir . '/Zotlabs/Update/_1158.php', + 'Zotlabs\\Update\\_1159' => $baseDir . '/Zotlabs/Update/_1159.php', + 'Zotlabs\\Update\\_1160' => $baseDir . '/Zotlabs/Update/_1160.php', + 'Zotlabs\\Update\\_1161' => $baseDir . '/Zotlabs/Update/_1161.php', + 'Zotlabs\\Update\\_1162' => $baseDir . '/Zotlabs/Update/_1162.php', + 'Zotlabs\\Update\\_1163' => $baseDir . '/Zotlabs/Update/_1163.php', + 'Zotlabs\\Update\\_1164' => $baseDir . '/Zotlabs/Update/_1164.php', + 'Zotlabs\\Update\\_1165' => $baseDir . '/Zotlabs/Update/_1165.php', + 'Zotlabs\\Update\\_1166' => $baseDir . '/Zotlabs/Update/_1166.php', + 'Zotlabs\\Update\\_1167' => $baseDir . '/Zotlabs/Update/_1167.php', + 'Zotlabs\\Update\\_1168' => $baseDir . '/Zotlabs/Update/_1168.php', + 'Zotlabs\\Update\\_1169' => $baseDir . '/Zotlabs/Update/_1169.php', + 'Zotlabs\\Update\\_1170' => $baseDir . '/Zotlabs/Update/_1170.php', + 'Zotlabs\\Update\\_1171' => $baseDir . '/Zotlabs/Update/_1171.php', + 'Zotlabs\\Update\\_1172' => $baseDir . '/Zotlabs/Update/_1172.php', + 'Zotlabs\\Update\\_1173' => $baseDir . '/Zotlabs/Update/_1173.php', + 'Zotlabs\\Update\\_1174' => $baseDir . '/Zotlabs/Update/_1174.php', + 'Zotlabs\\Update\\_1175' => $baseDir . '/Zotlabs/Update/_1175.php', + 'Zotlabs\\Update\\_1176' => $baseDir . '/Zotlabs/Update/_1176.php', + 'Zotlabs\\Update\\_1177' => $baseDir . '/Zotlabs/Update/_1177.php', + 'Zotlabs\\Update\\_1178' => $baseDir . '/Zotlabs/Update/_1178.php', + 'Zotlabs\\Update\\_1179' => $baseDir . '/Zotlabs/Update/_1179.php', + 'Zotlabs\\Update\\_1180' => $baseDir . '/Zotlabs/Update/_1180.php', + 'Zotlabs\\Update\\_1181' => $baseDir . '/Zotlabs/Update/_1181.php', + 'Zotlabs\\Update\\_1182' => $baseDir . '/Zotlabs/Update/_1182.php', + 'Zotlabs\\Update\\_1183' => $baseDir . '/Zotlabs/Update/_1183.php', + 'Zotlabs\\Update\\_1184' => $baseDir . '/Zotlabs/Update/_1184.php', + 'Zotlabs\\Update\\_1185' => $baseDir . '/Zotlabs/Update/_1185.php', + 'Zotlabs\\Update\\_1186' => $baseDir . '/Zotlabs/Update/_1186.php', + 'Zotlabs\\Update\\_1187' => $baseDir . '/Zotlabs/Update/_1187.php', + 'Zotlabs\\Update\\_1188' => $baseDir . '/Zotlabs/Update/_1188.php', + 'Zotlabs\\Update\\_1189' => $baseDir . '/Zotlabs/Update/_1189.php', + 'Zotlabs\\Update\\_1190' => $baseDir . '/Zotlabs/Update/_1190.php', + 'Zotlabs\\Update\\_1191' => $baseDir . '/Zotlabs/Update/_1191.php', + 'Zotlabs\\Update\\_1192' => $baseDir . '/Zotlabs/Update/_1192.php', + 'Zotlabs\\Update\\_1193' => $baseDir . '/Zotlabs/Update/_1193.php', + 'Zotlabs\\Update\\_1194' => $baseDir . '/Zotlabs/Update/_1194.php', + 'Zotlabs\\Update\\_1195' => $baseDir . '/Zotlabs/Update/_1195.php', + 'Zotlabs\\Update\\_1196' => $baseDir . '/Zotlabs/Update/_1196.php', + 'Zotlabs\\Update\\_1197' => $baseDir . '/Zotlabs/Update/_1197.php', + 'Zotlabs\\Update\\_1198' => $baseDir . '/Zotlabs/Update/_1198.php', + 'Zotlabs\\Update\\_1199' => $baseDir . '/Zotlabs/Update/_1199.php', + 'Zotlabs\\Update\\_1200' => $baseDir . '/Zotlabs/Update/_1200.php', + 'Zotlabs\\Update\\_1201' => $baseDir . '/Zotlabs/Update/_1201.php', + 'Zotlabs\\Update\\_1202' => $baseDir . '/Zotlabs/Update/_1202.php', + 'Zotlabs\\Update\\_1203' => $baseDir . '/Zotlabs/Update/_1203.php', + 'Zotlabs\\Update\\_1204' => $baseDir . '/Zotlabs/Update/_1204.php', + 'Zotlabs\\Update\\_1205' => $baseDir . '/Zotlabs/Update/_1205.php', + 'Zotlabs\\Update\\_1206' => $baseDir . '/Zotlabs/Update/_1206.php', 'Zotlabs\\Web\\CheckJS' => $baseDir . '/Zotlabs/Web/CheckJS.php', 'Zotlabs\\Web\\Controller' => $baseDir . '/Zotlabs/Web/Controller.php', 'Zotlabs\\Web\\HTTPHeaders' => $baseDir . '/Zotlabs/Web/HTTPHeaders.php', @@ -1069,6 +1281,7 @@ return array( 'Zotlabs\\Widget\\Item' => $baseDir . '/Zotlabs/Widget/Item.php', 'Zotlabs\\Widget\\Mailmenu' => $baseDir . '/Zotlabs/Widget/Mailmenu.php', 'Zotlabs\\Widget\\Menu_preview' => $baseDir . '/Zotlabs/Widget/Menu_preview.php', + 'Zotlabs\\Widget\\Newmember' => $baseDir . '/Zotlabs/Widget/Newmember.php', 'Zotlabs\\Widget\\Notes' => $baseDir . '/Zotlabs/Widget/Notes.php', 'Zotlabs\\Widget\\Notifications' => $baseDir . '/Zotlabs/Widget/Notifications.php', 'Zotlabs\\Widget\\Photo' => $baseDir . '/Zotlabs/Widget/Photo.php', @@ -1095,10 +1308,8 @@ return array( 'Zotlabs\\Widget\\Wiki_pages' => $baseDir . '/Zotlabs/Widget/Wiki_pages.php', 'Zotlabs\\Widget\\Zcard' => $baseDir . '/Zotlabs/Widget/Zcard.php', 'Zotlabs\\Zot\\Auth' => $baseDir . '/Zotlabs/Zot/Auth.php', - 'Zotlabs\\Zot\\DReport' => $baseDir . '/Zotlabs/Zot/DReport.php', 'Zotlabs\\Zot\\Finger' => $baseDir . '/Zotlabs/Zot/Finger.php', 'Zotlabs\\Zot\\IHandler' => $baseDir . '/Zotlabs/Zot/IHandler.php', 'Zotlabs\\Zot\\Receiver' => $baseDir . '/Zotlabs/Zot/Receiver.php', - 'Zotlabs\\Zot\\Verify' => $baseDir . '/Zotlabs/Zot/Verify.php', 'Zotlabs\\Zot\\ZotHandler' => $baseDir . '/Zotlabs/Zot/ZotHandler.php', ); diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index b0fb922de..aa6a8bce4 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -18,14 +18,43 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'f084d01b0a599f67676cffef638aa95b' => __DIR__ . '/..' . '/smarty/smarty/libs/bootstrap.php', ); - public static $firstCharsPsr4 = array ( - 'Z' => true, - 'S' => true, - 'P' => true, - 'L' => true, - 'I' => true, - 'H' => true, - 'C' => true, + public static $prefixLengthsPsr4 = array ( + 'Z' => + array ( + 'Zotlabs\\' => 8, + ), + 'S' => + array ( + 'Sabre\\Xml\\' => 10, + 'Sabre\\VObject\\' => 14, + 'Sabre\\Uri\\' => 10, + 'Sabre\\HTTP\\' => 11, + 'Sabre\\Event\\' => 12, + 'Sabre\\DAV\\' => 10, + 'Sabre\\DAVACL\\' => 13, + 'Sabre\\CardDAV\\' => 14, + 'Sabre\\CalDAV\\' => 13, + ), + 'P' => + array ( + 'Psr\\Log\\' => 8, + ), + 'L' => + array ( + 'League\\HTMLToMarkdown\\' => 22, + ), + 'I' => + array ( + 'ID3Parser\\' => 10, + ), + 'H' => + array ( + 'Hubzilla\\' => 9, + ), + 'C' => + array ( + 'CommerceGuys\\Intl\\' => 18, + ), ); public static $prefixDirsPsr4 = array ( @@ -394,7 +423,6 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'HTMLPurifier_VarParser_Flexible' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php', 'HTMLPurifier_VarParser_Native' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php', 'HTMLPurifier_Zipper' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier/Zipper.php', - 'Hubzilla\\Import\\Import' => __DIR__ . '/../..' . '/include/Import/Importer.php', 'ID3Parser\\ID3Parser' => __DIR__ . '/..' . '/lukasreschke/id3parser/src/ID3Parser.php', 'ID3Parser\\getID3\\Tags\\getid3_id3v1' => __DIR__ . '/..' . '/lukasreschke/id3parser/src/getID3/Tags/getid3_id3v1.php', 'ID3Parser\\getID3\\Tags\\getid3_id3v2' => __DIR__ . '/..' . '/lukasreschke/id3parser/src/getID3/Tags/getid3_id3v2.php', @@ -912,6 +940,8 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Daemon\\Thumbnail' => __DIR__ . '/../..' . '/Zotlabs/Daemon/Thumbnail.php', 'Zotlabs\\Extend\\Hook' => __DIR__ . '/../..' . '/Zotlabs/Extend/Hook.php', 'Zotlabs\\Identity\\BasicId\\BasicId' => __DIR__ . '/../..' . '/Zotlabs/Identity/BasicId.php', + 'Zotlabs\\Identity\\OAuth2Server' => __DIR__ . '/../..' . '/Zotlabs/Identity/OAuth2Server.php', + 'Zotlabs\\Identity\\OAuth2Storage' => __DIR__ . '/../..' . '/Zotlabs/Identity/OAuth2Storage.php', 'Zotlabs\\Identity\\ProfilePhoto\\ProfilePhoto' => __DIR__ . '/../..' . '/Zotlabs/Identity/ProfilePhoto.php', 'Zotlabs\\Lib\\AConfig' => __DIR__ . '/../..' . '/Zotlabs/Lib/AConfig.php', 'Zotlabs\\Lib\\AbConfig' => __DIR__ . '/../..' . '/Zotlabs/Lib/AbConfig.php', @@ -922,6 +952,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Lib\\Chatroom' => __DIR__ . '/../..' . '/Zotlabs/Lib/Chatroom.php', 'Zotlabs\\Lib\\Config' => __DIR__ . '/../..' . '/Zotlabs/Lib/Config.php', 'Zotlabs\\Lib\\DB_Upgrade' => __DIR__ . '/../..' . '/Zotlabs/Lib/DB_Upgrade.php', + 'Zotlabs\\Lib\\DReport' => __DIR__ . '/../..' . '/Zotlabs/Lib/DReport.php', 'Zotlabs\\Lib\\Enotify' => __DIR__ . '/../..' . '/Zotlabs/Lib/Enotify.php', 'Zotlabs\\Lib\\ExtendedZip' => __DIR__ . '/../..' . '/Zotlabs/Lib/ExtendedZip.php', 'Zotlabs\\Lib\\IConfig' => __DIR__ . '/../..' . '/Zotlabs/Lib/IConfig.php', @@ -934,15 +965,15 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Lib\\PConfig' => __DIR__ . '/../..' . '/Zotlabs/Lib/PConfig.php', 'Zotlabs\\Lib\\Permcat' => __DIR__ . '/../..' . '/Zotlabs/Lib/Permcat.php', 'Zotlabs\\Lib\\PermissionDescription' => __DIR__ . '/../..' . '/Zotlabs/Lib/PermissionDescription.php', - 'Zotlabs\\Lib\\ProtoDriver' => __DIR__ . '/../..' . '/Zotlabs/Lib/ProtoDriver.php', 'Zotlabs\\Lib\\SConfig' => __DIR__ . '/../..' . '/Zotlabs/Lib/SConfig.php', + 'Zotlabs\\Lib\\Share' => __DIR__ . '/../..' . '/Zotlabs/Lib/Share.php', 'Zotlabs\\Lib\\SuperCurl' => __DIR__ . '/../..' . '/Zotlabs/Lib/SuperCurl.php', 'Zotlabs\\Lib\\System' => __DIR__ . '/../..' . '/Zotlabs/Lib/System.php', 'Zotlabs\\Lib\\Techlevels' => __DIR__ . '/../..' . '/Zotlabs/Lib/Techlevels.php', 'Zotlabs\\Lib\\ThreadItem' => __DIR__ . '/../..' . '/Zotlabs/Lib/ThreadItem.php', 'Zotlabs\\Lib\\ThreadStream' => __DIR__ . '/../..' . '/Zotlabs/Lib/ThreadStream.php', + 'Zotlabs\\Lib\\Verify' => __DIR__ . '/../..' . '/Zotlabs/Lib/Verify.php', 'Zotlabs\\Lib\\XConfig' => __DIR__ . '/../..' . '/Zotlabs/Lib/XConfig.php', - 'Zotlabs\\Lib\\ZotDriver' => __DIR__ . '/../..' . '/Zotlabs/Lib/ZotDriver.php', 'Zotlabs\\Module\\Achievements' => __DIR__ . '/../..' . '/Zotlabs/Module/Achievements.php', 'Zotlabs\\Module\\Acl' => __DIR__ . '/../..' . '/Zotlabs/Module/Acl.php', 'Zotlabs\\Module\\Admin' => __DIR__ . '/../..' . '/Zotlabs/Module/Admin.php', @@ -998,6 +1029,8 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Editlayout' => __DIR__ . '/../..' . '/Zotlabs/Module/Editlayout.php', 'Zotlabs\\Module\\Editpost' => __DIR__ . '/../..' . '/Zotlabs/Module/Editpost.php', 'Zotlabs\\Module\\Editwebpage' => __DIR__ . '/../..' . '/Zotlabs/Module/Editwebpage.php', + 'Zotlabs\\Module\\Email_resend' => __DIR__ . '/../..' . '/Zotlabs/Module/Email_resend.php', + 'Zotlabs\\Module\\Email_validation' => __DIR__ . '/../..' . '/Zotlabs/Module/Email_validation.php', 'Zotlabs\\Module\\Embedphotos' => __DIR__ . '/../..' . '/Zotlabs/Module/Embedphotos.php', 'Zotlabs\\Module\\Events' => __DIR__ . '/../..' . '/Zotlabs/Module/Events.php', 'Zotlabs\\Module\\Fbrowser' => __DIR__ . '/../..' . '/Zotlabs/Module/Fbrowser.php', @@ -1009,6 +1042,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Filestorage' => __DIR__ . '/../..' . '/Zotlabs/Module/Filestorage.php', 'Zotlabs\\Module\\Follow' => __DIR__ . '/../..' . '/Zotlabs/Module/Follow.php', 'Zotlabs\\Module\\Getfile' => __DIR__ . '/../..' . '/Zotlabs/Module/Getfile.php', + 'Zotlabs\\Module\\Go' => __DIR__ . '/../..' . '/Zotlabs/Module/Go.php', 'Zotlabs\\Module\\Group' => __DIR__ . '/../..' . '/Zotlabs/Module/Group.php', 'Zotlabs\\Module\\Hcard' => __DIR__ . '/../..' . '/Zotlabs/Module/Hcard.php', 'Zotlabs\\Module\\Help' => __DIR__ . '/../..' . '/Zotlabs/Module/Help.php', @@ -1151,6 +1185,213 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Thumbs\\Pdf' => __DIR__ . '/../..' . '/Zotlabs/Thumbs/Pdf.php', 'Zotlabs\\Thumbs\\Text' => __DIR__ . '/../..' . '/Zotlabs/Thumbs/Text.php', 'Zotlabs\\Thumbs\\Video' => __DIR__ . '/../..' . '/Zotlabs/Thumbs/Video.php', + 'Zotlabs\\Update\\_1000' => __DIR__ . '/../..' . '/Zotlabs/Update/_1000.php', + 'Zotlabs\\Update\\_1001' => __DIR__ . '/../..' . '/Zotlabs/Update/_1001.php', + 'Zotlabs\\Update\\_1002' => __DIR__ . '/../..' . '/Zotlabs/Update/_1002.php', + 'Zotlabs\\Update\\_1003' => __DIR__ . '/../..' . '/Zotlabs/Update/_1003.php', + 'Zotlabs\\Update\\_1004' => __DIR__ . '/../..' . '/Zotlabs/Update/_1004.php', + 'Zotlabs\\Update\\_1005' => __DIR__ . '/../..' . '/Zotlabs/Update/_1005.php', + 'Zotlabs\\Update\\_1006' => __DIR__ . '/../..' . '/Zotlabs/Update/_1006.php', + 'Zotlabs\\Update\\_1007' => __DIR__ . '/../..' . '/Zotlabs/Update/_1007.php', + 'Zotlabs\\Update\\_1008' => __DIR__ . '/../..' . '/Zotlabs/Update/_1008.php', + 'Zotlabs\\Update\\_1009' => __DIR__ . '/../..' . '/Zotlabs/Update/_1009.php', + 'Zotlabs\\Update\\_1010' => __DIR__ . '/../..' . '/Zotlabs/Update/_1010.php', + 'Zotlabs\\Update\\_1011' => __DIR__ . '/../..' . '/Zotlabs/Update/_1011.php', + 'Zotlabs\\Update\\_1012' => __DIR__ . '/../..' . '/Zotlabs/Update/_1012.php', + 'Zotlabs\\Update\\_1013' => __DIR__ . '/../..' . '/Zotlabs/Update/_1013.php', + 'Zotlabs\\Update\\_1014' => __DIR__ . '/../..' . '/Zotlabs/Update/_1014.php', + 'Zotlabs\\Update\\_1015' => __DIR__ . '/../..' . '/Zotlabs/Update/_1015.php', + 'Zotlabs\\Update\\_1016' => __DIR__ . '/../..' . '/Zotlabs/Update/_1016.php', + 'Zotlabs\\Update\\_1017' => __DIR__ . '/../..' . '/Zotlabs/Update/_1017.php', + 'Zotlabs\\Update\\_1018' => __DIR__ . '/../..' . '/Zotlabs/Update/_1018.php', + 'Zotlabs\\Update\\_1019' => __DIR__ . '/../..' . '/Zotlabs/Update/_1019.php', + 'Zotlabs\\Update\\_1020' => __DIR__ . '/../..' . '/Zotlabs/Update/_1020.php', + 'Zotlabs\\Update\\_1021' => __DIR__ . '/../..' . '/Zotlabs/Update/_1021.php', + 'Zotlabs\\Update\\_1022' => __DIR__ . '/../..' . '/Zotlabs/Update/_1022.php', + 'Zotlabs\\Update\\_1023' => __DIR__ . '/../..' . '/Zotlabs/Update/_1023.php', + 'Zotlabs\\Update\\_1024' => __DIR__ . '/../..' . '/Zotlabs/Update/_1024.php', + 'Zotlabs\\Update\\_1025' => __DIR__ . '/../..' . '/Zotlabs/Update/_1025.php', + 'Zotlabs\\Update\\_1026' => __DIR__ . '/../..' . '/Zotlabs/Update/_1026.php', + 'Zotlabs\\Update\\_1027' => __DIR__ . '/../..' . '/Zotlabs/Update/_1027.php', + 'Zotlabs\\Update\\_1028' => __DIR__ . '/../..' . '/Zotlabs/Update/_1028.php', + 'Zotlabs\\Update\\_1029' => __DIR__ . '/../..' . '/Zotlabs/Update/_1029.php', + 'Zotlabs\\Update\\_1030' => __DIR__ . '/../..' . '/Zotlabs/Update/_1030.php', + 'Zotlabs\\Update\\_1031' => __DIR__ . '/../..' . '/Zotlabs/Update/_1031.php', + 'Zotlabs\\Update\\_1032' => __DIR__ . '/../..' . '/Zotlabs/Update/_1032.php', + 'Zotlabs\\Update\\_1033' => __DIR__ . '/../..' . '/Zotlabs/Update/_1033.php', + 'Zotlabs\\Update\\_1034' => __DIR__ . '/../..' . '/Zotlabs/Update/_1034.php', + 'Zotlabs\\Update\\_1035' => __DIR__ . '/../..' . '/Zotlabs/Update/_1035.php', + 'Zotlabs\\Update\\_1036' => __DIR__ . '/../..' . '/Zotlabs/Update/_1036.php', + 'Zotlabs\\Update\\_1037' => __DIR__ . '/../..' . '/Zotlabs/Update/_1037.php', + 'Zotlabs\\Update\\_1038' => __DIR__ . '/../..' . '/Zotlabs/Update/_1038.php', + 'Zotlabs\\Update\\_1039' => __DIR__ . '/../..' . '/Zotlabs/Update/_1039.php', + 'Zotlabs\\Update\\_1040' => __DIR__ . '/../..' . '/Zotlabs/Update/_1040.php', + 'Zotlabs\\Update\\_1041' => __DIR__ . '/../..' . '/Zotlabs/Update/_1041.php', + 'Zotlabs\\Update\\_1042' => __DIR__ . '/../..' . '/Zotlabs/Update/_1042.php', + 'Zotlabs\\Update\\_1043' => __DIR__ . '/../..' . '/Zotlabs/Update/_1043.php', + 'Zotlabs\\Update\\_1044' => __DIR__ . '/../..' . '/Zotlabs/Update/_1044.php', + 'Zotlabs\\Update\\_1045' => __DIR__ . '/../..' . '/Zotlabs/Update/_1045.php', + 'Zotlabs\\Update\\_1046' => __DIR__ . '/../..' . '/Zotlabs/Update/_1046.php', + 'Zotlabs\\Update\\_1047' => __DIR__ . '/../..' . '/Zotlabs/Update/_1047.php', + 'Zotlabs\\Update\\_1048' => __DIR__ . '/../..' . '/Zotlabs/Update/_1048.php', + 'Zotlabs\\Update\\_1049' => __DIR__ . '/../..' . '/Zotlabs/Update/_1049.php', + 'Zotlabs\\Update\\_1050' => __DIR__ . '/../..' . '/Zotlabs/Update/_1050.php', + 'Zotlabs\\Update\\_1051' => __DIR__ . '/../..' . '/Zotlabs/Update/_1051.php', + 'Zotlabs\\Update\\_1052' => __DIR__ . '/../..' . '/Zotlabs/Update/_1052.php', + 'Zotlabs\\Update\\_1053' => __DIR__ . '/../..' . '/Zotlabs/Update/_1053.php', + 'Zotlabs\\Update\\_1054' => __DIR__ . '/../..' . '/Zotlabs/Update/_1054.php', + 'Zotlabs\\Update\\_1055' => __DIR__ . '/../..' . '/Zotlabs/Update/_1055.php', + 'Zotlabs\\Update\\_1056' => __DIR__ . '/../..' . '/Zotlabs/Update/_1056.php', + 'Zotlabs\\Update\\_1057' => __DIR__ . '/../..' . '/Zotlabs/Update/_1057.php', + 'Zotlabs\\Update\\_1058' => __DIR__ . '/../..' . '/Zotlabs/Update/_1058.php', + 'Zotlabs\\Update\\_1059' => __DIR__ . '/../..' . '/Zotlabs/Update/_1059.php', + 'Zotlabs\\Update\\_1060' => __DIR__ . '/../..' . '/Zotlabs/Update/_1060.php', + 'Zotlabs\\Update\\_1061' => __DIR__ . '/../..' . '/Zotlabs/Update/_1061.php', + 'Zotlabs\\Update\\_1062' => __DIR__ . '/../..' . '/Zotlabs/Update/_1062.php', + 'Zotlabs\\Update\\_1063' => __DIR__ . '/../..' . '/Zotlabs/Update/_1063.php', + 'Zotlabs\\Update\\_1064' => __DIR__ . '/../..' . '/Zotlabs/Update/_1064.php', + 'Zotlabs\\Update\\_1065' => __DIR__ . '/../..' . '/Zotlabs/Update/_1065.php', + 'Zotlabs\\Update\\_1066' => __DIR__ . '/../..' . '/Zotlabs/Update/_1066.php', + 'Zotlabs\\Update\\_1067' => __DIR__ . '/../..' . '/Zotlabs/Update/_1067.php', + 'Zotlabs\\Update\\_1068' => __DIR__ . '/../..' . '/Zotlabs/Update/_1068.php', + 'Zotlabs\\Update\\_1069' => __DIR__ . '/../..' . '/Zotlabs/Update/_1069.php', + 'Zotlabs\\Update\\_1070' => __DIR__ . '/../..' . '/Zotlabs/Update/_1070.php', + 'Zotlabs\\Update\\_1071' => __DIR__ . '/../..' . '/Zotlabs/Update/_1071.php', + 'Zotlabs\\Update\\_1072' => __DIR__ . '/../..' . '/Zotlabs/Update/_1072.php', + 'Zotlabs\\Update\\_1073' => __DIR__ . '/../..' . '/Zotlabs/Update/_1073.php', + 'Zotlabs\\Update\\_1074' => __DIR__ . '/../..' . '/Zotlabs/Update/_1074.php', + 'Zotlabs\\Update\\_1075' => __DIR__ . '/../..' . '/Zotlabs/Update/_1075.php', + 'Zotlabs\\Update\\_1076' => __DIR__ . '/../..' . '/Zotlabs/Update/_1076.php', + 'Zotlabs\\Update\\_1077' => __DIR__ . '/../..' . '/Zotlabs/Update/_1077.php', + 'Zotlabs\\Update\\_1078' => __DIR__ . '/../..' . '/Zotlabs/Update/_1078.php', + 'Zotlabs\\Update\\_1079' => __DIR__ . '/../..' . '/Zotlabs/Update/_1079.php', + 'Zotlabs\\Update\\_1080' => __DIR__ . '/../..' . '/Zotlabs/Update/_1080.php', + 'Zotlabs\\Update\\_1081' => __DIR__ . '/../..' . '/Zotlabs/Update/_1081.php', + 'Zotlabs\\Update\\_1082' => __DIR__ . '/../..' . '/Zotlabs/Update/_1082.php', + 'Zotlabs\\Update\\_1083' => __DIR__ . '/../..' . '/Zotlabs/Update/_1083.php', + 'Zotlabs\\Update\\_1084' => __DIR__ . '/../..' . '/Zotlabs/Update/_1084.php', + 'Zotlabs\\Update\\_1085' => __DIR__ . '/../..' . '/Zotlabs/Update/_1085.php', + 'Zotlabs\\Update\\_1086' => __DIR__ . '/../..' . '/Zotlabs/Update/_1086.php', + 'Zotlabs\\Update\\_1087' => __DIR__ . '/../..' . '/Zotlabs/Update/_1087.php', + 'Zotlabs\\Update\\_1088' => __DIR__ . '/../..' . '/Zotlabs/Update/_1088.php', + 'Zotlabs\\Update\\_1089' => __DIR__ . '/../..' . '/Zotlabs/Update/_1089.php', + 'Zotlabs\\Update\\_1090' => __DIR__ . '/../..' . '/Zotlabs/Update/_1090.php', + 'Zotlabs\\Update\\_1091' => __DIR__ . '/../..' . '/Zotlabs/Update/_1091.php', + 'Zotlabs\\Update\\_1092' => __DIR__ . '/../..' . '/Zotlabs/Update/_1092.php', + 'Zotlabs\\Update\\_1093' => __DIR__ . '/../..' . '/Zotlabs/Update/_1093.php', + 'Zotlabs\\Update\\_1094' => __DIR__ . '/../..' . '/Zotlabs/Update/_1094.php', + 'Zotlabs\\Update\\_1095' => __DIR__ . '/../..' . '/Zotlabs/Update/_1095.php', + 'Zotlabs\\Update\\_1096' => __DIR__ . '/../..' . '/Zotlabs/Update/_1096.php', + 'Zotlabs\\Update\\_1097' => __DIR__ . '/../..' . '/Zotlabs/Update/_1097.php', + 'Zotlabs\\Update\\_1098' => __DIR__ . '/../..' . '/Zotlabs/Update/_1098.php', + 'Zotlabs\\Update\\_1099' => __DIR__ . '/../..' . '/Zotlabs/Update/_1099.php', + 'Zotlabs\\Update\\_1100' => __DIR__ . '/../..' . '/Zotlabs/Update/_1100.php', + 'Zotlabs\\Update\\_1101' => __DIR__ . '/../..' . '/Zotlabs/Update/_1101.php', + 'Zotlabs\\Update\\_1102' => __DIR__ . '/../..' . '/Zotlabs/Update/_1102.php', + 'Zotlabs\\Update\\_1103' => __DIR__ . '/../..' . '/Zotlabs/Update/_1103.php', + 'Zotlabs\\Update\\_1104' => __DIR__ . '/../..' . '/Zotlabs/Update/_1104.php', + 'Zotlabs\\Update\\_1105' => __DIR__ . '/../..' . '/Zotlabs/Update/_1105.php', + 'Zotlabs\\Update\\_1106' => __DIR__ . '/../..' . '/Zotlabs/Update/_1106.php', + 'Zotlabs\\Update\\_1107' => __DIR__ . '/../..' . '/Zotlabs/Update/_1107.php', + 'Zotlabs\\Update\\_1108' => __DIR__ . '/../..' . '/Zotlabs/Update/_1108.php', + 'Zotlabs\\Update\\_1109' => __DIR__ . '/../..' . '/Zotlabs/Update/_1109.php', + 'Zotlabs\\Update\\_1110' => __DIR__ . '/../..' . '/Zotlabs/Update/_1110.php', + 'Zotlabs\\Update\\_1111' => __DIR__ . '/../..' . '/Zotlabs/Update/_1111.php', + 'Zotlabs\\Update\\_1112' => __DIR__ . '/../..' . '/Zotlabs/Update/_1112.php', + 'Zotlabs\\Update\\_1113' => __DIR__ . '/../..' . '/Zotlabs/Update/_1113.php', + 'Zotlabs\\Update\\_1114' => __DIR__ . '/../..' . '/Zotlabs/Update/_1114.php', + 'Zotlabs\\Update\\_1115' => __DIR__ . '/../..' . '/Zotlabs/Update/_1115.php', + 'Zotlabs\\Update\\_1116' => __DIR__ . '/../..' . '/Zotlabs/Update/_1116.php', + 'Zotlabs\\Update\\_1117' => __DIR__ . '/../..' . '/Zotlabs/Update/_1117.php', + 'Zotlabs\\Update\\_1118' => __DIR__ . '/../..' . '/Zotlabs/Update/_1118.php', + 'Zotlabs\\Update\\_1119' => __DIR__ . '/../..' . '/Zotlabs/Update/_1119.php', + 'Zotlabs\\Update\\_1120' => __DIR__ . '/../..' . '/Zotlabs/Update/_1120.php', + 'Zotlabs\\Update\\_1121' => __DIR__ . '/../..' . '/Zotlabs/Update/_1121.php', + 'Zotlabs\\Update\\_1122' => __DIR__ . '/../..' . '/Zotlabs/Update/_1122.php', + 'Zotlabs\\Update\\_1123' => __DIR__ . '/../..' . '/Zotlabs/Update/_1123.php', + 'Zotlabs\\Update\\_1124' => __DIR__ . '/../..' . '/Zotlabs/Update/_1124.php', + 'Zotlabs\\Update\\_1125' => __DIR__ . '/../..' . '/Zotlabs/Update/_1125.php', + 'Zotlabs\\Update\\_1126' => __DIR__ . '/../..' . '/Zotlabs/Update/_1126.php', + 'Zotlabs\\Update\\_1127' => __DIR__ . '/../..' . '/Zotlabs/Update/_1127.php', + 'Zotlabs\\Update\\_1128' => __DIR__ . '/../..' . '/Zotlabs/Update/_1128.php', + 'Zotlabs\\Update\\_1129' => __DIR__ . '/../..' . '/Zotlabs/Update/_1129.php', + 'Zotlabs\\Update\\_1130' => __DIR__ . '/../..' . '/Zotlabs/Update/_1130.php', + 'Zotlabs\\Update\\_1131' => __DIR__ . '/../..' . '/Zotlabs/Update/_1131.php', + 'Zotlabs\\Update\\_1132' => __DIR__ . '/../..' . '/Zotlabs/Update/_1132.php', + 'Zotlabs\\Update\\_1133' => __DIR__ . '/../..' . '/Zotlabs/Update/_1133.php', + 'Zotlabs\\Update\\_1134' => __DIR__ . '/../..' . '/Zotlabs/Update/_1134.php', + 'Zotlabs\\Update\\_1135' => __DIR__ . '/../..' . '/Zotlabs/Update/_1135.php', + 'Zotlabs\\Update\\_1136' => __DIR__ . '/../..' . '/Zotlabs/Update/_1136.php', + 'Zotlabs\\Update\\_1137' => __DIR__ . '/../..' . '/Zotlabs/Update/_1137.php', + 'Zotlabs\\Update\\_1138' => __DIR__ . '/../..' . '/Zotlabs/Update/_1138.php', + 'Zotlabs\\Update\\_1139' => __DIR__ . '/../..' . '/Zotlabs/Update/_1139.php', + 'Zotlabs\\Update\\_1140' => __DIR__ . '/../..' . '/Zotlabs/Update/_1140.php', + 'Zotlabs\\Update\\_1141' => __DIR__ . '/../..' . '/Zotlabs/Update/_1141.php', + 'Zotlabs\\Update\\_1142' => __DIR__ . '/../..' . '/Zotlabs/Update/_1142.php', + 'Zotlabs\\Update\\_1143' => __DIR__ . '/../..' . '/Zotlabs/Update/_1143.php', + 'Zotlabs\\Update\\_1144' => __DIR__ . '/../..' . '/Zotlabs/Update/_1144.php', + 'Zotlabs\\Update\\_1145' => __DIR__ . '/../..' . '/Zotlabs/Update/_1145.php', + 'Zotlabs\\Update\\_1146' => __DIR__ . '/../..' . '/Zotlabs/Update/_1146.php', + 'Zotlabs\\Update\\_1147' => __DIR__ . '/../..' . '/Zotlabs/Update/_1147.php', + 'Zotlabs\\Update\\_1148' => __DIR__ . '/../..' . '/Zotlabs/Update/_1148.php', + 'Zotlabs\\Update\\_1149' => __DIR__ . '/../..' . '/Zotlabs/Update/_1149.php', + 'Zotlabs\\Update\\_1150' => __DIR__ . '/../..' . '/Zotlabs/Update/_1150.php', + 'Zotlabs\\Update\\_1151' => __DIR__ . '/../..' . '/Zotlabs/Update/_1151.php', + 'Zotlabs\\Update\\_1152' => __DIR__ . '/../..' . '/Zotlabs/Update/_1152.php', + 'Zotlabs\\Update\\_1153' => __DIR__ . '/../..' . '/Zotlabs/Update/_1153.php', + 'Zotlabs\\Update\\_1154' => __DIR__ . '/../..' . '/Zotlabs/Update/_1154.php', + 'Zotlabs\\Update\\_1155' => __DIR__ . '/../..' . '/Zotlabs/Update/_1155.php', + 'Zotlabs\\Update\\_1156' => __DIR__ . '/../..' . '/Zotlabs/Update/_1156.php', + 'Zotlabs\\Update\\_1157' => __DIR__ . '/../..' . '/Zotlabs/Update/_1157.php', + 'Zotlabs\\Update\\_1158' => __DIR__ . '/../..' . '/Zotlabs/Update/_1158.php', + 'Zotlabs\\Update\\_1159' => __DIR__ . '/../..' . '/Zotlabs/Update/_1159.php', + 'Zotlabs\\Update\\_1160' => __DIR__ . '/../..' . '/Zotlabs/Update/_1160.php', + 'Zotlabs\\Update\\_1161' => __DIR__ . '/../..' . '/Zotlabs/Update/_1161.php', + 'Zotlabs\\Update\\_1162' => __DIR__ . '/../..' . '/Zotlabs/Update/_1162.php', + 'Zotlabs\\Update\\_1163' => __DIR__ . '/../..' . '/Zotlabs/Update/_1163.php', + 'Zotlabs\\Update\\_1164' => __DIR__ . '/../..' . '/Zotlabs/Update/_1164.php', + 'Zotlabs\\Update\\_1165' => __DIR__ . '/../..' . '/Zotlabs/Update/_1165.php', + 'Zotlabs\\Update\\_1166' => __DIR__ . '/../..' . '/Zotlabs/Update/_1166.php', + 'Zotlabs\\Update\\_1167' => __DIR__ . '/../..' . '/Zotlabs/Update/_1167.php', + 'Zotlabs\\Update\\_1168' => __DIR__ . '/../..' . '/Zotlabs/Update/_1168.php', + 'Zotlabs\\Update\\_1169' => __DIR__ . '/../..' . '/Zotlabs/Update/_1169.php', + 'Zotlabs\\Update\\_1170' => __DIR__ . '/../..' . '/Zotlabs/Update/_1170.php', + 'Zotlabs\\Update\\_1171' => __DIR__ . '/../..' . '/Zotlabs/Update/_1171.php', + 'Zotlabs\\Update\\_1172' => __DIR__ . '/../..' . '/Zotlabs/Update/_1172.php', + 'Zotlabs\\Update\\_1173' => __DIR__ . '/../..' . '/Zotlabs/Update/_1173.php', + 'Zotlabs\\Update\\_1174' => __DIR__ . '/../..' . '/Zotlabs/Update/_1174.php', + 'Zotlabs\\Update\\_1175' => __DIR__ . '/../..' . '/Zotlabs/Update/_1175.php', + 'Zotlabs\\Update\\_1176' => __DIR__ . '/../..' . '/Zotlabs/Update/_1176.php', + 'Zotlabs\\Update\\_1177' => __DIR__ . '/../..' . '/Zotlabs/Update/_1177.php', + 'Zotlabs\\Update\\_1178' => __DIR__ . '/../..' . '/Zotlabs/Update/_1178.php', + 'Zotlabs\\Update\\_1179' => __DIR__ . '/../..' . '/Zotlabs/Update/_1179.php', + 'Zotlabs\\Update\\_1180' => __DIR__ . '/../..' . '/Zotlabs/Update/_1180.php', + 'Zotlabs\\Update\\_1181' => __DIR__ . '/../..' . '/Zotlabs/Update/_1181.php', + 'Zotlabs\\Update\\_1182' => __DIR__ . '/../..' . '/Zotlabs/Update/_1182.php', + 'Zotlabs\\Update\\_1183' => __DIR__ . '/../..' . '/Zotlabs/Update/_1183.php', + 'Zotlabs\\Update\\_1184' => __DIR__ . '/../..' . '/Zotlabs/Update/_1184.php', + 'Zotlabs\\Update\\_1185' => __DIR__ . '/../..' . '/Zotlabs/Update/_1185.php', + 'Zotlabs\\Update\\_1186' => __DIR__ . '/../..' . '/Zotlabs/Update/_1186.php', + 'Zotlabs\\Update\\_1187' => __DIR__ . '/../..' . '/Zotlabs/Update/_1187.php', + 'Zotlabs\\Update\\_1188' => __DIR__ . '/../..' . '/Zotlabs/Update/_1188.php', + 'Zotlabs\\Update\\_1189' => __DIR__ . '/../..' . '/Zotlabs/Update/_1189.php', + 'Zotlabs\\Update\\_1190' => __DIR__ . '/../..' . '/Zotlabs/Update/_1190.php', + 'Zotlabs\\Update\\_1191' => __DIR__ . '/../..' . '/Zotlabs/Update/_1191.php', + 'Zotlabs\\Update\\_1192' => __DIR__ . '/../..' . '/Zotlabs/Update/_1192.php', + 'Zotlabs\\Update\\_1193' => __DIR__ . '/../..' . '/Zotlabs/Update/_1193.php', + 'Zotlabs\\Update\\_1194' => __DIR__ . '/../..' . '/Zotlabs/Update/_1194.php', + 'Zotlabs\\Update\\_1195' => __DIR__ . '/../..' . '/Zotlabs/Update/_1195.php', + 'Zotlabs\\Update\\_1196' => __DIR__ . '/../..' . '/Zotlabs/Update/_1196.php', + 'Zotlabs\\Update\\_1197' => __DIR__ . '/../..' . '/Zotlabs/Update/_1197.php', + 'Zotlabs\\Update\\_1198' => __DIR__ . '/../..' . '/Zotlabs/Update/_1198.php', + 'Zotlabs\\Update\\_1199' => __DIR__ . '/../..' . '/Zotlabs/Update/_1199.php', + 'Zotlabs\\Update\\_1200' => __DIR__ . '/../..' . '/Zotlabs/Update/_1200.php', + 'Zotlabs\\Update\\_1201' => __DIR__ . '/../..' . '/Zotlabs/Update/_1201.php', + 'Zotlabs\\Update\\_1202' => __DIR__ . '/../..' . '/Zotlabs/Update/_1202.php', + 'Zotlabs\\Update\\_1203' => __DIR__ . '/../..' . '/Zotlabs/Update/_1203.php', + 'Zotlabs\\Update\\_1204' => __DIR__ . '/../..' . '/Zotlabs/Update/_1204.php', + 'Zotlabs\\Update\\_1205' => __DIR__ . '/../..' . '/Zotlabs/Update/_1205.php', + 'Zotlabs\\Update\\_1206' => __DIR__ . '/../..' . '/Zotlabs/Update/_1206.php', 'Zotlabs\\Web\\CheckJS' => __DIR__ . '/../..' . '/Zotlabs/Web/CheckJS.php', 'Zotlabs\\Web\\Controller' => __DIR__ . '/../..' . '/Zotlabs/Web/Controller.php', 'Zotlabs\\Web\\HTTPHeaders' => __DIR__ . '/../..' . '/Zotlabs/Web/HTTPHeaders.php', @@ -1193,6 +1434,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Widget\\Item' => __DIR__ . '/../..' . '/Zotlabs/Widget/Item.php', 'Zotlabs\\Widget\\Mailmenu' => __DIR__ . '/../..' . '/Zotlabs/Widget/Mailmenu.php', 'Zotlabs\\Widget\\Menu_preview' => __DIR__ . '/../..' . '/Zotlabs/Widget/Menu_preview.php', + 'Zotlabs\\Widget\\Newmember' => __DIR__ . '/../..' . '/Zotlabs/Widget/Newmember.php', 'Zotlabs\\Widget\\Notes' => __DIR__ . '/../..' . '/Zotlabs/Widget/Notes.php', 'Zotlabs\\Widget\\Notifications' => __DIR__ . '/../..' . '/Zotlabs/Widget/Notifications.php', 'Zotlabs\\Widget\\Photo' => __DIR__ . '/../..' . '/Zotlabs/Widget/Photo.php', @@ -1219,18 +1461,16 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Widget\\Wiki_pages' => __DIR__ . '/../..' . '/Zotlabs/Widget/Wiki_pages.php', 'Zotlabs\\Widget\\Zcard' => __DIR__ . '/../..' . '/Zotlabs/Widget/Zcard.php', 'Zotlabs\\Zot\\Auth' => __DIR__ . '/../..' . '/Zotlabs/Zot/Auth.php', - 'Zotlabs\\Zot\\DReport' => __DIR__ . '/../..' . '/Zotlabs/Zot/DReport.php', 'Zotlabs\\Zot\\Finger' => __DIR__ . '/../..' . '/Zotlabs/Zot/Finger.php', 'Zotlabs\\Zot\\IHandler' => __DIR__ . '/../..' . '/Zotlabs/Zot/IHandler.php', 'Zotlabs\\Zot\\Receiver' => __DIR__ . '/../..' . '/Zotlabs/Zot/Receiver.php', - 'Zotlabs\\Zot\\Verify' => __DIR__ . '/../..' . '/Zotlabs/Zot/Verify.php', 'Zotlabs\\Zot\\ZotHandler' => __DIR__ . '/../..' . '/Zotlabs/Zot/ZotHandler.php', ); public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->firstCharsPsr4 = ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d::$firstCharsPsr4; + $loader->prefixLengthsPsr4 = ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d::$prefixLengthsPsr4; $loader->prefixDirsPsr4 = ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d::$prefixDirsPsr4; $loader->prefixesPsr0 = ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d::$prefixesPsr0; $loader->classMap = ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d::$classMap; diff --git a/view/css/mod_admin.css b/view/css/mod_admin.css index 409744402..5e22fc90c 100644 --- a/view/css/mod_admin.css +++ b/view/css/mod_admin.css @@ -70,3 +70,21 @@ margin-top: 0px !important; margin-left: 0px !important; } + +pre code { + background: #F5F5F5; + font-family: Courier, monospace; + font-size: 1em; + padding: 1em 1.5em; + display: block; + white-space: pre-wrap; +} + +code { + background: #F5F5F5; + font-family: Courier, monospace; + font-size: 1em; + display: inline; + padding: 0.2em 0.2em; + white-space: pre-wrap; +} \ No newline at end of file diff --git a/view/css/mod_connections.css b/view/css/mod_connections.css index 00e6e2a70..4c26193b4 100644 --- a/view/css/mod_connections.css +++ b/view/css/mod_connections.css @@ -36,4 +36,10 @@ .connphone { color: green; -} \ No newline at end of file +} + +.contact-photo-wrapper .oneway-overlay { + margin-top: -25px; + margin-left: 53px; + font-size: 20px; +} diff --git a/view/css/mod_viewconnections.css b/view/css/mod_viewconnections.css index 56add4cac..1b0c7ab62 100644 --- a/view/css/mod_viewconnections.css +++ b/view/css/mod_viewconnections.css @@ -31,3 +31,9 @@ .contact-entry-end { clear: both; } + +.contact-entry-photo-wrapper .oneway-overlay { + margin-top: 25px; + margin-left: -25px; + font-size: 20px; +} diff --git a/view/css/widgets.css b/view/css/widgets.css index a32ac045b..f97029aad 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -179,14 +179,14 @@ a.wikilist { overflow: auto; } -.notifications-textinput input { - font-family: FontAwesome, sans-serif; -} - .notifications-textinput { padding: .75rem 0.85rem; } +.notifications-textinput input { + padding-left: 1.75rem; +} + .notifications-textinput-clear { padding: .5rem; line-height: 1; @@ -196,6 +196,14 @@ a.wikilist { cursor: pointer; } +.notifications-textinput-filter { + padding: .5rem; + line-height: 1; + position: absolute; + top: .75rem; + left: 0.75rem; +} + .notification-content.collapsing { overflow: hidden; } @@ -216,3 +224,10 @@ a.wikilist { #notifications { margin-bottom: 1rem; } + +/* contact block */ +.contact-block-div .oneway-overlay { + font-size: 20px; + margin-left: -25px; + margin-top: 25px; +} diff --git a/view/de-de/hmessages.po b/view/de-de/hmessages.po index f68a96c22..53dcc0d43 100644 --- a/view/de-de/hmessages.po +++ b/view/de-de/hmessages.po @@ -11,22 +11,24 @@ # Ettore Atalan , 2015-2017 # Frank Dieckmann , 2013 # Harald Klimach , 2016 +# Herbert Thielen , 2018 +# Holger - , 2018 # JooBee , 2014 # Kai , 2015 # Oliver , 2015-2017 -# Phellmes , 2014,2016-2017 +# Phellmes , 2014,2016-2018 # sasiflo , 2014 # Steff , 2015-2016 # Tobias Diekershoff , 2016 -# Tobias Diekershoff , 2016-2017 +# Tobias Diekershoff , 2016-2018 # zottel , 2015 # sasiflo , 2015 msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-13 12:54+0100\n" -"PO-Revision-Date: 2017-12-19 11:56+0000\n" +"POT-Creation-Date: 2018-03-01 08:51+0100\n" +"PO-Revision-Date: 2018-03-04 23:22+0000\n" "Last-Translator: Phellmes \n" "Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" @@ -164,13 +166,13 @@ msgid "Special - Group Repository" msgstr "Speziell - Gruppenarchiv" #: ../../Zotlabs/Access/PermissionRoles.php:287 -#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Settings/Channel.php:474 -#: ../../Zotlabs/Module/Connedit.php:936 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Register.php:221 ../../include/selectors.php:49 +#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Settings/Channel.php:473 +#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/event.php:1308 -#: ../../include/event.php:1315 ../../include/connections.php:689 +#: ../../include/selectors.php:140 ../../include/event.php:1315 +#: ../../include/event.php:1322 ../../include/connections.php:689 #: ../../include/connections.php:696 msgid "Other" msgstr "Andere" @@ -184,7 +186,7 @@ msgstr "Benutzerdefiniert/Expertenmodus" #: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Cards.php:29 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 #: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1198 msgid "Requested profile is not available." msgstr "Das angefragte Profil ist nicht verfügbar." @@ -199,7 +201,7 @@ msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Appman.php:86 ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Article_edit.php:51 #: ../../Zotlabs/Module/New_channel.php:77 -#: ../../Zotlabs/Module/New_channel.php:104 +#: ../../Zotlabs/Module/New_channel.php:102 #: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 #: ../../Zotlabs/Module/Moderate.php:13 #: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:275 @@ -211,11 +213,11 @@ msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 #: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:400 #: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../Zotlabs/Module/Profile_photo.php:307 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:228 -#: ../../Zotlabs/Module/Item.php:245 ../../Zotlabs/Module/Item.php:255 -#: ../../Zotlabs/Module/Item.php:1085 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Profile_photo.php:302 +#: ../../Zotlabs/Module/Profile_photo.php:315 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 +#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 +#: ../../Zotlabs/Module/Item.php:1099 ../../Zotlabs/Module/Page.php:34 #: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 #: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 #: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 @@ -226,15 +228,15 @@ msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:107 #: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Cards.php:68 ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 #: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 #: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 -#: ../../Zotlabs/Module/Like.php:184 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 #: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 #: ../../Zotlabs/Module/Register.php:77 #: ../../Zotlabs/Module/Cover_photo.php:281 #: ../../Zotlabs/Module/Cover_photo.php:294 -#: ../../Zotlabs/Module/Display.php:404 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Display.php:406 ../../Zotlabs/Module/Network.php:15 #: ../../Zotlabs/Module/Filestorage.php:15 #: ../../Zotlabs/Module/Filestorage.php:70 #: ../../Zotlabs/Module/Filestorage.php:85 @@ -244,7 +246,7 @@ msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 #: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:169 +#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 #: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 #: ../../addon/gitwiki/Mod_Gitwiki.php:196 #: ../../addon/gitwiki/Mod_Gitwiki.php:292 ../../addon/pumpio/pumpio.php:40 @@ -252,9 +254,9 @@ msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../include/attach.php:270 ../../include/attach.php:284 #: ../../include/attach.php:293 ../../include/attach.php:366 #: ../../include/attach.php:380 ../../include/attach.php:387 -#: ../../include/attach.php:469 ../../include/attach.php:1008 -#: ../../include/attach.php:1082 ../../include/attach.php:1247 -#: ../../include/items.php:3633 ../../include/photos.php:27 +#: ../../include/attach.php:469 ../../include/attach.php:1019 +#: ../../include/attach.php:1093 ../../include/attach.php:1258 +#: ../../include/items.php:3656 ../../include/photos.php:27 msgid "Permission denied." msgstr "Berechtigung verweigert." @@ -263,7 +265,7 @@ msgstr "Berechtigung verweigert." msgid "Block Name" msgstr "Block-Name" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2288 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2402 msgid "Blocks" msgstr "Blöcke" @@ -282,11 +284,11 @@ msgid "Edited" msgstr "Geändert" #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 -#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:147 -#: ../../Zotlabs/Module/Connedit.php:939 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:146 +#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Cards.php:96 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Storage/Browser.php:273 ../../Zotlabs/Storage/Browser.php:379 +#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 #: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 msgid "Create" msgstr "Erstelle" @@ -296,15 +298,15 @@ msgstr "Erstelle" #: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Settings/Oauth.php:149 #: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Connections.php:260 -#: ../../Zotlabs/Module/Connections.php:297 -#: ../../Zotlabs/Module/Connections.php:317 ../../Zotlabs/Module/Wiki.php:202 +#: ../../Zotlabs/Module/Connections.php:265 +#: ../../Zotlabs/Module/Connections.php:303 +#: ../../Zotlabs/Module/Connections.php:323 ../../Zotlabs/Module/Wiki.php:202 #: ../../Zotlabs/Module/Wiki.php:358 ../../Zotlabs/Module/Menu.php:112 #: ../../Zotlabs/Module/Layouts.php:193 #: ../../Zotlabs/Module/Editwebpage.php:142 #: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Editpost.php:85 -#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Lib/Apps.php:399 -#: ../../Zotlabs/Lib/ThreadItem.php:121 ../../Zotlabs/Storage/Browser.php:285 +#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Lib/Apps.php:409 +#: ../../Zotlabs/Lib/ThreadItem.php:121 ../../Zotlabs/Storage/Browser.php:288 #: ../../Zotlabs/Widget/Cdav.php:126 ../../Zotlabs/Widget/Cdav.php:162 #: ../../addon/gitwiki/Mod_Gitwiki.php:151 #: ../../addon/gitwiki/Mod_Gitwiki.php:252 ../../include/channel.php:1297 @@ -321,19 +323,19 @@ msgstr "Teilen" #: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 #: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 #: ../../Zotlabs/Module/Article_edit.php:129 -#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Admin/Accounts.php:174 #: ../../Zotlabs/Module/Admin/Channels.php:149 #: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Settings/Oauth.php:150 #: ../../Zotlabs/Module/Thing.php:262 ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Connections.php:268 +#: ../../Zotlabs/Module/Connections.php:273 #: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Connedit.php:941 ../../Zotlabs/Module/Group.php:179 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 #: ../../Zotlabs/Module/Profiles.php:803 #: ../../Zotlabs/Module/Editwebpage.php:167 #: ../../Zotlabs/Module/Webpages.php:242 -#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:400 -#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:286 +#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:410 +#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:289 #: ../../include/conversation.php:690 ../../include/conversation.php:733 msgid "Delete" msgstr "Löschen" @@ -363,6 +365,7 @@ msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." #: ../../Zotlabs/Module/Invite.php:82 +#: ../../addon/notifyadmin/notifyadmin.php:40 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Nachricht konnte nicht zugestellt werden." @@ -423,35 +426,36 @@ msgstr "3. Klicke auf [Verbinden]" #: ../../Zotlabs/Module/Connect.php:98 #: ../../Zotlabs/Module/Admin/Features.php:66 #: ../../Zotlabs/Module/Admin/Plugins.php:438 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:167 #: ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Channels.php:147 #: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:277 +#: ../../Zotlabs/Module/Admin/Site.php:289 #: ../../Zotlabs/Module/Admin/Profs.php:157 #: ../../Zotlabs/Module/Admin/Account_edit.php:74 #: ../../Zotlabs/Module/Admin/Security.php:104 #: ../../Zotlabs/Module/Settings/Permcats.php:110 -#: ../../Zotlabs/Module/Settings/Channel.php:489 +#: ../../Zotlabs/Module/Settings/Channel.php:488 #: ../../Zotlabs/Module/Settings/Features.php:47 #: ../../Zotlabs/Module/Settings/Tokens.php:168 #: ../../Zotlabs/Module/Settings/Account.php:118 -#: ../../Zotlabs/Module/Settings/Featured.php:52 -#: ../../Zotlabs/Module/Settings/Display.php:209 +#: ../../Zotlabs/Module/Settings/Featured.php:54 +#: ../../Zotlabs/Module/Settings/Display.php:192 #: ../../Zotlabs/Module/Settings/Oauth.php:87 #: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 #: ../../Zotlabs/Module/Import.php:529 ../../Zotlabs/Module/Cal.php:345 #: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 #: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 #: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 -#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:904 +#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 #: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 +#: ../../Zotlabs/Module/Email_validation.php:40 #: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 #: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:726 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 #: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Mail.php:431 #: ../../Zotlabs/Module/Filestorage.php:160 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Lib/ThreadItem.php:754 +#: ../../Zotlabs/Lib/ThreadItem.php:750 #: ../../Zotlabs/Widget/Eventstools.php:16 #: ../../Zotlabs/Widget/Wiki_pages.php:40 #: ../../Zotlabs/Widget/Wiki_pages.php:97 @@ -465,7 +469,7 @@ msgstr "3. Klicke auf [Verbinden]" #: ../../addon/likebanner/likebanner.php:57 #: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 #: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 -#: ../../addon/diaspora/diaspora.php:816 +#: ../../addon/diaspora/diaspora.php:822 #: ../../addon/gitwiki/Mod_Gitwiki.php:155 #: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 #: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 @@ -480,8 +484,8 @@ msgstr "3. Klicke auf [Verbinden]" #: ../../addon/statusnet/statusnet.php:322 #: ../../addon/statusnet/statusnet.php:380 #: ../../addon/statusnet/statusnet.php:432 -#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:217 -#: ../../addon/twitter/twitter.php:259 +#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 +#: ../../addon/twitter/twitter.php:265 #: ../../addon/smileybutton/smileybutton.php:219 #: ../../addon/piwik/piwik.php:95 ../../addon/pageheader/pageheader.php:48 #: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 @@ -490,21 +494,16 @@ msgstr "3. Klicke auf [Verbinden]" msgid "Submit" msgstr "Absenden" -#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Cards.php:38 -#: ../../Zotlabs/Module/Cards.php:178 ../../Zotlabs/Lib/Apps.php:224 -#: ../../include/conversation.php:1890 ../../include/features.php:122 -#: ../../include/nav.php:490 -msgid "Cards" -msgstr "Karten" +#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:179 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:124 +#: ../../include/nav.php:469 +msgid "Articles" +msgstr "Artikel" #: ../../Zotlabs/Module/Articles.php:95 msgid "Add Article" msgstr "Artikel hinzufügen" -#: ../../Zotlabs/Module/Articles.php:178 ../../include/nav.php:501 -msgid "Articles" -msgstr "Artikel" - #: ../../Zotlabs/Module/Editlayout.php:79 #: ../../Zotlabs/Module/Article_edit.php:17 #: ../../Zotlabs/Module/Article_edit.php:33 @@ -533,7 +532,7 @@ msgstr "Layout bearbeiten" #: ../../Zotlabs/Module/Import_items.php:120 #: ../../Zotlabs/Module/Cloud.php:111 ../../Zotlabs/Module/Group.php:74 #: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 -#: ../../Zotlabs/Module/Like.php:295 ../../Zotlabs/Web/WebServer.php:168 +#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 #: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 #: ../../addon/frphotos/frphotos.php:81 ../../addon/redfiles/redfiles.php:109 #: ../../include/items.php:358 @@ -548,7 +547,7 @@ msgstr "Ungültiger Profil-Identifikator" msgid "Profile Visibility Editor" msgstr "Profil-Sichtbarkeits-Editor" -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1633 +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1634 msgid "Profile" msgstr "Profil" @@ -576,9 +575,9 @@ msgstr "Zusammenfassung:" #: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 #: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 #: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 -#: ../../Zotlabs/Lib/Apps.php:744 ../../Zotlabs/Lib/Apps.php:822 +#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:832 #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 -#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:842 +#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:853 #: ../../include/conversation.php:1160 msgid "Unknown" msgstr "Unbekannt" @@ -691,10 +690,12 @@ msgstr "Alles löschen" #: ../../Zotlabs/Module/Settings/Oauth.php:88 #: ../../Zotlabs/Module/Settings/Oauth.php:114 #: ../../Zotlabs/Module/Wiki.php:345 ../../Zotlabs/Module/Wiki.php:375 -#: ../../Zotlabs/Module/Connedit.php:942 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Profile_photo.php:464 +#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 #: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:804 -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../addon/gitwiki/Mod_Gitwiki.php:244 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:365 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../addon/gitwiki/Mod_Gitwiki.php:244 #: ../../addon/gitwiki/Mod_Gitwiki.php:267 ../../include/conversation.php:1386 #: ../../include/conversation.php:1435 msgid "Cancel" @@ -709,85 +710,85 @@ msgstr "Entschuldigung, aber das Bearbeiten von wiederkehrenden Veranstaltungen #: ../../Zotlabs/Module/Admin/Channels.php:159 #: ../../Zotlabs/Module/Settings/Oauth.php:89 #: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:924 +#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 #: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 -#: ../../Zotlabs/Storage/Browser.php:280 +#: ../../Zotlabs/Storage/Browser.php:283 #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../addon/rendezvous/rendezvous.php:172 #: ../../addon/gitwiki/Mod_Gitwiki.php:158 msgid "Name" msgstr "Name" -#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:925 +#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 msgid "Organisation" msgstr "Organisation" -#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:926 +#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 msgid "Title" msgstr "Titel" -#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:927 +#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 #: ../../Zotlabs/Module/Profiles.php:789 msgid "Phone" msgstr "Telefon" #: ../../Zotlabs/Module/Cdav.php:1174 -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Accounts.php:181 -#: ../../Zotlabs/Module/Connedit.php:928 ../../Zotlabs/Module/Profiles.php:790 +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:790 #: ../../addon/openid/MysqlProvider.php:56 #: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1769 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1775 msgid "Email" msgstr "E-Mail" -#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:929 +#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 #: ../../Zotlabs/Module/Profiles.php:791 msgid "Instant messenger" msgstr "Sofortnachrichtendienst" -#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:930 +#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 #: ../../Zotlabs/Module/Profiles.php:792 msgid "Website" msgstr "Webseite" #: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 #: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:931 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 #: ../../Zotlabs/Module/Profiles.php:793 msgid "Address" msgstr "Adresse" -#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:932 +#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 #: ../../Zotlabs/Module/Profiles.php:794 msgid "Note" msgstr "Hinweis" -#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:933 -#: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1301 +#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 +#: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1308 #: ../../include/connections.php:682 msgid "Mobile" msgstr "Mobil" -#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:934 -#: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1302 +#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1309 #: ../../include/connections.php:683 msgid "Home" msgstr "Home" -#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:935 -#: ../../Zotlabs/Module/Profiles.php:797 ../../include/event.php:1305 +#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Profiles.php:797 ../../include/event.php:1312 #: ../../include/connections.php:686 msgid "Work" msgstr "Arbeit" -#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:937 +#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 #: ../../Zotlabs/Module/Profiles.php:799 #: ../../addon/jappixmini/jappixmini.php:368 msgid "Add Contact" msgstr "Kontakt hinzufügen" -#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:938 +#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 #: ../../Zotlabs/Module/Profiles.php:800 msgid "Add Field" msgstr "Feld hinzufügen" @@ -796,36 +797,36 @@ msgstr "Feld hinzufügen" #: ../../Zotlabs/Module/Admin/Plugins.php:453 #: ../../Zotlabs/Module/Settings/Oauth.php:42 #: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Connedit.php:940 ../../Zotlabs/Module/Profiles.php:802 -#: ../../Zotlabs/Lib/Apps.php:383 +#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:802 +#: ../../Zotlabs/Lib/Apps.php:393 msgid "Update" msgstr "Aktualisieren" -#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:943 +#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 msgid "P.O. Box" msgstr "Postfach" -#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:944 +#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 msgid "Additional" msgstr "Zusätzlich" -#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:945 +#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 msgid "Street" msgstr "Straße" -#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:946 +#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 msgid "Locality" msgstr "Ortschaft" -#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:947 +#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 msgid "Region" msgstr "Region" -#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:948 +#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 msgid "ZIP Code" msgstr "Postleitzahl" -#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:949 +#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 #: ../../Zotlabs/Module/Profiles.php:760 msgid "Country" msgstr "Land" @@ -843,7 +844,7 @@ msgid "This site is not a directory server" msgstr "Diese Webseite ist kein Verzeichnisserver" #: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Chat.php:25 -#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:431 +#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:508 msgid "You must be logged in to see this page." msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." @@ -919,10 +920,14 @@ msgid "" " please import or restore these in date order (oldest first)." msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." -#: ../../Zotlabs/Module/Hq.php:136 -msgid "Welcome to hubzilla!" +#: ../../Zotlabs/Module/Hq.php:140 +msgid "Welcome to Hubzilla!" msgstr "Willkommen bei Hubzilla!" +#: ../../Zotlabs/Module/Hq.php:140 +msgid "You have got no unseen posts..." +msgstr "Du hast keine ungelesenen Beiträge..." + #: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:540 #: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 #: ../../Zotlabs/Module/Directory.php:68 ../../Zotlabs/Module/Display.php:30 @@ -930,25 +935,25 @@ msgstr "Willkommen bei Hubzilla!" msgid "Public access denied." msgstr "Öffentlichen Zugriff verweigert." -#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:313 -#: ../../Zotlabs/Lib/Apps.php:250 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../include/text.php:1029 ../../include/text.php:1041 -#: ../../include/acl_selectors.php:213 ../../include/nav.php:211 +#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:319 +#: ../../Zotlabs/Lib/Apps.php:256 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../include/text.php:1051 ../../include/text.php:1063 +#: ../../include/acl_selectors.php:118 ../../include/nav.php:179 msgid "Search" msgstr "Suche" -#: ../../Zotlabs/Module/Search.php:225 +#: ../../Zotlabs/Module/Search.php:226 #, php-format msgid "Items tagged with: %s" msgstr "Beiträge mit Schlagwort: %s" -#: ../../Zotlabs/Module/Search.php:227 +#: ../../Zotlabs/Module/Search.php:228 #, php-format msgid "Search results for: %s" msgstr "Suchergebnisse für: %s" -#: ../../Zotlabs/Module/Pubstream.php:81 -#: ../../Zotlabs/Widget/Notifications.php:129 +#: ../../Zotlabs/Module/Pubstream.php:93 +#: ../../Zotlabs/Widget/Notifications.php:131 msgid "Public Stream" msgstr "Öffentlicher Beitrags-Stream" @@ -1048,7 +1053,7 @@ msgid "Menu Item Permissions" msgstr "Zugriffsrechte des Menü-Elements" #: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 -#: ../../Zotlabs/Module/Settings/Channel.php:522 +#: ../../Zotlabs/Module/Settings/Channel.php:521 msgid "(click to open/close)" msgstr "(zum öffnen/schließen anklicken)" @@ -1072,17 +1077,17 @@ msgstr "Magic-Auth verwenden, falls verfügbar" #: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 #: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 #: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:240 +#: ../../Zotlabs/Module/Admin/Site.php:252 #: ../../Zotlabs/Module/Settings/Channel.php:305 -#: ../../Zotlabs/Module/Settings/Display.php:105 -#: ../../Zotlabs/Module/Api.php:97 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 #: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 #: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 #: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 #: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 #: ../../Zotlabs/Module/Filestorage.php:155 #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 ../../boot.php:1669 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1587 #: ../../view/theme/redbasic_c/php/config.php:100 #: ../../view/theme/redbasic_c/php/config.php:115 #: ../../view/theme/redbasic/php/config.php:98 @@ -1107,8 +1112,8 @@ msgstr "Magic-Auth verwenden, falls verfügbar" #: ../../addon/statusnet/statusnet.php:389 #: ../../addon/statusnet/statusnet.php:411 #: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:242 -#: ../../addon/twitter/twitter.php:246 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 #: ../../addon/smileybutton/smileybutton.php:211 #: ../../addon/smileybutton/smileybutton.php:215 #: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 @@ -1123,17 +1128,17 @@ msgstr "Nein" #: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 #: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 #: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:242 +#: ../../Zotlabs/Module/Admin/Site.php:254 #: ../../Zotlabs/Module/Settings/Channel.php:305 -#: ../../Zotlabs/Module/Settings/Display.php:105 -#: ../../Zotlabs/Module/Api.php:96 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 #: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 #: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100 #: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Defperms.php:180 #: ../../Zotlabs/Module/Profiles.php:681 #: ../../Zotlabs/Module/Filestorage.php:155 #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 ../../boot.php:1669 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1587 #: ../../view/theme/redbasic_c/php/config.php:100 #: ../../view/theme/redbasic_c/php/config.php:115 #: ../../view/theme/redbasic/php/config.php:98 @@ -1158,8 +1163,8 @@ msgstr "Nein" #: ../../addon/statusnet/statusnet.php:389 #: ../../addon/statusnet/statusnet.php:411 #: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:242 -#: ../../addon/twitter/twitter.php:246 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 #: ../../addon/smileybutton/smileybutton.php:211 #: ../../addon/smileybutton/smileybutton.php:215 #: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 @@ -1276,8 +1281,8 @@ msgid "Event not found." msgstr "Termin nicht gefunden." #: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 -#: ../../Zotlabs/Module/Like.php:384 ../../include/conversation.php:119 -#: ../../include/text.php:1941 ../../include/event.php:1153 +#: ../../Zotlabs/Module/Like.php:385 ../../include/conversation.php:119 +#: ../../include/text.php:2007 ../../include/event.php:1153 msgid "event" msgstr "Termin" @@ -1288,7 +1293,7 @@ msgstr "Termintitel bearbeiten" #: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 #: ../../Zotlabs/Module/Appman.php:140 ../../Zotlabs/Module/Appman.php:141 #: ../../Zotlabs/Module/Profiles.php:748 ../../Zotlabs/Module/Profiles.php:752 -#: ../../include/datetime.php:265 +#: ../../include/datetime.php:205 msgid "Required" msgstr "Benötigt" @@ -1339,7 +1344,7 @@ msgid "Edit Location" msgstr "Ort bearbeiten" #: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1123 -#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:764 +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:760 #: ../../include/conversation.php:1330 msgid "Preview" msgstr "Vorschau" @@ -1369,7 +1374,7 @@ msgid "Delete event" msgstr "Termin löschen" #: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 -#: ../../include/text.php:1760 +#: ../../include/text.php:1826 msgid "Link to Source" msgstr "Link zur Quelle" @@ -1386,7 +1391,7 @@ msgid "Create Event" msgstr "Termin anlegen" #: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 -#: ../../include/channel.php:1636 +#: ../../include/channel.php:1637 msgid "Export" msgstr "Exportieren" @@ -1459,16 +1464,16 @@ msgid "Hub not found." msgstr "Server nicht gefunden." #: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 -#: ../../Zotlabs/Module/Like.php:382 +#: ../../Zotlabs/Module/Like.php:383 #: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/diaspora/Receiver.php:1433 ../../addon/pubcrawl/as.php:1295 -#: ../../include/conversation.php:116 ../../include/text.php:1938 +#: ../../addon/diaspora/Receiver.php:1518 ../../addon/pubcrawl/as.php:1359 +#: ../../include/conversation.php:116 ../../include/text.php:2004 msgid "photo" msgstr "Foto" -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:382 -#: ../../addon/diaspora/Receiver.php:1433 ../../addon/pubcrawl/as.php:1295 -#: ../../include/conversation.php:144 ../../include/text.php:1944 +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:383 +#: ../../addon/diaspora/Receiver.php:1518 ../../addon/pubcrawl/as.php:1359 +#: ../../include/conversation.php:144 ../../include/text.php:2010 msgid "status" msgstr "Status" @@ -1545,66 +1550,70 @@ msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus ein msgid "File to Upload" msgstr "Hochzuladende Datei:" -#: ../../Zotlabs/Module/New_channel.php:121 +#: ../../Zotlabs/Module/New_channel.php:119 #: ../../Zotlabs/Module/Manage.php:138 #, php-format msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." -#: ../../Zotlabs/Module/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:249 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:254 msgid "Name or caption" msgstr "Name oder Titel" -#: ../../Zotlabs/Module/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:249 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:254 msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " -#: ../../Zotlabs/Module/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:251 +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:256 msgid "Choose a short nickname" msgstr "Wähle einen kurzen Spitznamen" -#: ../../Zotlabs/Module/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:251 +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:256 #, php-format msgid "" "Your nickname will be used to create an easy to remember channel address " "e.g. nickname%s" msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 msgid "Channel role and privacy" msgstr "Kanaltyp und Privatspäre-Einstellungen" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 msgid "Select a channel role with your privacy requirements." msgstr "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre." -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 msgid "Read more about roles" msgstr "Mehr Informationen über Rollen" -#: ../../Zotlabs/Module/New_channel.php:140 +#: ../../Zotlabs/Module/New_channel.php:138 msgid "Create Channel" msgstr "Einen neuen Kanal anlegen" -#: ../../Zotlabs/Module/New_channel.php:141 +#: ../../Zotlabs/Module/New_channel.php:139 msgid "" "A channel is your identity on this network. It can represent a person, a " "blog, or a forum to name a few. Channels can make connections with other " "channels to share information with highly detailed permissions." msgstr "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen." -#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/New_channel.php:140 msgid "" "or import an existing channel from another location." msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." +#: ../../Zotlabs/Module/New_channel.php:145 +msgid "Validate" +msgstr "Überprüfe" + #: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " @@ -1647,7 +1656,7 @@ msgid "" msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" #: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:593 +#: ../../Zotlabs/Module/Settings/Channel.php:592 msgid "Remove Channel" msgstr "Kanal löschen" @@ -1660,12 +1669,12 @@ msgid "NEW" msgstr "NEU" #: ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:282 ../../include/text.php:1394 +#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 msgid "Size" msgstr "Größe" #: ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:283 +#: ../../Zotlabs/Storage/Browser.php:286 msgid "Last Modified" msgstr "Zuletzt geändert" @@ -1780,7 +1789,7 @@ msgstr "E-Mail Adresse des Seiten-Administrators" msgid "" "Your account email address must match this in order to use the web admin " "panel." -msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." +msgstr "Die E-Mail-Adresse Deines Kontos muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." #: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 msgid "Website URL" @@ -2215,30 +2224,26 @@ msgstr "Zusätzliche Funktionen verwalten" msgid "Update has been marked successful" msgstr "Update wurde als erfolgreich markiert" -#: ../../Zotlabs/Module/Admin/Dbsync.php:29 +#: ../../Zotlabs/Module/Admin/Dbsync.php:31 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." -#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s wurde erfolgreich ausgeführt." -#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." -#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#: ../../Zotlabs/Module/Admin/Dbsync.php:41 #, php-format msgid "Update function %s could not be found." msgstr "Update-Funktion %s konnte nicht gefunden werden." -#: ../../Zotlabs/Module/Admin/Dbsync.php:55 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Aktualisierungen." - #: ../../Zotlabs/Module/Admin/Dbsync.php:59 msgid "Failed Updates" msgstr "Fehlgeschlagene Aktualisierungen" @@ -2251,12 +2256,16 @@ msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" msgid "Attempt to execute this update step automatically" msgstr "Versuche, diesen Updateschritt automatisch auszuführen" +#: ../../Zotlabs/Module/Admin/Dbsync.php:67 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Aktualisierungen." + #: ../../Zotlabs/Module/Admin/Plugins.php:259 #: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:89 #: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 -#: ../../Zotlabs/Module/Display.php:408 +#: ../../Zotlabs/Module/Display.php:410 #: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 -#: ../../include/items.php:3546 +#: ../../include/items.php:3569 msgid "Item not found." msgstr "Element nicht gefunden." @@ -2282,12 +2291,12 @@ msgstr "Aktivieren" #: ../../Zotlabs/Module/Admin/Plugins.php:341 #: ../../Zotlabs/Module/Admin/Plugins.php:436 -#: ../../Zotlabs/Module/Admin/Accounts.php:164 +#: ../../Zotlabs/Module/Admin/Accounts.php:165 #: ../../Zotlabs/Module/Admin/Logs.php:82 #: ../../Zotlabs/Module/Admin/Channels.php:145 #: ../../Zotlabs/Module/Admin/Themes.php:122 #: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Site.php:275 +#: ../../Zotlabs/Module/Admin/Site.php:287 #: ../../Zotlabs/Module/Admin/Security.php:86 #: ../../Zotlabs/Module/Admin.php:136 msgid "Administration" @@ -2305,9 +2314,10 @@ msgid "Toggle" msgstr "Umschalten" #: ../../Zotlabs/Module/Admin/Plugins.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:236 -#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:139 -#: ../../include/nav.php:224 +#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 +#: ../../Zotlabs/Widget/Newmember.php:55 +#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:105 +#: ../../include/nav.php:192 msgid "Settings" msgstr "Einstellungen" @@ -2370,7 +2380,7 @@ msgstr "Plugin-Repository herunterladen" msgid "Install new repo" msgstr "Neues Repository installieren" -#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:383 +#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 msgid "Install" msgstr "Installieren" @@ -2396,112 +2406,112 @@ msgstr "Zweig/Branch wechseln" msgid "Remove" msgstr "Entfernen" -#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#: ../../Zotlabs/Module/Admin/Accounts.php:37 #, php-format msgid "%s account blocked/unblocked" msgid_plural "%s account blocked/unblocked" msgstr[0] "%s Konto blockiert/freigegeben" msgstr[1] "%s Konten blockiert/freigegeben" -#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#: ../../Zotlabs/Module/Admin/Accounts.php:44 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" msgstr[0] "%s Konto gelöscht" msgstr[1] "%s Konten gelöscht" -#: ../../Zotlabs/Module/Admin/Accounts.php:79 +#: ../../Zotlabs/Module/Admin/Accounts.php:80 msgid "Account not found" msgstr "Konto nicht gefunden" -#: ../../Zotlabs/Module/Admin/Accounts.php:90 ../../include/channel.php:2456 +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2462 #, php-format msgid "Account '%s' deleted" msgstr "Konto '%s' gelöscht" -#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#: ../../Zotlabs/Module/Admin/Accounts.php:99 #, php-format msgid "Account '%s' blocked" msgstr "Konto '%s' blockiert" -#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#: ../../Zotlabs/Module/Admin/Accounts.php:107 #, php-format msgid "Account '%s' unblocked" msgstr "Konto '%s' freigegeben" -#: ../../Zotlabs/Module/Admin/Accounts.php:165 -#: ../../Zotlabs/Module/Admin/Accounts.php:178 +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 #: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 msgid "Accounts" msgstr "Konten" -#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 #: ../../Zotlabs/Module/Admin/Channels.php:148 msgid "select all" msgstr "Alle auswählen" -#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Accounts.php:169 msgid "Registrations waiting for confirm" msgstr "Registrierungen warten auf Bestätigung" -#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Accounts.php:170 msgid "Request date" msgstr "Antragsdatum" -#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 msgid "No registrations." msgstr "Keine Registrierungen." -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Connections.php:282 ../../include/conversation.php:732 +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Connections.php:287 ../../include/conversation.php:732 msgid "Approve" msgstr "Genehmigen" -#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Admin/Accounts.php:173 msgid "Deny" msgstr "Verweigern" -#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 #: ../../Zotlabs/Module/Connedit.php:622 msgid "Block" msgstr "Blockieren" -#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Accounts.php:176 #: ../../Zotlabs/Module/Connedit.php:622 msgid "Unblock" msgstr "Freigeben" -#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin/Accounts.php:181 msgid "ID" msgstr "ID" -#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/group.php:284 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:284 msgid "All Channels" msgstr "Alle Kanäle" -#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Admin/Accounts.php:184 msgid "Register date" msgstr "Registrierungs-Datum" -#: ../../Zotlabs/Module/Admin/Accounts.php:184 +#: ../../Zotlabs/Module/Admin/Accounts.php:185 msgid "Last login" msgstr "Letzte Anmeldung" -#: ../../Zotlabs/Module/Admin/Accounts.php:185 +#: ../../Zotlabs/Module/Admin/Accounts.php:186 msgid "Expires" msgstr "Verfällt" -#: ../../Zotlabs/Module/Admin/Accounts.php:186 +#: ../../Zotlabs/Module/Admin/Accounts.php:187 msgid "Service Class" msgstr "Service-Klasse" -#: ../../Zotlabs/Module/Admin/Accounts.php:188 +#: ../../Zotlabs/Module/Admin/Accounts.php:189 msgid "" "Selected accounts will be deleted!\\n\\nEverything these accounts had posted" " on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?" -#: ../../Zotlabs/Module/Admin/Accounts.php:189 +#: ../../Zotlabs/Module/Admin/Accounts.php:190 msgid "" "The account {0} will be deleted!\\n\\nEverything this account has posted on " "this site will be permanently deleted!\\n\\nAre you sure?" @@ -2610,7 +2620,7 @@ msgid "Disallow Code" msgstr "Code sperren" #: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1808 ../../include/nav.php:410 +#: ../../include/conversation.php:1808 ../../include/nav.php:378 msgid "Channel" msgstr "Kanal" @@ -2655,415 +2665,472 @@ msgstr "[Experimentell]" msgid "[Unsupported]" msgstr "[Nicht unterstützt]" -#: ../../Zotlabs/Module/Admin/Site.php:147 +#: ../../Zotlabs/Module/Admin/Site.php:158 msgid "Site settings updated." msgstr "Site-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Admin/Site.php:173 +#: ../../Zotlabs/Module/Admin/Site.php:184 #: ../../view/theme/redbasic_c/php/config.php:15 -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:2968 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3082 msgid "Default" msgstr "Standard" -#: ../../Zotlabs/Module/Admin/Site.php:184 -#: ../../Zotlabs/Module/Settings/Display.php:139 +#: ../../Zotlabs/Module/Admin/Site.php:195 +#: ../../Zotlabs/Module/Settings/Display.php:130 #, php-format msgid "%s - (Incompatible)" msgstr "%s - (Inkompatibel)" -#: ../../Zotlabs/Module/Admin/Site.php:191 -#: ../../Zotlabs/Module/Settings/Display.php:153 +#: ../../Zotlabs/Module/Admin/Site.php:202 msgid "mobile" msgstr "mobil" -#: ../../Zotlabs/Module/Admin/Site.php:193 +#: ../../Zotlabs/Module/Admin/Site.php:204 msgid "experimental" msgstr "experimentell" -#: ../../Zotlabs/Module/Admin/Site.php:195 +#: ../../Zotlabs/Module/Admin/Site.php:206 msgid "unsupported" msgstr "nicht unterstützt" -#: ../../Zotlabs/Module/Admin/Site.php:241 +#: ../../Zotlabs/Module/Admin/Site.php:253 msgid "Yes - with approval" msgstr "Ja - mit Zustimmung" -#: ../../Zotlabs/Module/Admin/Site.php:247 +#: ../../Zotlabs/Module/Admin/Site.php:259 msgid "My site is not a public server" msgstr "Mein Server ist kein öffentlicher Server" -#: ../../Zotlabs/Module/Admin/Site.php:248 +#: ../../Zotlabs/Module/Admin/Site.php:260 msgid "My site has paid access only" msgstr "Meine Seite hat nur bezahlten Zugriff" -#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Admin/Site.php:261 msgid "My site has free access only" msgstr "Meine Seite hat nur freien Zugriff" -#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Admin/Site.php:262 msgid "My site offers free accounts with optional paid upgrades" msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" -#: ../../Zotlabs/Module/Admin/Site.php:262 +#: ../../Zotlabs/Module/Admin/Site.php:274 msgid "Beginner/Basic" msgstr "Anfänger/Basis" -#: ../../Zotlabs/Module/Admin/Site.php:263 +#: ../../Zotlabs/Module/Admin/Site.php:275 msgid "Novice - not skilled but willing to learn" msgstr "Anfänger - unerfahren, aber bereit zu lernen" -#: ../../Zotlabs/Module/Admin/Site.php:264 +#: ../../Zotlabs/Module/Admin/Site.php:276 msgid "Intermediate - somewhat comfortable" msgstr "Fortgeschritten - relativ komfortabel" -#: ../../Zotlabs/Module/Admin/Site.php:265 +#: ../../Zotlabs/Module/Admin/Site.php:277 msgid "Advanced - very comfortable" msgstr "Fortgeschritten - sehr komfortabel" -#: ../../Zotlabs/Module/Admin/Site.php:266 +#: ../../Zotlabs/Module/Admin/Site.php:278 msgid "Expert - I can write computer code" msgstr "Experte - Ich kann Computercode schreiben" -#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Site.php:279 msgid "Wizard - I probably know more than you do" msgstr "Zauberer - ich kann wahrscheinlich mehr als Du" -#: ../../Zotlabs/Module/Admin/Site.php:276 ../../Zotlabs/Widget/Admin.php:22 +#: ../../Zotlabs/Module/Admin/Site.php:288 ../../Zotlabs/Widget/Admin.php:22 msgid "Site" msgstr "Seite" -#: ../../Zotlabs/Module/Admin/Site.php:278 -#: ../../Zotlabs/Module/Register.php:263 +#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Register.php:269 msgid "Registration" msgstr "Registrierung" -#: ../../Zotlabs/Module/Admin/Site.php:279 +#: ../../Zotlabs/Module/Admin/Site.php:291 msgid "File upload" msgstr "Dateiupload" -#: ../../Zotlabs/Module/Admin/Site.php:280 +#: ../../Zotlabs/Module/Admin/Site.php:292 msgid "Policies" msgstr "Richtlinien" -#: ../../Zotlabs/Module/Admin/Site.php:281 +#: ../../Zotlabs/Module/Admin/Site.php:293 #: ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "Fortgeschritten" -#: ../../Zotlabs/Module/Admin/Site.php:285 +#: ../../Zotlabs/Module/Admin/Site.php:297 #: ../../addon/statusnet/statusnet.php:891 msgid "Site name" msgstr "Seitenname" -#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Site default technical skill level" msgstr "Standard-Qualifikationsstufe der Website" -#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Used to provide a member experience matched to technical comfort level" msgstr "Dies wird verwendet, um eine Benutzererfahrung passend zur technischen Qualifikationsstufe zu bieten." -#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "Lock the technical skill level setting" msgstr "Sperre die technische Qualifikationsstufe" -#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "Members can set their own technical comfort level by default" msgstr "Benutzer können standardmäßig ihre eigene technische Qualifikationsstufe einstellen" -#: ../../Zotlabs/Module/Admin/Site.php:291 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "Ungefiltertes HTML/CSS/JS ist erlaubt" + +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "Administrator Information" msgstr "Administrator-Informationen" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." -#: ../../Zotlabs/Module/Admin/Site.php:293 -#: ../../Zotlabs/Module/Siteinfo.php:22 +#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Siteinfo.php:21 msgid "Site Information" msgstr "Seiteninformationen" -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Site.php:305 msgid "" "Publicly visible description of this site. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Öffentlich sichtbare Beschreibung dieses Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann hier verwendet werden." -#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Site.php:306 msgid "System language" msgstr "System-Sprache" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "System theme" msgstr "System-Design" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Standard-System-Design – kann durch Nutzerprofile überschieben werden – Design-Einstellungen ändern" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Mobile system theme" msgstr "System-Design für mobile Geräte:" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Theme for mobile devices" msgstr "Theme für mobile Geräte" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "Allow Feeds as Connections" msgstr "Feeds als Verbindungen erlauben" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "(Heavy system resource usage)" msgstr "(führt zu hoher Systemlast)" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." -#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "Does this site allow new member registration?" msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "Invitation only" msgstr "Nur mit Einladung" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." msgstr "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden." -#: ../../Zotlabs/Module/Admin/Site.php:302 +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Minimum age" +msgstr "Mindestalter" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Minimum age (in years) for who may register on this site." +msgstr "Mindestalter (in Jahren) für alle, die sich auf dieser Website anmelden möchten." + +#: ../../Zotlabs/Module/Admin/Site.php:315 msgid "Which best describes the types of account offered by this hub?" msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Register text" msgstr "Registrierungstext" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Will be displayed prominently on the registration page." msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:317 msgid "Site homepage to show visitors (default: login box)" msgstr "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:317 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "Preserve site homepage URL" msgstr "Homepage-URL schützen" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "Accounts abandoned after x days" msgstr "Konten gelten nach X Tagen als unbenutzt" -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../Zotlabs/Module/Admin/Site.php:308 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "Verify Email Addresses" msgstr "E-Mail-Adressen überprüfen" -#: ../../Zotlabs/Module/Admin/Site.php:308 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." -#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "Force publish" msgstr "Veröffentlichung erzwingen" -#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:323 msgid "Import Public Streams" msgstr "Öffentliche Beiträge importieren" -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:323 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert." -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Site only Public Streams" +msgstr "Öffentlichen Beitragsstrom auf diesen Server beschränken" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "Erlaubt den Zugriff auf öffentliche Beiträge von ausschließlich dieser Website (diesem Server), wenn \"Öffentliche Beiträge importieren\" ausgeschaltet ist." + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "Allen im Internet Zugriff auf den öffentlichen Beitragsstrom erlauben" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "Deaktiviert die erforderliche Authentifizierung vor dem Ansehen. Warnung: Diese Inhalte sind nicht moderiert." + +#: ../../Zotlabs/Module/Admin/Site.php:326 msgid "Login on Homepage" msgstr "Log-in auf der Startseite" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:326 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "Enable context help" msgstr "Kontext-Hilfe aktivieren" -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "" "Display contextual help for the current page when the help button is " "pressed." msgstr "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird." -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:329 msgid "Reply-to email address for system generated email." msgstr "Antwortadresse (reply-to) für Emails, die vom System generiert wurden." -#: ../../Zotlabs/Module/Admin/Site.php:315 +#: ../../Zotlabs/Module/Admin/Site.php:330 msgid "Sender (From) email address for system generated email." msgstr "Absenderadresse (from) für Emails, die vom System generiert wurden." -#: ../../Zotlabs/Module/Admin/Site.php:316 +#: ../../Zotlabs/Module/Admin/Site.php:331 msgid "Name of email sender for system generated email." msgstr "Name des Versenders von Emails, die vom System generiert wurden." -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:333 msgid "Directory Server URL" msgstr "Verzeichnisserver-URL" -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:333 msgid "Default directory server" msgstr "Standard-Verzeichnisserver" -#: ../../Zotlabs/Module/Admin/Site.php:320 +#: ../../Zotlabs/Module/Admin/Site.php:335 msgid "Proxy user" msgstr "Proxy Benutzer" -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:336 msgid "Proxy URL" msgstr "Proxy URL" -#: ../../Zotlabs/Module/Admin/Site.php:322 +#: ../../Zotlabs/Module/Admin/Site.php:337 msgid "Network timeout" msgstr "Netzwerk-Timeout" -#: ../../Zotlabs/Module/Admin/Site.php:322 +#: ../../Zotlabs/Module/Admin/Site.php:337 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:338 msgid "Delivery interval" msgstr "Auslieferung Intervall" -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:338 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:339 msgid "Deliveries per process" msgstr "Zustellungen pro Prozess" -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:339 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust" " if necessary to tune system performance. Recommend: 1-5." msgstr "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5." -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:340 msgid "Queue Threshold" msgstr "Warteschlangen-Grenzwert" -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:340 msgid "" "Always defer immediate delivery if queue contains more than this number of " "entries." msgstr "Unmittelbare Zustellung immer verzögern, wenn die Warteschlange mehr als diese Anzahl von Einträgen enthält." -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:341 msgid "Poll interval" msgstr "Abfrageintervall" -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:341 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:342 msgid "Path to ImageMagick convert program" msgstr "Pfad zum ImageMagick-Programm convert" -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:342 msgid "" "If set, use this program to generate photo thumbnails for huge images ( > " "4000 pixels in either dimension), otherwise memory exhaustion may occur. " "Example: /usr/bin/convert" msgstr "Wenn gesetzt, dann verwende dieses Programm zum Erzeugen von Vorschaubildern großer Fotos (>4000 Pixel in beiden Richtungen), anderenfalls kann Speicherüberlauf auftreten. Beispiel: /usr/bin/convert" -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:343 msgid "Allow SVG thumbnails in file browser" msgstr "Erlaube SVG-Vorschaubilder im Dateibrowser" -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:343 msgid "WARNING: SVG images may contain malicious code." msgstr "Warnung: SVG-Grafiken können Schadcode enthalten." -#: ../../Zotlabs/Module/Admin/Site.php:329 +#: ../../Zotlabs/Module/Admin/Site.php:344 msgid "Maximum Load Average" msgstr "Maximales Load Average" -#: ../../Zotlabs/Module/Admin/Site.php:329 +#: ../../Zotlabs/Module/Admin/Site.php:344 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" -#: ../../Zotlabs/Module/Admin/Site.php:330 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "Expiration period in days for imported (grid/network) content" msgstr "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen" -#: ../../Zotlabs/Module/Admin/Site.php:330 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "0 for no expiration of imported content" msgstr "0 = keine Löschung importierter Inhalte" +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "Öffentliche Server: Optionale Einstiegsseite (landing page) für neue Mitglieder vor deren Anmeldung" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "Erstelle zunächst die entsprechende Seite. Standard ist %s/register" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Page to display after creating a new channel" +msgstr "Seite, die nach Erstellung eines neuen Kanals angezeigt werden soll" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Recommend: profiles, go, or settings" +msgstr "Empfohlen: profiles, go oder settings" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Optional: site location" +msgstr "Optional: Standort der Website" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Region or country" +msgstr "Region oder Land" + #: ../../Zotlabs/Module/Admin/Profs.php:69 msgid "New Profile Field" msgstr "Neues Profilfeld" @@ -3106,8 +3173,8 @@ msgstr "Zusätzliche Informationen (optional)" #: ../../Zotlabs/Module/Admin/Profs.php:74 #: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 #: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1030 -#: ../../include/text.php:1042 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 +#: ../../include/text.php:1064 msgid "Save" msgstr "Speichern" @@ -3306,7 +3373,7 @@ msgid "Visible to:" msgstr "Sichtbar für:" #: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:118 ../../include/acl_selectors.php:183 +#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 msgctxt "acl" msgid "Profile" msgstr "Profil" @@ -3339,25 +3406,25 @@ msgstr "Name der Berechtigungsrolle" #: ../../Zotlabs/Module/Settings/Permcats.php:103 #: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Connedit.php:908 ../../Zotlabs/Module/Defperms.php:250 +#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 msgid "My Settings" msgstr "Meine Einstellungen" #: ../../Zotlabs/Module/Settings/Permcats.php:105 #: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Connedit.php:903 ../../Zotlabs/Module/Defperms.php:248 +#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 msgid "inherited" msgstr "geerbt" #: ../../Zotlabs/Module/Settings/Permcats.php:108 #: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Defperms.php:253 +#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 msgid "Individual Permissions" msgstr "Individuelle Zugriffsrechte" #: ../../Zotlabs/Module/Settings/Permcats.php:109 #: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Connedit.php:911 +#: ../../Zotlabs/Module/Connedit.php:894 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -3370,7 +3437,7 @@ msgstr "Einige Berechtigungen werden möglicherweise von den globalen extremely permissive (should be used with caution)" msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" -#: ../../Zotlabs/Module/Settings/Channel.php:511 +#: ../../Zotlabs/Module/Settings/Channel.php:510 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" -#: ../../Zotlabs/Module/Settings/Channel.php:512 +#: ../../Zotlabs/Module/Settings/Channel.php:511 msgid "Private - default private, never open or public" msgstr "Privat – Standard privat, nie offen oder öffentlich" -#: ../../Zotlabs/Module/Settings/Channel.php:513 +#: ../../Zotlabs/Module/Settings/Channel.php:512 msgid "Blocked - default blocked to/from everybody" msgstr "Blockiert – Alle standardmäßig blockiert" -#: ../../Zotlabs/Module/Settings/Channel.php:515 +#: ../../Zotlabs/Module/Settings/Channel.php:514 msgid "Allow others to tag your posts" msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" -#: ../../Zotlabs/Module/Settings/Channel.php:515 +#: ../../Zotlabs/Module/Settings/Channel.php:514 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" -#: ../../Zotlabs/Module/Settings/Channel.php:517 +#: ../../Zotlabs/Module/Settings/Channel.php:516 msgid "Channel Permission Limits" msgstr "Kanal-Berechtigungslimits" -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "Expire other channel content after this many days" msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "0 or blank to use the website limit." msgstr "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden." -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 #, php-format msgid "This website expires after %d days." msgstr "Diese Webseite läuft nach %d Tagen ab." -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "This website does not expire imported content." msgstr "Diese Webseite lässt importierte Inhalte nicht verfallen." -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "The website limit takes precedence if lower than your limit." msgstr "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist." -#: ../../Zotlabs/Module/Settings/Channel.php:520 +#: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Kontaktanfragen pro Tag:" -#: ../../Zotlabs/Module/Settings/Channel.php:520 +#: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "May reduce spam activity" msgstr "Kann die Spam-Aktivität verringern" -#: ../../Zotlabs/Module/Settings/Channel.php:521 +#: ../../Zotlabs/Module/Settings/Channel.php:520 msgid "Default Privacy Group" msgstr "Standard-Gruppe" -#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:522 msgid "Use my default audience setting for the type of object published" msgstr "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps" -#: ../../Zotlabs/Module/Settings/Channel.php:524 +#: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "Profile to assign new connections" msgstr "Profil, welches neuen Verbindungen zugewiesen wird" -#: ../../Zotlabs/Module/Settings/Channel.php:533 +#: ../../Zotlabs/Module/Settings/Channel.php:532 msgid "Channel permissions category:" msgstr "Zugriffsrechte-Kategorie des Kanals:" -#: ../../Zotlabs/Module/Settings/Channel.php:534 +#: ../../Zotlabs/Module/Settings/Channel.php:533 msgid "Default Permissions Group" msgstr "Standard-Berechtigungsgruppe" -#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:539 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" -#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:539 msgid "Useful to reduce spamming" msgstr "Nützlich, um Spam zu verringern" -#: ../../Zotlabs/Module/Settings/Channel.php:543 +#: ../../Zotlabs/Module/Settings/Channel.php:542 +#: ../../Zotlabs/Lib/Enotify.php:68 msgid "Notification Settings" msgstr "Benachrichtigungs-Einstellungen" -#: ../../Zotlabs/Module/Settings/Channel.php:544 +#: ../../Zotlabs/Module/Settings/Channel.php:543 msgid "By default post a status message when:" msgstr "Sende standardmäßig Status-Nachrichten, wenn:" -#: ../../Zotlabs/Module/Settings/Channel.php:545 +#: ../../Zotlabs/Module/Settings/Channel.php:544 msgid "accepting a friend request" msgstr "Du eine Verbindungsanfrage annimmst" -#: ../../Zotlabs/Module/Settings/Channel.php:546 +#: ../../Zotlabs/Module/Settings/Channel.php:545 msgid "joining a forum/community" msgstr "Du einem Forum beitrittst" -#: ../../Zotlabs/Module/Settings/Channel.php:547 +#: ../../Zotlabs/Module/Settings/Channel.php:546 msgid "making an interesting profile change" msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" -#: ../../Zotlabs/Module/Settings/Channel.php:548 +#: ../../Zotlabs/Module/Settings/Channel.php:547 msgid "Send a notification email when:" msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" -#: ../../Zotlabs/Module/Settings/Channel.php:549 +#: ../../Zotlabs/Module/Settings/Channel.php:548 msgid "You receive a connection request" msgstr "Du eine Verbindungsanfrage erhältst" -#: ../../Zotlabs/Module/Settings/Channel.php:550 +#: ../../Zotlabs/Module/Settings/Channel.php:549 msgid "Your connections are confirmed" msgstr "Eine Verbindung bestätigt wurde" -#: ../../Zotlabs/Module/Settings/Channel.php:551 +#: ../../Zotlabs/Module/Settings/Channel.php:550 msgid "Someone writes on your profile wall" msgstr "Jemand auf Deine Pinnwand schreibt" -#: ../../Zotlabs/Module/Settings/Channel.php:552 +#: ../../Zotlabs/Module/Settings/Channel.php:551 msgid "Someone writes a followup comment" msgstr "Jemand einen Beitrag kommentiert" -#: ../../Zotlabs/Module/Settings/Channel.php:553 +#: ../../Zotlabs/Module/Settings/Channel.php:552 msgid "You receive a private message" msgstr "Du eine private Nachricht erhältst" -#: ../../Zotlabs/Module/Settings/Channel.php:554 +#: ../../Zotlabs/Module/Settings/Channel.php:553 msgid "You receive a friend suggestion" msgstr "Du einen Kontaktvorschlag erhältst" -#: ../../Zotlabs/Module/Settings/Channel.php:555 +#: ../../Zotlabs/Module/Settings/Channel.php:554 msgid "You are tagged in a post" msgstr "Du in einem Beitrag erwähnt wurdest" -#: ../../Zotlabs/Module/Settings/Channel.php:556 +#: ../../Zotlabs/Module/Settings/Channel.php:555 msgid "You are poked/prodded/etc. in a post" msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" -#: ../../Zotlabs/Module/Settings/Channel.php:558 +#: ../../Zotlabs/Module/Settings/Channel.php:557 msgid "Someone likes your post/comment" msgstr "Jemand mag Ihren Beitrag/Kommentar" -#: ../../Zotlabs/Module/Settings/Channel.php:561 +#: ../../Zotlabs/Module/Settings/Channel.php:560 msgid "Show visual notifications including:" msgstr "Visuelle Benachrichtigungen anzeigen für:" -#: ../../Zotlabs/Module/Settings/Channel.php:563 +#: ../../Zotlabs/Module/Settings/Channel.php:562 msgid "Unseen grid activity" msgstr "Ungesehene Netzwerk-Aktivität" -#: ../../Zotlabs/Module/Settings/Channel.php:564 +#: ../../Zotlabs/Module/Settings/Channel.php:563 msgid "Unseen channel activity" msgstr "Ungesehene Kanal-Aktivität" -#: ../../Zotlabs/Module/Settings/Channel.php:565 +#: ../../Zotlabs/Module/Settings/Channel.php:564 msgid "Unseen private messages" msgstr "Ungelesene persönliche Nachrichten" -#: ../../Zotlabs/Module/Settings/Channel.php:565 +#: ../../Zotlabs/Module/Settings/Channel.php:564 +#: ../../Zotlabs/Module/Settings/Channel.php:569 #: ../../Zotlabs/Module/Settings/Channel.php:570 #: ../../Zotlabs/Module/Settings/Channel.php:571 -#: ../../Zotlabs/Module/Settings/Channel.php:572 #: ../../addon/jappixmini/jappixmini.php:343 msgid "Recommended" msgstr "Empfohlen" -#: ../../Zotlabs/Module/Settings/Channel.php:566 +#: ../../Zotlabs/Module/Settings/Channel.php:565 msgid "Upcoming events" msgstr "Baldige Termine" -#: ../../Zotlabs/Module/Settings/Channel.php:567 +#: ../../Zotlabs/Module/Settings/Channel.php:566 msgid "Events today" msgstr "Heutige Termine" -#: ../../Zotlabs/Module/Settings/Channel.php:568 +#: ../../Zotlabs/Module/Settings/Channel.php:567 msgid "Upcoming birthdays" msgstr "Baldige Geburtstage" -#: ../../Zotlabs/Module/Settings/Channel.php:568 +#: ../../Zotlabs/Module/Settings/Channel.php:567 msgid "Not available in all themes" msgstr "Nicht in allen Designs verfügbar" -#: ../../Zotlabs/Module/Settings/Channel.php:569 +#: ../../Zotlabs/Module/Settings/Channel.php:568 msgid "System (personal) notifications" msgstr "System – (persönliche) Benachrichtigungen" -#: ../../Zotlabs/Module/Settings/Channel.php:570 +#: ../../Zotlabs/Module/Settings/Channel.php:569 msgid "System info messages" msgstr "System – Info-Nachrichten" -#: ../../Zotlabs/Module/Settings/Channel.php:571 +#: ../../Zotlabs/Module/Settings/Channel.php:570 msgid "System critical alerts" msgstr "System – kritische Warnungen" -#: ../../Zotlabs/Module/Settings/Channel.php:572 +#: ../../Zotlabs/Module/Settings/Channel.php:571 msgid "New connections" msgstr "Neue Verbindungen" -#: ../../Zotlabs/Module/Settings/Channel.php:573 +#: ../../Zotlabs/Module/Settings/Channel.php:572 msgid "System Registrations" msgstr "System – Registrierungen" -#: ../../Zotlabs/Module/Settings/Channel.php:574 +#: ../../Zotlabs/Module/Settings/Channel.php:573 msgid "Unseen shared files" msgstr "Ungesehene geteilte Dateien" -#: ../../Zotlabs/Module/Settings/Channel.php:575 +#: ../../Zotlabs/Module/Settings/Channel.php:574 msgid "Unseen public activity" msgstr "Ungesehene öffentliche Aktivität" -#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:575 msgid "Email notification hub (hostname)" msgstr "Hub für E-Mail-Benachrichtigungen (Hostname)" -#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:575 #, php-format msgid "" "If your channel is mirrored to multiple hubs, set this to your preferred " "location. This will prevent duplicate email notifications. Example: %s" msgstr "Wenn Dein Kanal auf mehreren Hubs geklont ist, setze die Einstellung auf deinen bevorzugten Hub. Dies verhindert Mehrfachzustellung von E-Mail-Benachrichtigungen. Beispiel: %s" -#: ../../Zotlabs/Module/Settings/Channel.php:577 +#: ../../Zotlabs/Module/Settings/Channel.php:576 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen anzeigen" -#: ../../Zotlabs/Module/Settings/Channel.php:579 +#: ../../Zotlabs/Module/Settings/Channel.php:578 msgid "Notify me of events this many days in advance" msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" -#: ../../Zotlabs/Module/Settings/Channel.php:579 +#: ../../Zotlabs/Module/Settings/Channel.php:578 msgid "Must be greater than 0" msgstr "Muss größer als 0 sein" -#: ../../Zotlabs/Module/Settings/Channel.php:585 +#: ../../Zotlabs/Module/Settings/Channel.php:584 msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Account- und Seitenart-Einstellungen" +msgstr "Erweiterte Konten- und Seitenart-Einstellungen" -#: ../../Zotlabs/Module/Settings/Channel.php:586 +#: ../../Zotlabs/Module/Settings/Channel.php:585 msgid "Change the behaviour of this account for special situations" -msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" +msgstr "Ändere das Verhalten dieses Kontos unter speziellen Umständen" -#: ../../Zotlabs/Module/Settings/Channel.php:588 +#: ../../Zotlabs/Module/Settings/Channel.php:587 msgid "Miscellaneous Settings" msgstr "Sonstige Einstellungen" -#: ../../Zotlabs/Module/Settings/Channel.php:589 +#: ../../Zotlabs/Module/Settings/Channel.php:588 msgid "Default photo upload folder" msgstr "Voreingestellter Ordner für hochgeladene Fotos" +#: ../../Zotlabs/Module/Settings/Channel.php:588 #: ../../Zotlabs/Module/Settings/Channel.php:589 -#: ../../Zotlabs/Module/Settings/Channel.php:590 msgid "%Y - current year, %m - current month" msgstr "%Y - aktuelles Jahr, %m - aktueller Monat" -#: ../../Zotlabs/Module/Settings/Channel.php:590 +#: ../../Zotlabs/Module/Settings/Channel.php:589 msgid "Default file upload folder" msgstr "Voreingestellter Ordner für hochgeladene Dateien" -#: ../../Zotlabs/Module/Settings/Channel.php:592 +#: ../../Zotlabs/Module/Settings/Channel.php:591 msgid "Personal menu to display in your channel pages" msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" -#: ../../Zotlabs/Module/Settings/Channel.php:594 +#: ../../Zotlabs/Module/Settings/Channel.php:593 msgid "Remove this channel." msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Settings/Channel.php:595 +#: ../../Zotlabs/Module/Settings/Channel.php:594 msgid "Firefox Share $Projectname provider" msgstr "$Projectname-Provider für Firefox Share" -#: ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Settings/Channel.php:595 msgid "Start calendar week on Monday" msgstr "Beginne die kalendarische Woche am Montag" @@ -3835,7 +3901,7 @@ msgid "Expires (yyyy-mm-dd)" msgstr "Läuft ab (jjjj-mm-tt)" #: ../../Zotlabs/Module/Settings/Tokens.php:160 -#: ../../Zotlabs/Module/Connedit.php:907 +#: ../../Zotlabs/Module/Connedit.php:890 msgid "Their Settings" msgstr "Deren Einstellungen" @@ -3900,8 +3966,10 @@ msgid "Your technical skill level" msgstr "Deine technische Qualifikationsstufe" #: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "Used to provide a member experience matched to your comfort level" -msgstr "Dies wird verwendet, um Dir eine Benutzererfahrung passend zu Deiner technischen Qualifikationsstufe zu bieten." +msgid "" +"Used to provide a member experience and additional features consistent with " +"your comfort level" +msgstr "Dies wird verwendet, um Dir eine Benutzererfahrung sowie zusätzliche Funktionen passend zu Deiner technischen Qualifikationsstufe zu bieten (Bedienkomfort beim Umgang mit Anwendungen)." #: ../../Zotlabs/Module/Settings/Account.php:120 #: ../../Zotlabs/Module/Removeaccount.php:61 @@ -3912,148 +3980,152 @@ msgstr "Konto entfernen" msgid "Remove this account including all its channels" msgstr "Dieses Konto inklusive all seiner Kanäle löschen" -#: ../../Zotlabs/Module/Settings/Featured.php:21 +#: ../../Zotlabs/Module/Settings/Featured.php:23 msgid "Affinity Slider settings updated." msgstr "Die Beziehungsgrad-Schieberegler-Einstellungen wurden aktualisiert." -#: ../../Zotlabs/Module/Settings/Featured.php:36 +#: ../../Zotlabs/Module/Settings/Featured.php:38 msgid "No feature settings configured" msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../Zotlabs/Module/Settings/Featured.php:43 +#: ../../Zotlabs/Module/Settings/Featured.php:45 msgid "Default maximum affinity level" msgstr "Voreinstellung für maximalen Beziehungsgrad" -#: ../../Zotlabs/Module/Settings/Featured.php:48 +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "0-99 default 99" +msgstr "0-99 - Standard 99" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 msgid "Default minimum affinity level" msgstr "Voreinstellung für minimalen Beziehungsgrad" -#: ../../Zotlabs/Module/Settings/Featured.php:52 +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "0-99 - default 0" +msgstr "0-99 - Standard 0" + +#: ../../Zotlabs/Module/Settings/Featured.php:54 msgid "Affinity Slider Settings" msgstr "Beziehungsgrad-Schieberegler-Einstellungen" -#: ../../Zotlabs/Module/Settings/Featured.php:62 -msgid "Feature/Addon Settings" -msgstr "Funktions-/Addon-Einstellungen" +#: ../../Zotlabs/Module/Settings/Featured.php:64 +msgid "Addon Settings" +msgstr "Addon-Einstellungen" -#: ../../Zotlabs/Module/Settings/Display.php:147 -msgid "No special theme for mobile devices" -msgstr "Kein spezielles Design für mobile Geräte" +#: ../../Zotlabs/Module/Settings/Featured.php:65 +msgid "Please save/submit changes to any panel before opening another." +msgstr "Bitte speichere alle Änderungen in diesem Bereich, bevor Du einen anderen öffnest." -#: ../../Zotlabs/Module/Settings/Display.php:150 +#: ../../Zotlabs/Module/Settings/Display.php:139 #, php-format msgid "%s - (Experimental)" msgstr "%s – (experimentell)" -#: ../../Zotlabs/Module/Settings/Display.php:204 +#: ../../Zotlabs/Module/Settings/Display.php:187 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: ../../Zotlabs/Module/Settings/Display.php:205 +#: ../../Zotlabs/Module/Settings/Display.php:188 msgid "Theme Settings" msgstr "Design-Einstellungen" -#: ../../Zotlabs/Module/Settings/Display.php:206 +#: ../../Zotlabs/Module/Settings/Display.php:189 msgid "Custom Theme Settings" msgstr "Benutzerdefinierte Design-Einstellungen" -#: ../../Zotlabs/Module/Settings/Display.php:207 +#: ../../Zotlabs/Module/Settings/Display.php:190 msgid "Content Settings" msgstr "Inhaltseinstellungen" -#: ../../Zotlabs/Module/Settings/Display.php:213 +#: ../../Zotlabs/Module/Settings/Display.php:196 msgid "Display Theme:" msgstr "Anzeige-Design:" -#: ../../Zotlabs/Module/Settings/Display.php:214 +#: ../../Zotlabs/Module/Settings/Display.php:197 msgid "Select scheme" msgstr "Schema wählen" -#: ../../Zotlabs/Module/Settings/Display.php:216 -msgid "Mobile Theme:" -msgstr "Design für mobile Geräte:" - -#: ../../Zotlabs/Module/Settings/Display.php:217 +#: ../../Zotlabs/Module/Settings/Display.php:199 msgid "Preload images before rendering the page" msgstr "Bilder im voraus laden, bevor die Seite angezeigt wird" -#: ../../Zotlabs/Module/Settings/Display.php:217 +#: ../../Zotlabs/Module/Settings/Display.php:199 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird" -#: ../../Zotlabs/Module/Settings/Display.php:218 +#: ../../Zotlabs/Module/Settings/Display.php:200 msgid "Enable user zoom on mobile devices" msgstr "Zoom auf Mobilgeräten aktivieren" -#: ../../Zotlabs/Module/Settings/Display.php:219 +#: ../../Zotlabs/Module/Settings/Display.php:201 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../Zotlabs/Module/Settings/Display.php:219 +#: ../../Zotlabs/Module/Settings/Display.php:201 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 Sekunden, kein Maximum" -#: ../../Zotlabs/Module/Settings/Display.php:220 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "Maximum number of conversations to load at any time:" msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" -#: ../../Zotlabs/Module/Settings/Display.php:220 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "Maximum of 100 items" msgstr "Maximum: 100 Beiträge" -#: ../../Zotlabs/Module/Settings/Display.php:221 +#: ../../Zotlabs/Module/Settings/Display.php:203 msgid "Show emoticons (smilies) as images" msgstr "Emoticons (Smilies) als Bilder anzeigen" -#: ../../Zotlabs/Module/Settings/Display.php:222 +#: ../../Zotlabs/Module/Settings/Display.php:204 msgid "Provide channel menu in navigation bar" msgstr "Kanal-Menü in der Navigationsleiste zur Verfügung stellen" -#: ../../Zotlabs/Module/Settings/Display.php:222 +#: ../../Zotlabs/Module/Settings/Display.php:204 msgid "Default: channel menu located in app menu" msgstr "Voreinstellung: Kanal-Menü ist im App-Menü integriert" -#: ../../Zotlabs/Module/Settings/Display.php:223 +#: ../../Zotlabs/Module/Settings/Display.php:205 msgid "Manual conversation updates" msgstr "Manuelle Konversationsaktualisierung" -#: ../../Zotlabs/Module/Settings/Display.php:223 +#: ../../Zotlabs/Module/Settings/Display.php:205 msgid "Default is on, turning this off may increase screen jumping" msgstr "Voreinstellung ist An, dies abzuschalten kann das unerwartete Springen der Seitenanzeige erhöhen." -#: ../../Zotlabs/Module/Settings/Display.php:224 +#: ../../Zotlabs/Module/Settings/Display.php:206 msgid "Link post titles to source" msgstr "Beitragstitel zum Originalbeitrag verlinken" -#: ../../Zotlabs/Module/Settings/Display.php:225 +#: ../../Zotlabs/Module/Settings/Display.php:207 msgid "System Page Layout Editor - (advanced)" msgstr "System-Seitenlayout-Editor (für Experten)" -#: ../../Zotlabs/Module/Settings/Display.php:228 +#: ../../Zotlabs/Module/Settings/Display.php:210 msgid "Use blog/list mode on channel page" msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" -#: ../../Zotlabs/Module/Settings/Display.php:228 -#: ../../Zotlabs/Module/Settings/Display.php:229 +#: ../../Zotlabs/Module/Settings/Display.php:210 +#: ../../Zotlabs/Module/Settings/Display.php:211 msgid "(comments displayed separately)" msgstr "(Kommentare werden separat angezeigt)" -#: ../../Zotlabs/Module/Settings/Display.php:229 +#: ../../Zotlabs/Module/Settings/Display.php:211 msgid "Use blog/list mode on grid page" msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden" -#: ../../Zotlabs/Module/Settings/Display.php:230 +#: ../../Zotlabs/Module/Settings/Display.php:212 msgid "Channel page max height of content (in pixels)" msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" -#: ../../Zotlabs/Module/Settings/Display.php:230 -#: ../../Zotlabs/Module/Settings/Display.php:231 +#: ../../Zotlabs/Module/Settings/Display.php:212 +#: ../../Zotlabs/Module/Settings/Display.php:213 msgid "click to expand content exceeding this height" msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." -#: ../../Zotlabs/Module/Settings/Display.php:231 +#: ../../Zotlabs/Module/Settings/Display.php:213 msgid "Grid page max height of content (in pixels)" msgstr "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite" @@ -4077,7 +4149,7 @@ msgstr "Name der Anwendung" #: ../../Zotlabs/Module/Settings/Oauth.php:90 #: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:775 +#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 msgid "Consumer Key" msgstr "Consumer Key" @@ -4088,7 +4160,7 @@ msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" #: ../../Zotlabs/Module/Settings/Oauth.php:91 #: ../../Zotlabs/Module/Settings/Oauth.php:117 -#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:776 +#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 msgid "Consumer Secret" msgstr "Consumer Secret" @@ -4148,9 +4220,9 @@ msgstr "Album bearbeiten" #: ../../Zotlabs/Module/Embedphotos.php:158 #: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Photos.php:844 #: ../../Zotlabs/Module/Photos.php:1381 -#: ../../Zotlabs/Module/Profile_photo.php:437 +#: ../../Zotlabs/Module/Profile_photo.php:458 #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Storage/Browser.php:274 ../../Zotlabs/Storage/Browser.php:381 +#: ../../Zotlabs/Storage/Browser.php:277 ../../Zotlabs/Storage/Browser.php:384 #: ../../Zotlabs/Widget/Cdav.php:133 ../../Zotlabs/Widget/Cdav.php:169 #: ../../Zotlabs/Widget/Portfolio.php:110 ../../Zotlabs/Widget/Album.php:97 msgid "Upload" @@ -4217,7 +4289,7 @@ msgstr "URL eines Fotos der Sache (optional)" #: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 #: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 #: ../../Zotlabs/Module/Filestorage.php:147 -#: ../../include/acl_selectors.php:218 +#: ../../include/acl_selectors.php:123 msgid "Permissions" msgstr "Berechtigungen" @@ -4314,16 +4386,16 @@ msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur msgid "Authentication failed." msgstr "Authentifizierung fehlgeschlagen." -#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1665 -#: ../../include/channel.php:2301 +#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1583 +#: ../../include/channel.php:2307 msgid "Remote Authentication" msgstr "Entfernte Authentifizierung" -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2302 +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2308 msgid "Enter your channel address (e.g. channel@example.com)" msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" -#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2303 +#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2309 msgid "Authenticate" msgstr "Authentifizieren" @@ -4331,23 +4403,23 @@ msgstr "Authentifizieren" msgid "Permissions denied." msgstr "Berechtigung verweigert." -#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2312 +#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2426 msgid "Import" msgstr "Import" -#: ../../Zotlabs/Module/Api.php:72 ../../Zotlabs/Module/Api.php:93 +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 msgid "Authorize application connection" msgstr "Zugriff für die Anwendung autorisieren" -#: ../../Zotlabs/Module/Api.php:73 +#: ../../Zotlabs/Module/Api.php:75 msgid "Return to your app and insert this Security Code:" msgstr "Gehen Sie zu Ihrer App zurück und tragen Sie diesen Sicherheitscode ein:" -#: ../../Zotlabs/Module/Api.php:83 +#: ../../Zotlabs/Module/Api.php:85 msgid "Please login to continue." msgstr "Zum Weitermachen, bitte einloggen." -#: ../../Zotlabs/Module/Api.php:95 +#: ../../Zotlabs/Module/Api.php:97 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" @@ -4365,15 +4437,15 @@ msgstr "Block bearbeiten" msgid "vcard" msgstr "VCard" -#: ../../Zotlabs/Module/Apps.php:47 ../../Zotlabs/Lib/Apps.php:223 +#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 msgid "Apps" msgstr "Apps" -#: ../../Zotlabs/Module/Apps.php:50 +#: ../../Zotlabs/Module/Apps.php:51 msgid "Manage apps" msgstr "Apps verwalten" -#: ../../Zotlabs/Module/Apps.php:51 +#: ../../Zotlabs/Module/Apps.php:52 msgid "Create new app" msgstr "Neue App erstellen" @@ -4383,7 +4455,7 @@ msgctxt "mood" msgid "%1$s is %2$s" msgstr "%1$s ist %2$s" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:247 +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:253 msgid "Mood" msgstr "Laune" @@ -4423,12 +4495,12 @@ msgstr "Neu" #: ../../Zotlabs/Module/Connections.php:88 #: ../../Zotlabs/Module/Connections.php:102 -#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:30 +#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 msgid "All" msgstr "Alle" #: ../../Zotlabs/Module/Connections.php:133 -#: ../../Zotlabs/Widget/Notifications.php:82 +#: ../../Zotlabs/Widget/Notifications.php:84 msgid "New Connections" msgstr "Neue Verbindungen" @@ -4468,70 +4540,70 @@ msgstr "Archiviert" msgid "Not connected at this location" msgstr "An diesem Ort nicht verbunden" -#: ../../Zotlabs/Module/Connections.php:258 +#: ../../Zotlabs/Module/Connections.php:263 #, php-format msgid "%1$s [%2$s]" msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Connections.php:259 +#: ../../Zotlabs/Module/Connections.php:264 msgid "Edit connection" msgstr "Verbindung bearbeiten" -#: ../../Zotlabs/Module/Connections.php:261 +#: ../../Zotlabs/Module/Connections.php:266 msgid "Delete connection" msgstr "Verbindung löschen" -#: ../../Zotlabs/Module/Connections.php:270 +#: ../../Zotlabs/Module/Connections.php:275 msgid "Channel address" msgstr "Kanaladresse" -#: ../../Zotlabs/Module/Connections.php:272 +#: ../../Zotlabs/Module/Connections.php:277 msgid "Network" msgstr "Netzwerk" -#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Connections.php:280 msgid "Call" msgstr "Anruf" -#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Connections.php:282 msgid "Status" msgstr "Status" -#: ../../Zotlabs/Module/Connections.php:279 +#: ../../Zotlabs/Module/Connections.php:284 msgid "Connected" msgstr "Verbunden" -#: ../../Zotlabs/Module/Connections.php:281 +#: ../../Zotlabs/Module/Connections.php:286 msgid "Approve connection" msgstr "Verbindung genehmigen" -#: ../../Zotlabs/Module/Connections.php:283 +#: ../../Zotlabs/Module/Connections.php:288 msgid "Ignore connection" msgstr "Verbindung ignorieren" -#: ../../Zotlabs/Module/Connections.php:284 +#: ../../Zotlabs/Module/Connections.php:289 #: ../../Zotlabs/Module/Connedit.php:630 msgid "Ignore" msgstr "Ignorieren" -#: ../../Zotlabs/Module/Connections.php:285 +#: ../../Zotlabs/Module/Connections.php:290 msgid "Recent activity" msgstr "Kürzliche Aktivitäten" -#: ../../Zotlabs/Module/Connections.php:309 ../../Zotlabs/Lib/Apps.php:229 -#: ../../include/text.php:959 ../../include/nav.php:114 +#: ../../Zotlabs/Module/Connections.php:315 ../../Zotlabs/Lib/Apps.php:235 +#: ../../include/text.php:973 msgid "Connections" msgstr "Verbindungen" -#: ../../Zotlabs/Module/Connections.php:314 +#: ../../Zotlabs/Module/Connections.php:320 msgid "Search your connections" msgstr "Verbindungen durchsuchen" -#: ../../Zotlabs/Module/Connections.php:315 +#: ../../Zotlabs/Module/Connections.php:321 msgid "Connections search" msgstr "Verbindung suchen" -#: ../../Zotlabs/Module/Connections.php:316 +#: ../../Zotlabs/Module/Connections.php:322 #: ../../Zotlabs/Module/Directory.php:396 #: ../../Zotlabs/Module/Directory.php:401 ../../include/contact_widgets.php:23 msgid "Find" @@ -4729,12 +4801,12 @@ msgid "Please wait" msgstr "Bitte warten" #: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 -#: ../../Zotlabs/Lib/ThreadItem.php:751 +#: ../../Zotlabs/Lib/ThreadItem.php:747 msgid "This is you" msgstr "Das bist Du" #: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 -#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/js_strings.php:6 +#: ../../Zotlabs/Lib/ThreadItem.php:749 ../../include/js_strings.php:6 msgid "Comment" msgstr "Kommentar" @@ -4784,8 +4856,8 @@ msgid "View all" msgstr "Alles anzeigen" #: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 -#: ../../include/conversation.php:1978 ../../include/channel.php:1539 -#: ../../include/taxonomy.php:593 +#: ../../include/conversation.php:1978 ../../include/channel.php:1540 +#: ../../include/taxonomy.php:597 msgctxt "noun" msgid "Like" msgid_plural "Likes" @@ -4823,7 +4895,7 @@ msgid "Dislikes" msgstr "Gefällt nicht" #: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 -#: ../../include/acl_selectors.php:220 +#: ../../include/acl_selectors.php:125 msgid "Close" msgstr "Schließen" @@ -4858,7 +4930,7 @@ msgid "Error downloading wiki: " msgstr "Fehler beim Herunterladen des Wiki:" #: ../../Zotlabs/Module/Wiki.php:197 ../../addon/gitwiki/Mod_Gitwiki.php:146 -#: ../../include/conversation.php:1925 ../../include/nav.php:526 +#: ../../include/conversation.php:1925 ../../include/nav.php:494 msgid "Wikis" msgstr "Wikis" @@ -4882,23 +4954,23 @@ msgstr "Inhaltstyp" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:348 #: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1802 -#: ../../include/features.php:378 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 +#: ../../include/text.php:1868 msgid "Markdown" msgstr "Markdown" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:348 #: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1800 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1866 msgid "BBcode" msgstr "BBcode" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1803 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1869 msgid "Text" msgstr "Text" -#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:281 +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 #: ../../addon/gitwiki/Mod_Gitwiki.php:159 msgid "Type" msgstr "Typ" @@ -4965,8 +5037,11 @@ msgstr "Bild aus Fotoalben einbetten" msgid "Embed an image from your albums" msgstr "Betten Sie ein Bild aus Ihren Alben ein" -#: ../../Zotlabs/Module/Wiki.php:376 ../../addon/gitwiki/Mod_Gitwiki.php:268 -#: ../../include/conversation.php:1387 ../../include/conversation.php:1434 +#: ../../Zotlabs/Module/Wiki.php:376 +#: ../../Zotlabs/Module/Profile_photo.php:465 +#: ../../Zotlabs/Module/Cover_photo.php:366 +#: ../../addon/gitwiki/Mod_Gitwiki.php:268 ../../include/conversation.php:1387 +#: ../../include/conversation.php:1434 msgid "OK" msgstr "Ok" @@ -5095,7 +5170,7 @@ msgstr "Ein weiteres Layout bearbeiten" msgid "System layout" msgstr "System-Layout" -#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:248 +#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 #: ../../include/conversation.php:1092 msgid "Poke" msgstr "Anstupsen" @@ -5124,97 +5199,97 @@ msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" msgid "Make this post private" msgstr "Diesen Beitrag privat machen" -#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Profile_photo.php:66 #: ../../Zotlabs/Module/Cover_photo.php:56 msgid "Image uploaded but image cropping failed." msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:240 +#: ../../Zotlabs/Module/Profile_photo.php:120 +#: ../../Zotlabs/Module/Profile_photo.php:248 #: ../../include/photo/photo_driver.php:740 msgid "Profile Photos" msgstr "Profilfotos" -#: ../../Zotlabs/Module/Profile_photo.php:137 +#: ../../Zotlabs/Module/Profile_photo.php:142 #: ../../Zotlabs/Module/Cover_photo.php:159 msgid "Image resize failed." msgstr "Bild-Anpassung fehlgeschlagen." -#: ../../Zotlabs/Module/Profile_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:218 #: ../../addon/openclipatar/openclipatar.php:298 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." -#: ../../Zotlabs/Module/Profile_photo.php:217 +#: ../../Zotlabs/Module/Profile_photo.php:225 #: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 msgid "Unable to process image" msgstr "Kann Bild nicht verarbeiten" -#: ../../Zotlabs/Module/Profile_photo.php:252 +#: ../../Zotlabs/Module/Profile_photo.php:260 #: ../../Zotlabs/Module/Cover_photo.php:197 msgid "Image upload failed." msgstr "Hochladen des Bilds fehlgeschlagen." -#: ../../Zotlabs/Module/Profile_photo.php:271 +#: ../../Zotlabs/Module/Profile_photo.php:279 #: ../../Zotlabs/Module/Cover_photo.php:214 msgid "Unable to process image." msgstr "Kann Bild nicht verarbeiten." -#: ../../Zotlabs/Module/Profile_photo.php:332 -#: ../../Zotlabs/Module/Profile_photo.php:379 +#: ../../Zotlabs/Module/Profile_photo.php:343 +#: ../../Zotlabs/Module/Profile_photo.php:390 #: ../../Zotlabs/Module/Cover_photo.php:307 #: ../../Zotlabs/Module/Cover_photo.php:322 msgid "Photo not available." msgstr "Foto nicht verfügbar." -#: ../../Zotlabs/Module/Profile_photo.php:434 +#: ../../Zotlabs/Module/Profile_photo.php:455 #: ../../Zotlabs/Module/Cover_photo.php:358 msgid "Upload File:" msgstr "Datei hochladen:" -#: ../../Zotlabs/Module/Profile_photo.php:435 +#: ../../Zotlabs/Module/Profile_photo.php:456 #: ../../Zotlabs/Module/Cover_photo.php:359 msgid "Select a profile:" msgstr "Wähle ein Profil:" -#: ../../Zotlabs/Module/Profile_photo.php:436 +#: ../../Zotlabs/Module/Profile_photo.php:457 msgid "Use Photo for Profile" msgstr "Foto für Profil verwenden" -#: ../../Zotlabs/Module/Profile_photo.php:436 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Change Profile Photo" +msgstr "Profilfoto ändern" -#: ../../Zotlabs/Module/Profile_photo.php:437 -#: ../../addon/openclipatar/openclipatar.php:182 -#: ../../addon/openclipatar/openclipatar.php:194 +#: ../../Zotlabs/Module/Profile_photo.php:458 msgid "Use" msgstr "Verwenden" -#: ../../Zotlabs/Module/Profile_photo.php:443 -#: ../../Zotlabs/Module/Cover_photo.php:365 -msgid "skip this step" -msgstr "diesen Schritt überspringen" - -#: ../../Zotlabs/Module/Profile_photo.php:443 -#: ../../Zotlabs/Module/Cover_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "ein Foto aus meinen Fotoalben" - #: ../../Zotlabs/Module/Profile_photo.php:462 -#: ../../Zotlabs/Module/Cover_photo.php:381 +#: ../../Zotlabs/Module/Profile_photo.php:463 +#: ../../Zotlabs/Module/Cover_photo.php:363 +#: ../../Zotlabs/Module/Cover_photo.php:364 +msgid "Use a photo from your albums" +msgstr "Ein Foto aus meinen Alben verwenden" + +#: ../../Zotlabs/Module/Profile_photo.php:467 +#: ../../Zotlabs/Module/Cover_photo.php:369 +msgid "Select existing photo" +msgstr "Wähle ein vorhandenes Foto aus" + +#: ../../Zotlabs/Module/Profile_photo.php:486 +#: ../../Zotlabs/Module/Cover_photo.php:386 msgid "Crop Image" msgstr "Bild zuschneiden" -#: ../../Zotlabs/Module/Profile_photo.php:463 -#: ../../Zotlabs/Module/Cover_photo.php:382 +#: ../../Zotlabs/Module/Profile_photo.php:487 +#: ../../Zotlabs/Module/Cover_photo.php:387 msgid "Please adjust the image cropping for optimum viewing." msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." -#: ../../Zotlabs/Module/Profile_photo.php:465 -#: ../../Zotlabs/Module/Cover_photo.php:384 +#: ../../Zotlabs/Module/Profile_photo.php:489 +#: ../../Zotlabs/Module/Cover_photo.php:389 msgid "Done Editing" msgstr "Bearbeitung fertigstellen" @@ -5226,65 +5301,65 @@ msgstr "Abwesend" msgid "Online" msgstr "Online" -#: ../../Zotlabs/Module/Item.php:193 +#: ../../Zotlabs/Module/Item.php:194 msgid "Unable to locate original post." msgstr "Originalbeitrag nicht gefunden." -#: ../../Zotlabs/Module/Item.php:475 +#: ../../Zotlabs/Module/Item.php:476 msgid "Empty post discarded." msgstr "Leeren Beitrag verworfen." -#: ../../Zotlabs/Module/Item.php:853 +#: ../../Zotlabs/Module/Item.php:867 msgid "Duplicate post suppressed." msgstr "Doppelter Beitrag unterdrückt." -#: ../../Zotlabs/Module/Item.php:998 +#: ../../Zotlabs/Module/Item.php:1012 msgid "System error. Post not saved." msgstr "Systemfehler. Beitrag nicht gespeichert." -#: ../../Zotlabs/Module/Item.php:1034 +#: ../../Zotlabs/Module/Item.php:1048 msgid "Your comment is awaiting approval." msgstr "Dein Kommentar muss noch bestätigt werden." -#: ../../Zotlabs/Module/Item.php:1139 +#: ../../Zotlabs/Module/Item.php:1153 msgid "Unable to obtain post information from database." msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." -#: ../../Zotlabs/Module/Item.php:1168 +#: ../../Zotlabs/Module/Item.php:1182 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." -#: ../../Zotlabs/Module/Item.php:1175 +#: ../../Zotlabs/Module/Item.php:1189 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." -#: ../../Zotlabs/Module/Ping.php:311 +#: ../../Zotlabs/Module/Ping.php:320 msgid "sent you a private message" msgstr "hat Dir eine private Nachricht geschickt" -#: ../../Zotlabs/Module/Ping.php:360 +#: ../../Zotlabs/Module/Ping.php:372 msgid "added your channel" msgstr "hat deinen Kanal hinzugefügt" -#: ../../Zotlabs/Module/Ping.php:384 +#: ../../Zotlabs/Module/Ping.php:396 msgid "requires approval" msgstr "Zustimmung erforderlich" -#: ../../Zotlabs/Module/Ping.php:394 +#: ../../Zotlabs/Module/Ping.php:406 msgid "g A l F d" msgstr "l, d. F, G:i \\U\\h\\r" -#: ../../Zotlabs/Module/Ping.php:412 +#: ../../Zotlabs/Module/Ping.php:424 msgid "[today]" msgstr "[Heute]" -#: ../../Zotlabs/Module/Ping.php:421 +#: ../../Zotlabs/Module/Ping.php:433 msgid "posted an event" msgstr "hat einen Termin veröffentlicht" -#: ../../Zotlabs/Module/Ping.php:454 +#: ../../Zotlabs/Module/Ping.php:466 msgid "shared a file with you" msgstr "hat eine Datei mit Dir geteilt" @@ -5294,7 +5369,7 @@ msgstr "Ungültiges Element." #: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 #: ../../Zotlabs/Module/Display.php:133 -#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:168 +#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 #: ../../include/help.php:81 msgid "Page not found." msgstr "Seite nicht gefunden." @@ -5347,9 +5422,9 @@ msgstr "Konnte die Adressbuch-Parameter nicht setzen." msgid "Connection has been removed." msgstr "Verbindung wurde gelöscht." -#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:241 +#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 #: ../../addon/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:1032 ../../include/nav.php:148 +#: ../../include/conversation.php:1032 ../../include/nav.php:114 msgid "View Profile" msgstr "Profil ansehen" @@ -5459,15 +5534,15 @@ msgstr "Beziehung" msgid "Open Set Affinity section by default" msgstr "Öffne standardmäßig den Bereich für Beziehungsgrad-Einstellungen" -#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:26 +#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 msgid "Me" msgstr "Ich" -#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:27 +#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 msgid "Family" msgstr "Familie" -#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:29 +#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 msgid "Acquaintances" msgstr "Bekannte" @@ -5499,119 +5574,124 @@ msgstr "Profil festlegen" msgid "Set Affinity & Profile" msgstr "Beziehung und Profile festlegen" -#: ../../Zotlabs/Module/Connedit.php:855 +#: ../../Zotlabs/Module/Connedit.php:838 msgid "This connection is unreachable from this location." msgstr "Diese Verbindung ist von diesem Ort unerreichbar." -#: ../../Zotlabs/Module/Connedit.php:856 +#: ../../Zotlabs/Module/Connedit.php:839 msgid "This connection may be unreachable from other channel locations." msgstr "Diese Verbindung könnte von anderen Standpunkten des Kanals nicht erreichbar sein." -#: ../../Zotlabs/Module/Connedit.php:858 +#: ../../Zotlabs/Module/Connedit.php:841 msgid "Location independence is not supported by their network." msgstr "Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt." -#: ../../Zotlabs/Module/Connedit.php:864 +#: ../../Zotlabs/Module/Connedit.php:847 msgid "" "This connection is unreachable from this location. Location independence is " "not supported by their network." msgstr "Diese Verbindung ist von diesem Standort aus unerreichbar. Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt." -#: ../../Zotlabs/Module/Connedit.php:867 ../../Zotlabs/Module/Defperms.php:238 +#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 #: ../../Zotlabs/Widget/Settings_menu.php:109 msgid "Connection Default Permissions" msgstr "Standardzugriffsrechte für neue Verbindungen:" -#: ../../Zotlabs/Module/Connedit.php:867 ../../include/items.php:4134 +#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4164 #, php-format msgid "Connection: %s" msgstr "Verbindung: %s" -#: ../../Zotlabs/Module/Connedit.php:868 ../../Zotlabs/Module/Defperms.php:239 +#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 msgid "Apply these permissions automatically" msgstr "Diese Berechtigungen automatisch anwenden" -#: ../../Zotlabs/Module/Connedit.php:868 +#: ../../Zotlabs/Module/Connedit.php:851 msgid "Connection requests will be approved without your interaction" msgstr "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist." -#: ../../Zotlabs/Module/Connedit.php:869 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 msgid "Permission role" msgstr "Berechtigungsrolle" -#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Defperms.php:241 +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 +msgid "Loading" +msgstr "Lädt..." + +#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 msgid "Add permission role" msgstr "Berechtigungsrolle hinzufügen" -#: ../../Zotlabs/Module/Connedit.php:877 +#: ../../Zotlabs/Module/Connedit.php:860 msgid "This connection's primary address is" msgstr "Die Hauptadresse der Verbindung ist" -#: ../../Zotlabs/Module/Connedit.php:878 +#: ../../Zotlabs/Module/Connedit.php:861 msgid "Available locations:" msgstr "Verfügbare Klone:" -#: ../../Zotlabs/Module/Connedit.php:883 ../../Zotlabs/Module/Defperms.php:245 +#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet." -#: ../../Zotlabs/Module/Connedit.php:884 +#: ../../Zotlabs/Module/Connedit.php:867 msgid "Connection Tools" msgstr "Verbindungswerkzeuge" -#: ../../Zotlabs/Module/Connedit.php:886 +#: ../../Zotlabs/Module/Connedit.php:869 msgid "Slide to adjust your degree of friendship" msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../Zotlabs/Module/Connedit.php:887 ../../Zotlabs/Module/Rate.php:155 +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Bewertung" -#: ../../Zotlabs/Module/Connedit.php:888 +#: ../../Zotlabs/Module/Connedit.php:871 msgid "Slide to adjust your rating" msgstr "Verschieben, um Deine Bewertung einzustellen" -#: ../../Zotlabs/Module/Connedit.php:889 ../../Zotlabs/Module/Connedit.php:894 +#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 msgid "Optionally explain your rating" msgstr "Optional kannst Du Deine Bewertung begründen" -#: ../../Zotlabs/Module/Connedit.php:891 +#: ../../Zotlabs/Module/Connedit.php:874 msgid "Custom Filter" msgstr "Benutzerdefinierter Filter" -#: ../../Zotlabs/Module/Connedit.php:892 +#: ../../Zotlabs/Module/Connedit.php:875 msgid "Only import posts with this text" msgstr "Nur Beiträge mit diesem Text importieren" -#: ../../Zotlabs/Module/Connedit.php:892 ../../Zotlabs/Module/Connedit.php:893 +#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren." -#: ../../Zotlabs/Module/Connedit.php:893 +#: ../../Zotlabs/Module/Connedit.php:876 msgid "Do not import posts with this text" msgstr "Beiträge mit diesem Text nicht importieren" -#: ../../Zotlabs/Module/Connedit.php:895 +#: ../../Zotlabs/Module/Connedit.php:878 msgid "This information is public!" msgstr "Diese Information ist öffentlich!" -#: ../../Zotlabs/Module/Connedit.php:900 +#: ../../Zotlabs/Module/Connedit.php:883 msgid "Connection Pending Approval" msgstr "Verbindung wartet auf Bestätigung" -#: ../../Zotlabs/Module/Connedit.php:905 +#: ../../Zotlabs/Module/Connedit.php:888 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../Zotlabs/Module/Connedit.php:912 +#: ../../Zotlabs/Module/Connedit.php:895 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -5619,11 +5699,11 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../Zotlabs/Module/Connedit.php:913 +#: ../../Zotlabs/Module/Connedit.php:896 msgid "Last update:" msgstr "Letzte Aktualisierung:" -#: ../../Zotlabs/Module/Connedit.php:922 +#: ../../Zotlabs/Module/Connedit.php:904 msgid "Details" msgstr "Details" @@ -5657,7 +5737,7 @@ msgid "Please enter a link URL:" msgstr "Gib eine URL ein:" #: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:768 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:764 #: ../../include/conversation.php:1432 msgid "Encrypt text" msgstr "Text verschlüsseln" @@ -5691,14 +5771,14 @@ msgstr "Verfall" msgid "min" msgstr "min" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:242 -#: ../../include/conversation.php:1831 ../../include/nav.php:433 +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 +#: ../../include/conversation.php:1831 ../../include/nav.php:401 msgid "Photos" msgstr "Fotos" -#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:237 -#: ../../Zotlabs/Storage/Browser.php:269 ../../include/conversation.php:1839 -#: ../../include/nav.php:441 +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1839 +#: ../../include/nav.php:409 msgid "Files" msgstr "Dateien" @@ -5738,7 +5818,7 @@ msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" msgid "Submit and proceed" msgstr "Absenden und fortfahren" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2289 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2403 msgid "Menus" msgstr "Menüs" @@ -5790,12 +5870,12 @@ msgstr "Menü Titel wie er von anderen gesehen wird" msgid "Allow bookmarks" msgstr "Erlaube Lesezeichen" -#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2290 +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2404 msgid "Layouts" msgstr "Layouts" -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:245 -#: ../../include/nav.php:208 ../../include/nav.php:312 +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 +#: ../../include/nav.php:176 ../../include/nav.php:280 #: ../../include/help.php:68 ../../include/help.php:74 msgid "Help" msgstr "Hilfe" @@ -5813,20 +5893,49 @@ msgid "Download PDL file" msgstr "PDL-Datei herunterladen" #: ../../Zotlabs/Module/Cloud.php:114 +msgid "Please refresh page" +msgstr "Bitte die Seite neu laden" + +#: ../../Zotlabs/Module/Cloud.php:117 msgid "Unknown error" msgstr "Unbekannter Fehler" +#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." +msgstr "Überprüfung des Verifizierungscodes fehlgeschlagen." + +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "Email-Überprüfung erforderlich" + +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "Ein Verifizierungscode wurde an Deine Emailadresse versendet [%s]. Gib diesen Code hier ein, um die Überprüfung abzuschließen. Bedenke, dass die Zustellung der Mail einige Zeit dauern kann, und überprüfe ggf. auch Spam- und andere Filter-Ordner, falls die Nachricht nicht erscheint." + +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "Email erneut versenden" + +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "Verifizierungscode" + #: ../../Zotlabs/Module/Tagger.php:48 msgid "Post not found." msgstr "Beitrag nicht gefunden." #: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 -#: ../../include/bbcode.php:335 +#: ../../include/bbcode.php:339 msgid "post" msgstr "Beitrag" #: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 -#: ../../include/text.php:1946 +#: ../../include/text.php:2012 msgid "comment" msgstr "Kommentar" @@ -5874,7 +5983,7 @@ msgid "Could not create privacy group." msgstr "Gruppe konnte nicht erstellt werden." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 -#: ../../include/items.php:4101 +#: ../../include/items.php:4131 msgid "Privacy group not found." msgstr "Gruppe nicht gefunden." @@ -6049,7 +6158,8 @@ msgstr "Persönlich" msgid "Relation" msgstr "Beziehung" -#: ../../Zotlabs/Module/Profiles.php:739 ../../include/datetime.php:58 +#: ../../Zotlabs/Module/Profiles.php:739 ../../Zotlabs/Widget/Newmember.php:53 +#: ../../include/datetime.php:58 msgid "Miscellaneous" msgstr "Verschiedenes" @@ -6191,10 +6301,73 @@ msgid "Profile Image" msgstr "Profilfoto:" #: ../../Zotlabs/Module/Profiles.php:833 ../../include/channel.php:1297 -#: ../../include/nav.php:151 +#: ../../include/nav.php:117 msgid "Edit Profiles" msgstr "Profile bearbeiten" +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "Diese Seite ist nur für Mitglieder verfügbar" + +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" +msgstr "Willkommen" + +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" +msgstr "Was möchtest Du gerne tun?" + +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "Bitte speichere diese Seite in Deinen Lesezeichen, falls Du später zu ihr zurückkehren möchtest." + +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "Ein Profilfoto hochladen" + +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" +msgstr "Ein Titelbild hochladen" + +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "Dein Standardprofil bearbeiten" + +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:43 +msgid "View friend suggestions" +msgstr "Freundschafts- und Verbindungsvorschläge ansehen" + +#: ../../Zotlabs/Module/Go.php:39 ../../Zotlabs/Widget/Newmember.php:42 +msgid "View the channel directory" +msgstr "Das Kanalverzeichnis ansehen" + +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "Deine Kanaleinstellungen ansehen/bearbeiten" + +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "Die Website-/Projektdokumentation ansehen" + +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "Deine Kanal-Startseite aufrufen" + +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "Deine Verbindungen ansehen und/oder jemanden hinzufügen, dessen Kanal-Adresse Du bereits kennst" + +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "Deinen persönlichen Beitragsstrom ansehen (dieser kann leer sein, bis Du ein paar Verbindungen hinzugefügt hast)" + +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "Den öffentlichen Beitragsstrom ansehen. Warnung: Diese Inhalte sind nicht moderiert." + #: ../../Zotlabs/Module/Editwebpage.php:139 msgid "Page link" msgstr "Seiten-Link" @@ -6207,8 +6380,8 @@ msgstr "Webseite bearbeiten" msgid "Create a new channel" msgstr "Neuen Kanal anlegen" -#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:234 -#: ../../include/nav.php:136 ../../include/nav.php:222 +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 +#: ../../include/nav.php:102 ../../include/nav.php:190 msgid "Channel Manager" msgstr "Kanal-Manager" @@ -6242,7 +6415,13 @@ msgstr "%d neue Vorstellungen" msgid "Delegated Channel" msgstr "Delegierte Kanäle" -#: ../../Zotlabs/Module/Cards.php:95 +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:181 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1890 +#: ../../include/features.php:114 ../../include/nav.php:458 +msgid "Cards" +msgstr "Karten" + +#: ../../Zotlabs/Module/Cards.php:99 msgid "Add Card" msgstr "Karte hinzufügen" @@ -6250,45 +6429,45 @@ msgstr "Karte hinzufügen" msgid "This directory server requires an access token" msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Siteinfo.php:18 msgid "About this site" msgstr "Über diese Seite" -#: ../../Zotlabs/Module/Siteinfo.php:20 +#: ../../Zotlabs/Module/Siteinfo.php:19 msgid "Site Name" msgstr "Seitenname" -#: ../../Zotlabs/Module/Siteinfo.php:24 +#: ../../Zotlabs/Module/Siteinfo.php:23 msgid "Administrator" msgstr "Administrator" -#: ../../Zotlabs/Module/Siteinfo.php:26 ../../Zotlabs/Module/Register.php:229 +#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 msgid "Terms of Service" msgstr "Nutzungsbedingungen" -#: ../../Zotlabs/Module/Siteinfo.php:27 +#: ../../Zotlabs/Module/Siteinfo.php:26 msgid "Software and Project information" msgstr "Software und Projektinformationen" -#: ../../Zotlabs/Module/Siteinfo.php:28 +#: ../../Zotlabs/Module/Siteinfo.php:27 msgid "This site is powered by $Projectname" msgstr "Diese Website wird bereitgestellt durch $Projectname" -#: ../../Zotlabs/Module/Siteinfo.php:29 +#: ../../Zotlabs/Module/Siteinfo.php:28 msgid "" "Federated and decentralised networking and identity services provided by Zot" msgstr "Verbundene, dezentrale Netzwerk- und Identitätsdienste, ermöglicht mittels Zot" -#: ../../Zotlabs/Module/Siteinfo.php:31 +#: ../../Zotlabs/Module/Siteinfo.php:30 #, php-format msgid "Version %s" msgstr "Version %s" -#: ../../Zotlabs/Module/Siteinfo.php:32 +#: ../../Zotlabs/Module/Siteinfo.php:31 msgid "Project homepage" msgstr "Projekt-Website" -#: ../../Zotlabs/Module/Siteinfo.php:33 +#: ../../Zotlabs/Module/Siteinfo.php:32 msgid "Developer homepage" msgstr "Entwickler-Website" @@ -6329,8 +6508,8 @@ msgstr "Webseitenelemente exportieren" msgid "Export selected" msgstr "Exportieren ausgewählt" -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:238 -#: ../../include/conversation.php:1912 ../../include/nav.php:513 +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 +#: ../../include/conversation.php:1912 ../../include/nav.php:481 msgid "Webpages" msgstr "Webseiten" @@ -6490,7 +6669,7 @@ msgid "*" msgstr "*" #: ../../Zotlabs/Module/Sources.php:96 -#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:228 +#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:274 msgid "Channel Sources" msgstr "Kanal-Quellen" @@ -6546,88 +6725,88 @@ msgstr "Quelle gelöscht" msgid "Unable to remove source." msgstr "Konnte die Quelle nicht löschen." -#: ../../Zotlabs/Module/Like.php:22 +#: ../../Zotlabs/Module/Like.php:54 msgid "Like/Dislike" msgstr "Mögen/Nicht mögen" -#: ../../Zotlabs/Module/Like.php:27 +#: ../../Zotlabs/Module/Like.php:59 msgid "This action is restricted to members." msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." -#: ../../Zotlabs/Module/Like.php:28 +#: ../../Zotlabs/Module/Like.php:60 msgid "" "Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "Um fortzufahren melde Dich bitte mit Deiner $Projectname-ID an oder registriere Dich als neues $Projectname-Mitglied." -#: ../../Zotlabs/Module/Like.php:108 ../../Zotlabs/Module/Like.php:134 -#: ../../Zotlabs/Module/Like.php:172 +#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 +#: ../../Zotlabs/Module/Like.php:173 msgid "Invalid request." msgstr "Ungültige Anfrage." -#: ../../Zotlabs/Module/Like.php:120 ../../include/conversation.php:122 +#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 msgid "channel" msgstr "Kanal" -#: ../../Zotlabs/Module/Like.php:149 +#: ../../Zotlabs/Module/Like.php:150 msgid "thing" msgstr "Sache" -#: ../../Zotlabs/Module/Like.php:195 +#: ../../Zotlabs/Module/Like.php:196 msgid "Channel unavailable." msgstr "Kanal nicht vorhanden." -#: ../../Zotlabs/Module/Like.php:243 +#: ../../Zotlabs/Module/Like.php:244 msgid "Previous action reversed." msgstr "Die vorherige Aktion wurde rückgängig gemacht." -#: ../../Zotlabs/Module/Like.php:435 ../../addon/diaspora/Receiver.php:1462 -#: ../../addon/pubcrawl/as.php:1330 ../../include/conversation.php:160 +#: ../../Zotlabs/Module/Like.php:436 ../../addon/diaspora/Receiver.php:1547 +#: ../../addon/pubcrawl/as.php:1394 ../../include/conversation.php:160 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s gefällt %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:437 ../../addon/pubcrawl/as.php:1332 +#: ../../Zotlabs/Module/Like.php:438 ../../addon/pubcrawl/as.php:1396 #: ../../include/conversation.php:163 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s gefällt %2$ss %3$s nicht" -#: ../../Zotlabs/Module/Like.php:439 +#: ../../Zotlabs/Module/Like.php:440 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s stimmt %2$ss %3$s zu" -#: ../../Zotlabs/Module/Like.php:441 +#: ../../Zotlabs/Module/Like.php:442 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%1$s lehnt %2$ss %3$s ab" -#: ../../Zotlabs/Module/Like.php:443 +#: ../../Zotlabs/Module/Like.php:444 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%1$s enthält sich zu %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:445 +#: ../../Zotlabs/Module/Like.php:446 ../../addon/diaspora/Receiver.php:2031 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s nimmt an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Like.php:447 +#: ../../Zotlabs/Module/Like.php:448 ../../addon/diaspora/Receiver.php:2033 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%1$s nimmt an %2$ss %3$s nicht teil" -#: ../../Zotlabs/Module/Like.php:449 +#: ../../Zotlabs/Module/Like.php:450 ../../addon/diaspora/Receiver.php:2035 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Like.php:561 +#: ../../Zotlabs/Module/Like.php:562 msgid "Action completed." msgstr "Aktion durchgeführt." -#: ../../Zotlabs/Module/Like.php:562 +#: ../../Zotlabs/Module/Like.php:563 msgid "Thank you." msgstr "Vielen Dank." @@ -6650,12 +6829,12 @@ msgstr "Status:" msgid "Homepage: " msgstr "Webseite:" -#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1564 +#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1565 msgid "Age:" msgstr "Alter:" #: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1392 -#: ../../include/event.php:53 ../../include/event.php:85 +#: ../../include/event.php:54 ../../include/event.php:86 msgid "Location:" msgstr "Ort:" @@ -6663,11 +6842,11 @@ msgstr "Ort:" msgid "Description:" msgstr "Beschreibung:" -#: ../../Zotlabs/Module/Directory.php:330 ../../include/channel.php:1580 +#: ../../Zotlabs/Module/Directory.php:330 ../../include/channel.php:1581 msgid "Hometown:" msgstr "Heimatstadt:" -#: ../../Zotlabs/Module/Directory.php:332 ../../include/channel.php:1588 +#: ../../Zotlabs/Module/Directory.php:332 ../../include/channel.php:1589 msgid "About:" msgstr "Über:" @@ -6907,19 +7086,19 @@ msgstr "Software" msgid "Rate" msgstr "Bewerten" -#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 msgid "webpage" msgstr "Webseite" -#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:269 +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:273 msgid "block" msgstr "Block" -#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:266 +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 msgid "layout" msgstr "Layout" -#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:272 +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 msgid "menu" msgstr "Menü" @@ -6979,21 +7158,21 @@ msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." msgid "Passwords do not match." msgstr "Passwörter stimmen nicht überein." -#: ../../Zotlabs/Module/Register.php:127 ../../Zotlabs/Module/Register.php:137 +#: ../../Zotlabs/Module/Register.php:132 +msgid "Registration successful. Continue to create your first channel..." +msgstr "Registrierung erfolgreich. Fahre fort, indem Du Deinen ersten Kanal anlegst..." + +#: ../../Zotlabs/Module/Register.php:135 msgid "" "Registration successful. Please check your email for validation " "instructions." msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." -#: ../../Zotlabs/Module/Register.php:135 -msgid "Registration successful. Continue to create your first channel..." -msgstr "Registrierung erfolgreich. Fahre fort, indem Du Deinen ersten Kanal anlegst..." - -#: ../../Zotlabs/Module/Register.php:144 +#: ../../Zotlabs/Module/Register.php:142 msgid "Your registration is pending approval by the site owner." msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: ../../Zotlabs/Module/Register.php:147 +#: ../../Zotlabs/Module/Register.php:145 msgid "Your registration can not be processed." msgstr "Deine Registrierung konnte nicht verarbeitet werden." @@ -7015,97 +7194,97 @@ msgid "" "Please try again tomorrow." msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." -#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/Register.php:238 #, php-format msgid "I accept the %s for this website" msgstr "Ich akzeptiere die %s für diese Webseite" -#: ../../Zotlabs/Module/Register.php:241 +#: ../../Zotlabs/Module/Register.php:245 #, php-format msgid "I am over %s years of age and accept the %s for this website" msgstr "Ich bin älter als %s Jahre und akzeptiere die %s dieser Website." -#: ../../Zotlabs/Module/Register.php:245 +#: ../../Zotlabs/Module/Register.php:250 msgid "Your email address" msgstr "Ihre E-Mail Adresse" -#: ../../Zotlabs/Module/Register.php:246 +#: ../../Zotlabs/Module/Register.php:251 msgid "Choose a password" msgstr "Passwort" -#: ../../Zotlabs/Module/Register.php:247 +#: ../../Zotlabs/Module/Register.php:252 msgid "Please re-enter your password" msgstr "Bitte gib Dein Passwort noch einmal ein" -#: ../../Zotlabs/Module/Register.php:248 +#: ../../Zotlabs/Module/Register.php:253 msgid "Please enter your invitation code" msgstr "Bitte trage Deinen Einladungs-Code ein" -#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Register.php:258 msgid "no" msgstr "nein" -#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Register.php:258 msgid "yes" msgstr "ja" -#: ../../Zotlabs/Module/Register.php:268 +#: ../../Zotlabs/Module/Register.php:274 msgid "Membership on this site is by invitation only." msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../Zotlabs/Module/Register.php:280 ../../boot.php:1645 -#: ../../include/nav.php:196 +#: ../../Zotlabs/Module/Register.php:286 ../../boot.php:1563 +#: ../../include/nav.php:164 msgid "Register" msgstr "Registrieren" -#: ../../Zotlabs/Module/Register.php:281 +#: ../../Zotlabs/Module/Register.php:287 msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Absenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte Deinen Posteingang auf neue Mails mit entsprechenden Hinweisen." +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "Diese Website erfordert eine Email-Bestätigung. Bitte prüfe Deine Emails nach Ausfüllen und Absenden des Formulars, um weitere Hinweise zu bekommen." #: ../../Zotlabs/Module/Cover_photo.php:136 #: ../../Zotlabs/Module/Cover_photo.php:186 msgid "Cover Photos" msgstr "Cover Foto" -#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4478 +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4508 msgid "female" msgstr "weiblich" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4479 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4509 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s hat ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4480 +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4510 msgid "male" msgstr "männlich" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4481 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4511 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s hat sein %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4483 +#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4513 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s hat sein/ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2053 +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2059 msgid "cover photo" msgstr "Cover Foto" #: ../../Zotlabs/Module/Cover_photo.php:360 -msgid "Upload Cover Photo" -msgstr "Cover Foto hochladen" +msgid "Change Cover Photo" +msgstr "Titelbild ändern" #: ../../Zotlabs/Module/Help.php:23 msgid "Documentation Search" msgstr "Suche in der Dokumentation" #: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1821 -#: ../../include/nav.php:423 +#: ../../include/nav.php:391 msgid "About" msgstr "Über" @@ -7129,11 +7308,11 @@ msgstr "$Projectname-Dokumentation" msgid "Contents" msgstr "Inhalt" -#: ../../Zotlabs/Module/Display.php:349 +#: ../../Zotlabs/Module/Display.php:351 msgid "Article" msgstr "Artikel" -#: ../../Zotlabs/Module/Display.php:401 +#: ../../Zotlabs/Module/Display.php:403 msgid "Item has been removed." msgstr "Der Beitrag wurde entfernt." @@ -7149,44 +7328,44 @@ msgstr "Schlagwort entfernen" msgid "Select a tag to remove: " msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../Zotlabs/Module/Network.php:97 +#: ../../Zotlabs/Module/Network.php:100 msgid "No such group" msgstr "Gruppe nicht gefunden" -#: ../../Zotlabs/Module/Network.php:137 +#: ../../Zotlabs/Module/Network.php:142 msgid "No such channel" msgstr "Kanal nicht gefunden" -#: ../../Zotlabs/Module/Network.php:142 +#: ../../Zotlabs/Module/Network.php:147 msgid "forum" msgstr "Forum" -#: ../../Zotlabs/Module/Network.php:154 +#: ../../Zotlabs/Module/Network.php:159 msgid "Search Results For:" msgstr "Suchergebnisse für:" -#: ../../Zotlabs/Module/Network.php:222 +#: ../../Zotlabs/Module/Network.php:230 msgid "Privacy group is empty" msgstr "Gruppe ist leer" -#: ../../Zotlabs/Module/Network.php:231 +#: ../../Zotlabs/Module/Network.php:240 msgid "Privacy group: " msgstr "Gruppe:" -#: ../../Zotlabs/Module/Network.php:257 +#: ../../Zotlabs/Module/Network.php:268 msgid "Invalid connection." msgstr "Ungültige Verbindung." -#: ../../Zotlabs/Module/Network.php:276 ../../addon/redred/redred.php:65 +#: ../../Zotlabs/Module/Network.php:289 ../../addon/redred/redred.php:65 msgid "Invalid channel." msgstr "Ungültiger Kanal." -#: ../../Zotlabs/Module/Acl.php:358 +#: ../../Zotlabs/Module/Acl.php:361 msgid "network" msgstr "Netzwerk" #: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../addon/opensearch/opensearch.php:42 +#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 msgid "$Projectname" msgstr "$Projectname" @@ -7236,7 +7415,7 @@ msgid "Show URL to this file" msgstr "URL zu dieser Datei anzeigen" #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 +#: ../../Zotlabs/Storage/Browser.php:397 msgid "Show in your contacts shared folder" msgstr "Im geteilten Ordner Deiner Kontakte anzeigen" @@ -7252,16 +7431,24 @@ msgstr "Keine gemeinsamen Verbindungen." msgid "View Common Connections" msgstr "Zeige gemeinsame Verbindungen" +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "Email zur Verifizierung wurde erneut versendet" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "Erneutes Versenden der Email zur Verifizierung nicht möglich." + #: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "Keine Verbindungen." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:83 #, php-format msgid "Visit %s's profile [%s]" msgstr "%ss Profil [%s] besuchen" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:113 msgid "View Connections" msgstr "Verbindungen anzeigen" @@ -7370,7 +7557,7 @@ msgid "" "Password reset failed." msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1673 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1591 msgid "Password Reset" msgstr "Zurücksetzen des Kennworts" @@ -7444,143 +7631,143 @@ msgstr "4. Experte - Ich kann Computercode schreiben" msgid "5. Wizard - I probably know more than you do" msgstr "5. Zauberer - ich kann wahrscheinlich mehr als Du" -#: ../../Zotlabs/Lib/Apps.php:225 +#: ../../Zotlabs/Lib/Apps.php:231 msgid "Site Admin" msgstr "Hub-Administration" -#: ../../Zotlabs/Lib/Apps.php:226 ../../addon/buglink/buglink.php:16 +#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 msgid "Report Bug" msgstr "Fehler melden" -#: ../../Zotlabs/Lib/Apps.php:227 +#: ../../Zotlabs/Lib/Apps.php:233 msgid "View Bookmarks" msgstr "Lesezeichen ansehen" -#: ../../Zotlabs/Lib/Apps.php:228 +#: ../../Zotlabs/Lib/Apps.php:234 msgid "My Chatrooms" msgstr "Meine Chaträume" -#: ../../Zotlabs/Lib/Apps.php:230 +#: ../../Zotlabs/Lib/Apps.php:236 msgid "Firefox Share" msgstr "Teilen-Knopf für Firefox" -#: ../../Zotlabs/Lib/Apps.php:231 +#: ../../Zotlabs/Lib/Apps.php:237 msgid "Remote Diagnostics" msgstr "Ferndiagnose" -#: ../../Zotlabs/Lib/Apps.php:232 ../../include/features.php:352 +#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:390 msgid "Suggest Channels" msgstr "Kanäle vorschlagen" -#: ../../Zotlabs/Lib/Apps.php:233 ../../boot.php:1664 -#: ../../include/nav.php:160 ../../include/nav.php:164 +#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1582 +#: ../../include/nav.php:126 ../../include/nav.php:130 msgid "Login" msgstr "Anmelden" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/nav.php:105 +#: ../../Zotlabs/Lib/Apps.php:241 msgid "Activity" msgstr "Aktivität" -#: ../../Zotlabs/Lib/Apps.php:239 ../../include/conversation.php:1928 -#: ../../include/features.php:95 ../../include/nav.php:529 +#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1928 +#: ../../include/features.php:87 ../../include/nav.php:497 msgid "Wiki" msgstr "Wiki" -#: ../../Zotlabs/Lib/Apps.php:240 ../../include/nav.php:109 +#: ../../Zotlabs/Lib/Apps.php:246 msgid "Channel Home" msgstr "Mein Kanal" -#: ../../Zotlabs/Lib/Apps.php:243 ../../include/conversation.php:1850 -#: ../../include/conversation.php:1853 ../../include/nav.php:131 +#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1850 +#: ../../include/conversation.php:1853 msgid "Events" msgstr "Termine" -#: ../../Zotlabs/Lib/Apps.php:244 +#: ../../Zotlabs/Lib/Apps.php:250 msgid "Directory" msgstr "Verzeichnis" -#: ../../Zotlabs/Lib/Apps.php:246 ../../include/nav.php:123 +#: ../../Zotlabs/Lib/Apps.php:252 msgid "Mail" msgstr "Mail" -#: ../../Zotlabs/Lib/Apps.php:249 +#: ../../Zotlabs/Lib/Apps.php:255 msgid "Chat" msgstr "Chat" -#: ../../Zotlabs/Lib/Apps.php:251 +#: ../../Zotlabs/Lib/Apps.php:257 msgid "Probe" msgstr "Testen" -#: ../../Zotlabs/Lib/Apps.php:252 +#: ../../Zotlabs/Lib/Apps.php:258 msgid "Suggest" msgstr "Empfehlen" -#: ../../Zotlabs/Lib/Apps.php:253 +#: ../../Zotlabs/Lib/Apps.php:259 msgid "Random Channel" msgstr "Zufälliger Kanal" -#: ../../Zotlabs/Lib/Apps.php:254 +#: ../../Zotlabs/Lib/Apps.php:260 msgid "Invite" msgstr "Einladen" -#: ../../Zotlabs/Lib/Apps.php:255 ../../Zotlabs/Widget/Admin.php:26 +#: ../../Zotlabs/Lib/Apps.php:261 ../../Zotlabs/Widget/Admin.php:26 msgid "Features" msgstr "Funktionen" -#: ../../Zotlabs/Lib/Apps.php:256 ../../addon/openid/MysqlProvider.php:69 +#: ../../Zotlabs/Lib/Apps.php:262 ../../addon/openid/MysqlProvider.php:69 msgid "Language" msgstr "Sprache" -#: ../../Zotlabs/Lib/Apps.php:257 +#: ../../Zotlabs/Lib/Apps.php:263 msgid "Post" msgstr "Beitrag schreiben" -#: ../../Zotlabs/Lib/Apps.php:258 ../../addon/openid/MysqlProvider.php:58 +#: ../../Zotlabs/Lib/Apps.php:264 ../../addon/openid/MysqlProvider.php:58 #: ../../addon/openid/MysqlProvider.php:59 #: ../../addon/openid/MysqlProvider.php:60 msgid "Profile Photo" msgstr "Profilfoto" -#: ../../Zotlabs/Lib/Apps.php:397 +#: ../../Zotlabs/Lib/Apps.php:407 msgid "Purchase" msgstr "Kaufen" -#: ../../Zotlabs/Lib/Apps.php:401 +#: ../../Zotlabs/Lib/Apps.php:411 msgid "Undelete" msgstr "Wieder hergestellt" -#: ../../Zotlabs/Lib/Apps.php:409 +#: ../../Zotlabs/Lib/Apps.php:419 msgid "Add to app-tray" msgstr "Zum App-Menü hinzufügen" -#: ../../Zotlabs/Lib/Apps.php:410 +#: ../../Zotlabs/Lib/Apps.php:420 msgid "Remove from app-tray" msgstr "Aus dem App-Menü entfernen" -#: ../../Zotlabs/Lib/Apps.php:411 +#: ../../Zotlabs/Lib/Apps.php:421 msgid "Pin to navbar" msgstr "An Navigationsleiste anpinnen" -#: ../../Zotlabs/Lib/Apps.php:412 +#: ../../Zotlabs/Lib/Apps.php:422 msgid "Unpin from navbar" msgstr "Von Navigationsleiste entfernen" -#: ../../Zotlabs/Lib/Permcat.php:58 +#: ../../Zotlabs/Lib/Permcat.php:82 msgctxt "permcat" msgid "default" msgstr "Standard" -#: ../../Zotlabs/Lib/Permcat.php:96 +#: ../../Zotlabs/Lib/Permcat.php:133 msgctxt "permcat" msgid "follower" msgstr "Abonnent" -#: ../../Zotlabs/Lib/Permcat.php:100 +#: ../../Zotlabs/Lib/Permcat.php:137 msgctxt "permcat" msgid "contributor" msgstr "Beitragender" -#: ../../Zotlabs/Lib/Permcat.php:104 +#: ../../Zotlabs/Lib/Permcat.php:141 msgctxt "permcat" msgid "publisher" msgstr "Autor" @@ -7649,18 +7836,18 @@ msgid "Message" msgstr "Nachricht" #: ../../Zotlabs/Lib/NativeWikiPage.php:597 -#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:674 -#: ../../include/bbcode.php:822 +#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:706 +#: ../../include/bbcode.php:865 msgid "Different viewers will see this text differently" msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" #: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:128 +#: ../../include/acl_selectors.php:33 msgid "Visible to your default audience" msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" #: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:201 +#: ../../include/acl_selectors.php:106 msgid "Only me" msgstr "Nur ich" @@ -7741,8 +7928,8 @@ msgstr "Der Chatraum ist voll" msgid "$Projectname Notification" msgstr "$Projectname-Benachrichtigung" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:283 -#: ../../addon/diaspora/util.php:296 ../../addon/diaspora/p.php:48 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 +#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 msgid "$projectname" msgstr "$projectname" @@ -7755,219 +7942,258 @@ msgstr "Danke." msgid "%s Administrator" msgstr "der Administrator von %s" -#: ../../Zotlabs/Lib/Enotify.php:116 +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." +msgstr "Diese Email wurde von %1$s auf %2$s gesendet." + +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine Benachrichtigungseinstellungen unter folgendem Link an: %s" + +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." +msgstr "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine %s an." + +#: ../../Zotlabs/Lib/Enotify.php:120 #, php-format msgid "%s " msgstr "%s " -#: ../../Zotlabs/Lib/Enotify.php:120 +#: ../../Zotlabs/Lib/Enotify.php:124 #, php-format msgid "[$Projectname:Notify] New mail received at %s" msgstr "[$Projectname:Benachrichtigung] Neue Mail empfangen auf %s" -#: ../../Zotlabs/Lib/Enotify.php:122 +#: ../../Zotlabs/Lib/Enotify.php:126 #, php-format msgid "%1$s, %2$s sent you a new private message at %3$s." msgstr "%1$s, %2$s hat Dir eine private Nachricht auf %3$s gesendet." -#: ../../Zotlabs/Lib/Enotify.php:123 +#: ../../Zotlabs/Lib/Enotify.php:127 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s hat Dir %2$s geschickt." -#: ../../Zotlabs/Lib/Enotify.php:123 +#: ../../Zotlabs/Lib/Enotify.php:127 msgid "a private message" msgstr "eine private Nachricht" -#: ../../Zotlabs/Lib/Enotify.php:124 +#: ../../Zotlabs/Lib/Enotify.php:128 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." -#: ../../Zotlabs/Lib/Enotify.php:184 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]einen %4$s[/zrl] kommentiert" +#: ../../Zotlabs/Lib/Enotify.php:141 +msgid "commented on" +msgstr "kommentierte" -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" +#: ../../Zotlabs/Lib/Enotify.php:152 +msgid "liked" +msgstr "gefiel" -#: ../../Zotlabs/Lib/Enotify.php:201 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "disliked" +msgstr "missfiel" -#: ../../Zotlabs/Lib/Enotify.php:213 +#: ../../Zotlabs/Lib/Enotify.php:198 +#, php-format +msgid "%1$s, %2$s %3$s [zrl=%4$s]a %5$s[/zrl]" +msgstr "%1$s, %2$s %3$s [zrl=%4$s]ein %5$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:207 +#, php-format +msgid "%1$s, %2$s %3$s [zrl=%4$s]%5$s's %6$s[/zrl]" +msgstr "%1$s, %2$s %3$s [zrl=%4$s]%5$s's %6$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:217 +#, php-format +msgid "%1$s, %2$s %3$s [zrl=%4$s]your %5$s[/zrl]" +msgstr "%1$s, %2$s %3$s [zrl=%4$s]Dein %5$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:230 #, php-format msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" msgstr "[$Projectname:Benachrichtigung] Moderierter Kommantar in Unterhaltung #%1$d von %2$s" -#: ../../Zotlabs/Lib/Enotify.php:215 +#: ../../Zotlabs/Lib/Enotify.php:232 #, php-format msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" msgstr "[$Projectname:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" -#: ../../Zotlabs/Lib/Enotify.php:216 +#: ../../Zotlabs/Lib/Enotify.php:233 #, php-format msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "%1$s, %2$s hat eine Unterhaltung kommentiert, der Du folgst." -#: ../../Zotlabs/Lib/Enotify.php:219 ../../Zotlabs/Lib/Enotify.php:301 -#: ../../Zotlabs/Lib/Enotify.php:318 ../../Zotlabs/Lib/Enotify.php:344 -#: ../../Zotlabs/Lib/Enotify.php:362 ../../Zotlabs/Lib/Enotify.php:376 +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:318 +#: ../../Zotlabs/Lib/Enotify.php:335 ../../Zotlabs/Lib/Enotify.php:361 +#: ../../Zotlabs/Lib/Enotify.php:379 ../../Zotlabs/Lib/Enotify.php:393 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." -#: ../../Zotlabs/Lib/Enotify.php:223 ../../Zotlabs/Lib/Enotify.php:224 +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 #, php-format msgid "Please visit %s to approve or reject this comment." msgstr "Bitte besuche %s, um diesen Kommentar anzunehmen oder abzulehnen." -#: ../../Zotlabs/Lib/Enotify.php:282 +#: ../../Zotlabs/Lib/Enotify.php:299 #, php-format msgid "%1$s, %2$s liked [zrl=%3$s]your %4$s[/zrl]" msgstr "%1$s, %2$s gefällt [zrl=%3$s]dein %4$s[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:297 +#: ../../Zotlabs/Lib/Enotify.php:314 #, php-format msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" msgstr "[$Projectname:Benachrichtigung] Gefällt mir in Unterhaltung #%1$d von %2$s erhalten" -#: ../../Zotlabs/Lib/Enotify.php:298 +#: ../../Zotlabs/Lib/Enotify.php:315 #, php-format msgid "%1$s, %2$s liked an item/conversation you created." msgstr "%1$s, %2$s gefällt ein Beitrag oder eine Unterhaltung von Dir" -#: ../../Zotlabs/Lib/Enotify.php:309 +#: ../../Zotlabs/Lib/Enotify.php:326 #, php-format msgid "[$Projectname:Notify] %s posted to your profile wall" msgstr "[$Projectname:Benachrichtigung] %s schrieb auf Deine Pinnwand" -#: ../../Zotlabs/Lib/Enotify.php:311 +#: ../../Zotlabs/Lib/Enotify.php:328 #, php-format msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" -#: ../../Zotlabs/Lib/Enotify.php:313 +#: ../../Zotlabs/Lib/Enotify.php:330 #, php-format msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" -#: ../../Zotlabs/Lib/Enotify.php:337 +#: ../../Zotlabs/Lib/Enotify.php:354 #, php-format msgid "[$Projectname:Notify] %s tagged you" msgstr "[$Projectname:Benachrichtigung] %s hat Dich erwähnt" -#: ../../Zotlabs/Lib/Enotify.php:338 +#: ../../Zotlabs/Lib/Enotify.php:355 #, php-format msgid "%1$s, %2$s tagged you at %3$s" msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" -#: ../../Zotlabs/Lib/Enotify.php:339 +#: ../../Zotlabs/Lib/Enotify.php:356 #, php-format msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "%1$s, %2$s [zrl=%3$s]hat Dich erwähnt[/zrl]." -#: ../../Zotlabs/Lib/Enotify.php:351 +#: ../../Zotlabs/Lib/Enotify.php:368 #, php-format msgid "[$Projectname:Notify] %1$s poked you" msgstr "[$Projectname:Benachrichtigung] %1$s hat Dich angestupst" -#: ../../Zotlabs/Lib/Enotify.php:352 +#: ../../Zotlabs/Lib/Enotify.php:369 #, php-format msgid "%1$s, %2$s poked you at %3$s" msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" -#: ../../Zotlabs/Lib/Enotify.php:353 +#: ../../Zotlabs/Lib/Enotify.php:370 #, php-format msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "%1$s, %2$s [zrl=%2$s]hat Dich angestupst[/zrl]." -#: ../../Zotlabs/Lib/Enotify.php:369 +#: ../../Zotlabs/Lib/Enotify.php:386 #, php-format msgid "[$Projectname:Notify] %s tagged your post" msgstr "[$Projectname:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" -#: ../../Zotlabs/Lib/Enotify.php:370 +#: ../../Zotlabs/Lib/Enotify.php:387 #, php-format msgid "%1$s, %2$s tagged your post at %3$s" msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" -#: ../../Zotlabs/Lib/Enotify.php:371 +#: ../../Zotlabs/Lib/Enotify.php:388 #, php-format msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" -#: ../../Zotlabs/Lib/Enotify.php:383 +#: ../../Zotlabs/Lib/Enotify.php:400 msgid "[$Projectname:Notify] Introduction received" msgstr "[$Projectname:Benachrichtigung] Verbindungsanfrage erhalten" -#: ../../Zotlabs/Lib/Enotify.php:384 +#: ../../Zotlabs/Lib/Enotify.php:401 #, php-format msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "%1$s, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" -#: ../../Zotlabs/Lib/Enotify.php:385 +#: ../../Zotlabs/Lib/Enotify.php:402 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." msgstr "%1$s, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." -#: ../../Zotlabs/Lib/Enotify.php:389 ../../Zotlabs/Lib/Enotify.php:408 +#: ../../Zotlabs/Lib/Enotify.php:406 ../../Zotlabs/Lib/Enotify.php:425 #, php-format msgid "You may visit their profile at %s" msgstr "Du kannst Dir das Profil unter %s ansehen" -#: ../../Zotlabs/Lib/Enotify.php:391 +#: ../../Zotlabs/Lib/Enotify.php:408 #, php-format msgid "Please visit %s to approve or reject the connection request." msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." -#: ../../Zotlabs/Lib/Enotify.php:398 +#: ../../Zotlabs/Lib/Enotify.php:415 msgid "[$Projectname:Notify] Friend suggestion received" msgstr "[$Projectname:Benachrichtigung] Freundschaftsvorschlag erhalten" -#: ../../Zotlabs/Lib/Enotify.php:399 +#: ../../Zotlabs/Lib/Enotify.php:416 #, php-format msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" -#: ../../Zotlabs/Lib/Enotify.php:400 +#: ../../Zotlabs/Lib/Enotify.php:417 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " "%4$s." msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." -#: ../../Zotlabs/Lib/Enotify.php:406 +#: ../../Zotlabs/Lib/Enotify.php:423 msgid "Name:" msgstr "Name:" -#: ../../Zotlabs/Lib/Enotify.php:407 +#: ../../Zotlabs/Lib/Enotify.php:424 msgid "Photo:" msgstr "Foto:" -#: ../../Zotlabs/Lib/Enotify.php:410 +#: ../../Zotlabs/Lib/Enotify.php:427 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." -#: ../../Zotlabs/Lib/Enotify.php:629 +#: ../../Zotlabs/Lib/Enotify.php:647 msgid "[$Projectname:Notify]" msgstr "[$Projectname:Benachrichtigung]" -#: ../../Zotlabs/Lib/Enotify.php:793 +#: ../../Zotlabs/Lib/Enotify.php:815 msgid "created a new post" msgstr "Neuer Beitrag wurde erzeugt" -#: ../../Zotlabs/Lib/Enotify.php:794 +#: ../../Zotlabs/Lib/Enotify.php:816 #, php-format msgid "commented on %s's post" msgstr "hat %s's Beitrag kommentiert" +#: ../../Zotlabs/Lib/Enotify.php:823 +#, php-format +msgid "edited a post dated %s" +msgstr "hat einen Beitrag vom %s bearbeitet" + +#: ../../Zotlabs/Lib/Enotify.php:827 +#, php-format +msgid "edited a comment dated %s" +msgstr "hat einen Kommentar vom %s bearbeitet" + #: ../../Zotlabs/Lib/NativeWiki.php:151 msgid "Wiki updated successfully" msgstr "Wiki erfolgreich aktualisiert" @@ -7976,12 +8202,12 @@ msgstr "Wiki erfolgreich aktualisiert" msgid "Wiki files deleted successfully" msgstr "Wiki-Dateien erfolgreich gelöscht" -#: ../../Zotlabs/Lib/DB_Upgrade.php:95 +#: ../../Zotlabs/Lib/DB_Upgrade.php:83 #, php-format msgid "Update Error at %s" msgstr "Aktualisierungsfehler auf %s" -#: ../../Zotlabs/Lib/DB_Upgrade.php:101 +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." @@ -8046,11 +8272,11 @@ msgstr "Signatur nicht korrekt" msgid "Add Tag" msgstr "Tag hinzufügen" -#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:506 +#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:510 msgid "like" msgstr "mag" -#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:507 +#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:511 msgid "dislike" msgstr "verurteile" @@ -8143,51 +8369,51 @@ msgstr "Dies ist eine nicht gespeicherte Vorschau" msgid "%s show all" msgstr "%s mehr anzeigen" -#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1377 +#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/conversation.php:1377 msgid "Bold" msgstr "Fett" -#: ../../Zotlabs/Lib/ThreadItem.php:756 ../../include/conversation.php:1378 +#: ../../Zotlabs/Lib/ThreadItem.php:752 ../../include/conversation.php:1378 msgid "Italic" msgstr "Kursiv" -#: ../../Zotlabs/Lib/ThreadItem.php:757 ../../include/conversation.php:1379 +#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1379 msgid "Underline" msgstr "Unterstrichen" -#: ../../Zotlabs/Lib/ThreadItem.php:758 ../../include/conversation.php:1380 +#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1380 msgid "Quote" msgstr "Zitat" -#: ../../Zotlabs/Lib/ThreadItem.php:759 ../../include/conversation.php:1381 +#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1381 msgid "Code" msgstr "Code" -#: ../../Zotlabs/Lib/ThreadItem.php:760 +#: ../../Zotlabs/Lib/ThreadItem.php:756 msgid "Image" msgstr "Bild" -#: ../../Zotlabs/Lib/ThreadItem.php:761 +#: ../../Zotlabs/Lib/ThreadItem.php:757 msgid "Attach File" msgstr "Datei anhängen" -#: ../../Zotlabs/Lib/ThreadItem.php:762 +#: ../../Zotlabs/Lib/ThreadItem.php:758 msgid "Insert Link" msgstr "Link einfügen" -#: ../../Zotlabs/Lib/ThreadItem.php:763 +#: ../../Zotlabs/Lib/ThreadItem.php:759 msgid "Video" msgstr "Video" -#: ../../Zotlabs/Lib/ThreadItem.php:773 +#: ../../Zotlabs/Lib/ThreadItem.php:769 msgid "Your full name (required)" msgstr "Ihr vollständiger Name (erforderlich)" -#: ../../Zotlabs/Lib/ThreadItem.php:774 +#: ../../Zotlabs/Lib/ThreadItem.php:770 msgid "Your email address (required)" msgstr "Ihre E-Mail-Adresse (erforderlich)" -#: ../../Zotlabs/Lib/ThreadItem.php:775 +#: ../../Zotlabs/Lib/ThreadItem.php:771 msgid "Your website URL (optional)" msgstr "Ihre Webseiten-URL (optional)" @@ -8203,11 +8429,11 @@ msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angeme msgid "Welcome %s. Remote authentication successful." msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:284 +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 msgid "parent" msgstr "Übergeordnetes Verzeichnis" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2707 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2821 msgid "Collection" msgstr "Sammlung" @@ -8219,8 +8445,8 @@ msgstr "Prinzipal" msgid "Addressbook" msgstr "Adressbuch" -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:452 -#: ../../include/nav.php:455 +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 +#: ../../include/nav.php:423 msgid "Calendar" msgstr "Kalender" @@ -8232,41 +8458,41 @@ msgstr "Posteingang für überwachte Kalender" msgid "Schedule Outbox" msgstr "Postausgang für überwachte Kalender" -#: ../../Zotlabs/Storage/Browser.php:270 +#: ../../Zotlabs/Storage/Browser.php:273 msgid "Total" msgstr "Summe" -#: ../../Zotlabs/Storage/Browser.php:272 +#: ../../Zotlabs/Storage/Browser.php:275 msgid "Shared" msgstr "Geteilt" -#: ../../Zotlabs/Storage/Browser.php:350 +#: ../../Zotlabs/Storage/Browser.php:353 #, php-format msgid "You are using %1$s of your available file storage." msgstr "Sie verwenden %1$s von Ihrem verfügbaren Dateispeicher." -#: ../../Zotlabs/Storage/Browser.php:355 +#: ../../Zotlabs/Storage/Browser.php:358 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "Sie verwenden %1$s von %2$s verfügbarem Dateispeicher. (%3$s%)" -#: ../../Zotlabs/Storage/Browser.php:366 +#: ../../Zotlabs/Storage/Browser.php:369 msgid "WARNING:" msgstr "WARNUNG:" -#: ../../Zotlabs/Storage/Browser.php:378 +#: ../../Zotlabs/Storage/Browser.php:381 msgid "Create new folder" msgstr "Neuen Ordner anlegen" -#: ../../Zotlabs/Storage/Browser.php:380 +#: ../../Zotlabs/Storage/Browser.php:383 msgid "Upload file" msgstr "Datei hochladen" -#: ../../Zotlabs/Storage/Browser.php:393 +#: ../../Zotlabs/Storage/Browser.php:396 msgid "Drop files here to immediately upload" msgstr "Dateien zum sofortigen Hochladen hier fallen lassen" -#: ../../Zotlabs/Widget/Forums.php:99 +#: ../../Zotlabs/Widget/Forums.php:100 msgid "Forums" msgstr "Foren" @@ -8349,8 +8575,8 @@ msgstr "Adressbuch zum Hineinimportieren auswählen" #: ../../Zotlabs/Widget/Appcategories.php:40 #: ../../Zotlabs/Widget/Tagcloud.php:25 ../../include/contact_widgets.php:97 #: ../../include/contact_widgets.php:141 ../../include/contact_widgets.php:186 -#: ../../include/taxonomy.php:337 ../../include/taxonomy.php:419 -#: ../../include/taxonomy.php:439 ../../include/taxonomy.php:460 +#: ../../include/taxonomy.php:344 ../../include/taxonomy.php:426 +#: ../../include/taxonomy.php:446 ../../include/taxonomy.php:467 msgid "Categories" msgstr "Kategorien" @@ -8392,21 +8618,21 @@ msgstr "Private Nachrichten" msgid "Combined View" msgstr "Kombinierte Anzeige" -#: ../../Zotlabs/Widget/Mailmenu.php:20 ../../include/nav.php:126 +#: ../../Zotlabs/Widget/Mailmenu.php:20 msgid "Inbox" msgstr "Eingang" -#: ../../Zotlabs/Widget/Mailmenu.php:25 ../../include/nav.php:127 +#: ../../Zotlabs/Widget/Mailmenu.php:25 msgid "Outbox" msgstr "Ausgang" -#: ../../Zotlabs/Widget/Mailmenu.php:30 ../../include/nav.php:128 +#: ../../Zotlabs/Widget/Mailmenu.php:30 msgid "New Message" msgstr "Neue Nachricht" #: ../../Zotlabs/Widget/Chatroom_list.php:16 #: ../../include/conversation.php:1864 ../../include/conversation.php:1867 -#: ../../include/nav.php:466 ../../include/nav.php:469 +#: ../../include/nav.php:434 ../../include/nav.php:437 msgid "Chatrooms" msgstr "Chaträume" @@ -8488,7 +8714,7 @@ msgstr "Foto/Bild" msgid "Remove term" msgstr "Eintrag löschen" -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:316 +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:354 msgid "Saved Searches" msgstr "Gespeicherte Suchanfragen" @@ -8513,7 +8739,7 @@ msgstr "Wikiseiten" msgid "Page name" msgstr "Seitenname" -#: ../../Zotlabs/Widget/Affinity.php:49 +#: ../../Zotlabs/Widget/Affinity.php:45 msgid "Refresh" msgstr "Aktualisieren" @@ -8530,7 +8756,7 @@ msgid "See more..." msgstr "Mehr anzeigen …" #: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:414 +#: ../../include/features.php:443 msgid "Saved Folders" msgstr "Gespeicherte Ordner" @@ -8538,6 +8764,54 @@ msgstr "Gespeicherte Ordner" msgid "Click to show more" msgstr "Klick, um mehr anzuzeigen" +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "Profile Creation" +msgstr "Profilerstellung" + +#: ../../Zotlabs/Widget/Newmember.php:35 +msgid "Upload profile photo" +msgstr "Profilfoto hochladen" + +#: ../../Zotlabs/Widget/Newmember.php:36 +msgid "Upload cover photo" +msgstr "Titelbild hochladen" + +#: ../../Zotlabs/Widget/Newmember.php:37 ../../include/nav.php:119 +msgid "Edit your profile" +msgstr "Profil bearbeiten" + +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "Find and Connect with others" +msgstr "Finden und Verbinden von/mit Anderen" + +#: ../../Zotlabs/Widget/Newmember.php:44 +msgid "Manage your connections" +msgstr "Deine Verbindungen verwalten" + +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "Communicate" +msgstr "Kommunizieren" + +#: ../../Zotlabs/Widget/Newmember.php:49 +msgid "View your channel homepage" +msgstr "Deine Kanal-Startseite ansehen" + +#: ../../Zotlabs/Widget/Newmember.php:50 +msgid "View your network stream" +msgstr "Deine Netzwerk-Aktivitäten ansehen" + +#: ../../Zotlabs/Widget/Newmember.php:56 +msgid "Documentation" +msgstr "Dokumentation" + +#: ../../Zotlabs/Widget/Newmember.php:67 +msgid "View public stream. Warning: not moderated" +msgstr "Öffentliche Beitragsaktivitäten ansehen. Warnung: Diese Inhalte sind nicht moderiert." + +#: ../../Zotlabs/Widget/Newmember.php:71 +msgid "New Member Links" +msgstr "Links für neue Mitglieder" + #: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 msgid "Member registrations waiting for confirmation" msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" @@ -8550,7 +8824,7 @@ msgstr "Warteschlange kontrollieren" msgid "DB updates" msgstr "DB-Aktualisierungen" -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:231 +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 msgid "Admin" msgstr "Administration" @@ -8571,8 +8845,8 @@ msgid "Additional features" msgstr "Zusätzliche Funktionen" #: ../../Zotlabs/Widget/Settings_menu.php:57 -msgid "Feature/Addon settings" -msgstr "Plugin-Einstellungen" +msgid "Addon settings" +msgstr "Addon-Einstellungen" #: ../../Zotlabs/Widget/Settings_menu.php:63 msgid "Display settings" @@ -8590,7 +8864,7 @@ msgstr "Kanal exportieren" msgid "Connected apps" msgstr "Verbundene Apps" -#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:168 +#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:231 msgid "Permission Groups" msgstr "Berechtigungsrollen" @@ -8610,7 +8884,7 @@ msgstr "Neue Netzwerk-Aktivitäten" msgid "New Network Activity Notifications" msgstr "Benachrichtigungen für neue Netzwerk-Aktivitäten" -#: ../../Zotlabs/Widget/Notifications.php:20 ../../include/nav.php:106 +#: ../../Zotlabs/Widget/Notifications.php:20 msgid "View your network activity" msgstr "Zeige Deine Netzwerk-Aktivitäten" @@ -8619,161 +8893,163 @@ msgid "Mark all notifications read" msgstr "Alle Benachrichtigungen als gesehen markieren" #: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:44 -#: ../../Zotlabs/Widget/Notifications.php:139 +#: ../../Zotlabs/Widget/Notifications.php:45 +#: ../../Zotlabs/Widget/Notifications.php:141 msgid "Show new posts only" msgstr "Zeige nur neue Beiträge" -#: ../../Zotlabs/Widget/Notifications.php:34 +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:142 +msgid "Filter by name" +msgstr "Nach Namen filtern" + +#: ../../Zotlabs/Widget/Notifications.php:35 msgid "New Home Activity" msgstr "Neue Kanal-Aktivitäten" -#: ../../Zotlabs/Widget/Notifications.php:35 +#: ../../Zotlabs/Widget/Notifications.php:36 msgid "New Home Activity Notifications" msgstr "Benachrichtigungen für neue Kanal-Aktivitäten" -#: ../../Zotlabs/Widget/Notifications.php:38 +#: ../../Zotlabs/Widget/Notifications.php:39 msgid "View your home activity" msgstr "Zeige Deine Kanal-Aktivitäten" -#: ../../Zotlabs/Widget/Notifications.php:41 -#: ../../Zotlabs/Widget/Notifications.php:136 +#: ../../Zotlabs/Widget/Notifications.php:42 +#: ../../Zotlabs/Widget/Notifications.php:138 msgid "Mark all notifications seen" msgstr "Alle Benachrichtigungen als gesehen markieren" -#: ../../Zotlabs/Widget/Notifications.php:52 +#: ../../Zotlabs/Widget/Notifications.php:54 msgid "New Mails" msgstr "Neue Mails" -#: ../../Zotlabs/Widget/Notifications.php:53 +#: ../../Zotlabs/Widget/Notifications.php:55 msgid "New Mails Notifications" msgstr "Benachrichtigungen für neue Mails" -#: ../../Zotlabs/Widget/Notifications.php:56 +#: ../../Zotlabs/Widget/Notifications.php:58 msgid "View your private mails" msgstr "Zeige Deine persönlichen Mails" -#: ../../Zotlabs/Widget/Notifications.php:59 +#: ../../Zotlabs/Widget/Notifications.php:61 msgid "Mark all messages seen" msgstr "Alle Mails als gelesen markieren" -#: ../../Zotlabs/Widget/Notifications.php:67 +#: ../../Zotlabs/Widget/Notifications.php:69 msgid "New Events" msgstr "Neue Termine" -#: ../../Zotlabs/Widget/Notifications.php:68 +#: ../../Zotlabs/Widget/Notifications.php:70 msgid "New Events Notifications" msgstr "Benachrichtigungen für neue Termine" -#: ../../Zotlabs/Widget/Notifications.php:71 ../../include/nav.php:132 +#: ../../Zotlabs/Widget/Notifications.php:73 msgid "View events" msgstr "Termine ansehen" -#: ../../Zotlabs/Widget/Notifications.php:74 ../../include/nav.php:133 +#: ../../Zotlabs/Widget/Notifications.php:76 msgid "Mark all events seen" msgstr "Markiere alle Termine als gesehen" -#: ../../Zotlabs/Widget/Notifications.php:83 +#: ../../Zotlabs/Widget/Notifications.php:85 msgid "New Connections Notifications" msgstr "Benachrichtigungen für neue Verbindungen" -#: ../../Zotlabs/Widget/Notifications.php:86 +#: ../../Zotlabs/Widget/Notifications.php:88 msgid "View all connections" msgstr "Zeige alle Verbindungen" -#: ../../Zotlabs/Widget/Notifications.php:94 +#: ../../Zotlabs/Widget/Notifications.php:96 msgid "New Files" msgstr "Neue Dateien" -#: ../../Zotlabs/Widget/Notifications.php:95 +#: ../../Zotlabs/Widget/Notifications.php:97 msgid "New Files Notifications" msgstr "Benachrichtigungen für neue Dateien" -#: ../../Zotlabs/Widget/Notifications.php:102 -#: ../../Zotlabs/Widget/Notifications.php:103 ../../include/nav.php:119 +#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Widget/Notifications.php:105 msgid "Notices" msgstr "Benachrichtigungen" -#: ../../Zotlabs/Widget/Notifications.php:106 +#: ../../Zotlabs/Widget/Notifications.php:108 msgid "View all notices" msgstr "Alle Notizen ansehen" -#: ../../Zotlabs/Widget/Notifications.php:109 +#: ../../Zotlabs/Widget/Notifications.php:111 msgid "Mark all notices seen" msgstr "Alle Notizen als gesehen markieren" -#: ../../Zotlabs/Widget/Notifications.php:119 +#: ../../Zotlabs/Widget/Notifications.php:121 msgid "New Registrations" msgstr "Neue Registrierungen" -#: ../../Zotlabs/Widget/Notifications.php:120 +#: ../../Zotlabs/Widget/Notifications.php:122 msgid "New Registrations Notifications" msgstr "Benachrichtigungen für neue Registrierungen" -#: ../../Zotlabs/Widget/Notifications.php:130 +#: ../../Zotlabs/Widget/Notifications.php:132 msgid "Public Stream Notifications" msgstr "Benachrichtigungen für öffentlichen Beitrags-Stream" -#: ../../Zotlabs/Widget/Notifications.php:133 +#: ../../Zotlabs/Widget/Notifications.php:135 msgid "View the public stream" msgstr "Zeige öffentlichen Beitrags-Stream" -#: ../../Zotlabs/Widget/Notifications.php:147 ../../include/nav.php:316 -msgid "Loading" -msgstr "Lädt..." +#: ../../Zotlabs/Widget/Notifications.php:150 +msgid "Sorry, you have got no notifications at the moment" +msgstr "Du hast momentan keine Benachrichtigungen" #: ../../util/nconfig.php:34 msgid "Source channel not found." msgstr "Quellkanal nicht gefunden." -#: ../../boot.php:1644 +#: ../../boot.php:1562 msgid "Create an account to access services and applications" msgstr "Erstelle ein Konto, um auf Dienste und Anwendungen zugreifen zu können." -#: ../../boot.php:1663 ../../include/nav.php:145 ../../include/nav.php:174 -#: ../../include/nav.php:191 +#: ../../boot.php:1581 ../../include/nav.php:111 ../../include/nav.php:140 +#: ../../include/nav.php:159 msgid "Logout" msgstr "Abmelden" -#: ../../boot.php:1667 +#: ../../boot.php:1585 msgid "Login/Email" msgstr "Anmelden/E-Mail" -#: ../../boot.php:1668 +#: ../../boot.php:1586 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1669 +#: ../../boot.php:1587 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1672 +#: ../../boot.php:1590 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:2257 -msgid "toggle mobile" -msgstr "auf/von mobile Ansicht wechseln" - -#: ../../boot.php:2419 +#: ../../boot.php:2347 #, php-format msgid "[$Projectname] Website SSL error for %s" msgstr "[$Projectname] Webseiten-SSL-Fehler für %s" -#: ../../boot.php:2424 +#: ../../boot.php:2352 msgid "Website SSL certificate is not valid. Please correct." msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." -#: ../../boot.php:2540 +#: ../../boot.php:2468 #, php-format msgid "[$Projectname] Cron tasks not running on %s" msgstr "[$Projectname] Cron-Jobs laufen nicht auf %s" -#: ../../boot.php:2545 +#: ../../boot.php:2473 msgid "Cron/Scheduled tasks not running." msgstr "Cron-Aufgaben laufen nicht." -#: ../../boot.php:2546 ../../include/datetime.php:292 +#: ../../boot.php:2474 ../../include/datetime.php:232 msgid "never" msgstr "Nie" @@ -8898,7 +9174,7 @@ msgid "Errors encountered deleting database table " msgstr "Beim Löschen der Datenbanktabelle sind Fehler aufgetreten." #: ../../addon/rendezvous/rendezvous.php:95 -#: ../../addon/twitter/twitter.php:773 +#: ../../addon/twitter/twitter.php:779 msgid "Submit Settings" msgstr "Einstellungen absenden" @@ -9101,7 +9377,7 @@ msgid "Page to load after image selection." msgstr "Die Seite, die nach Auswahl eines Bildes geladen werden soll." #: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1301 -#: ../../include/nav.php:153 +#: ../../include/nav.php:119 msgid "Edit Profile" msgstr "Profil bearbeiten" @@ -9158,6 +9434,11 @@ msgstr "Hochgeladen von: " msgid "Drawn by: " msgstr "Gezeichnet von: " +#: ../../addon/openclipatar/openclipatar.php:182 +#: ../../addon/openclipatar/openclipatar.php:194 +msgid "Use this image" +msgstr "" + #: ../../addon/openclipatar/openclipatar.php:192 msgid "Or select from a free OpenClipart.org image:" msgstr "Oder wähle ein freies Bild von OpenClipart.org:" @@ -9174,10 +9455,6 @@ msgstr "Unbekannter Fehler. Bitte versuchen Sie es später erneut." msgid "Profile photo updated successfully." msgstr "Profilfoto erfolgreich aktualisiert." -#: ../../addon/zotvi/zot6.php:25 ../../include/zot.php:4051 -msgid "invalid target signature" -msgstr "Ungültige Signatur des Ziels" - #: ../../addon/adultphotoflag/adultphotoflag.php:24 msgid "Flag Adult Photos" msgstr "Nicht jugendfreie Fotos markieren" @@ -9274,7 +9551,7 @@ msgstr "NSFW-Einstellungen gespeichert." msgid "Possible adult content" msgstr "Möglicherweise nicht jugendfreie Inhalte" -#: ../../addon/nsfw/nsfw.php:211 +#: ../../addon/nsfw/nsfw.php:222 #, php-format msgid "%s - view" msgstr "%s - ansehen" @@ -9331,6 +9608,15 @@ msgstr "Standardmäßig auf auf Dreamwidth posten" msgid "Dreamwidth Post Settings" msgstr "Dreamwidth-Beitragseinstellungen" +#: ../../addon/notifyadmin/notifyadmin.php:34 +msgid "New registration" +msgstr "" + +#: ../../addon/notifyadmin/notifyadmin.php:42 +#, php-format +msgid "Message sent to %s. New account registration: %s" +msgstr "Nachricht gesendet an %s. Neue Kontoregistrierung: %s" + #: ../../addon/dirstats/dirstats.php:94 msgid "Hubzilla Directory Stats" msgstr "Hubzilla-Verzeichnisstatistiken" @@ -9579,17 +9865,17 @@ msgstr "Geburtsdatum" msgid "OpenID protocol error. No ID returned." msgstr "OpenID-Protokollfehler. Keine Kennung zurückgegeben." -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:289 +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:290 msgid "Login failed." msgstr "Login fehlgeschlagen." #: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1480 +#: ../../include/selectors.php:66 ../../include/channel.php:1481 msgid "Male" msgstr "Männlich" #: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1478 +#: ../../include/selectors.php:66 ../../include/channel.php:1479 msgid "Female" msgstr "Weiblich" @@ -9690,11 +9976,11 @@ msgstr "verlockt" #: ../../addon/morepokes/morepokes.php:27 msgid "raise eyebrows at" -msgstr "" +msgstr "Augenbrauen hochziehen" #: ../../addon/morepokes/morepokes.php:27 msgid "raised their eyebrows at" -msgstr "" +msgstr "zog die Augenbrauen hoch" #: ../../addon/morepokes/morepokes.php:28 msgid "insult" @@ -9770,45 +10056,45 @@ msgstr "" #: ../../addon/morepokes/morepokes.php:37 msgid "declare undying love for" -msgstr "" +msgstr "erkläre unsterbliche Liebe" #: ../../addon/morepokes/morepokes.php:37 msgid "declared undying love for" -msgstr "" +msgstr "erklärte unsterbliche Liebe" -#: ../../addon/diaspora/diaspora.php:772 +#: ../../addon/diaspora/diaspora.php:778 msgid "Diaspora Protocol Settings updated." msgstr "Diaspora Protokoll Einstellungen aktualisiert" -#: ../../addon/diaspora/diaspora.php:791 +#: ../../addon/diaspora/diaspora.php:797 msgid "" "The Diaspora protocol does not support location independence. Connections " "you make within that network may be unreachable from alternate channel " "locations." msgstr "Das Diaspora-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein." -#: ../../addon/diaspora/diaspora.php:794 +#: ../../addon/diaspora/diaspora.php:800 msgid "Enable the Diaspora protocol for this channel" msgstr "Das Diaspora Protokoll für diesen Kanal aktivieren" -#: ../../addon/diaspora/diaspora.php:798 +#: ../../addon/diaspora/diaspora.php:804 msgid "Allow any Diaspora member to comment on your public posts" msgstr "Erlaube jedem Diaspora Nutzer deine öffentlichen Beiträge zu kommentieren" -#: ../../addon/diaspora/diaspora.php:802 +#: ../../addon/diaspora/diaspora.php:808 msgid "Prevent your hashtags from being redirected to other sites" msgstr "Verhindern, dass Deine Hashtags zu anderen Seiten umgeleitet werden" -#: ../../addon/diaspora/diaspora.php:806 +#: ../../addon/diaspora/diaspora.php:812 msgid "" "Sign and forward posts and comments with no existing Diaspora signature" msgstr "Signieren und Weiterleiten von Beiträgen und Kommentaren ohne vorhandene Diaspora-Signatur" -#: ../../addon/diaspora/diaspora.php:811 +#: ../../addon/diaspora/diaspora.php:817 msgid "Followed hashtags (comma separated, do not include the #)" msgstr "Verfolgte Hashtags (Komma separierte Liste, ohne die #)" -#: ../../addon/diaspora/diaspora.php:816 +#: ../../addon/diaspora/diaspora.php:822 msgid "Diaspora Protocol Settings" msgstr "Diaspora Protokoll Einstellungen" @@ -9823,11 +10109,11 @@ msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Im #: ../../addon/testdrive/testdrive.php:104 #, php-format msgid "Your account on %s will expire in a few days." -msgstr "Dein Account auf %s wird in ein paar Tagen ablaufen." +msgstr "Dein Konto auf %s wird in ein paar Tagen ablaufen." #: ../../addon/testdrive/testdrive.php:105 msgid "Your $Productname test account is about to expire." -msgstr "Dein $Productname Test-Account wird bald auslaufen." +msgstr "Dein $Productname Test-Konto wird bald auslaufen." #: ../../addon/rainbowtag/rainbowtag.php:81 msgid "Enable Rainbowtag" @@ -9919,15 +10205,15 @@ msgstr "Gravatar-Einstellungen aktualisiert." #: ../../addon/hzfiles/hzfiles.php:79 msgid "Hubzilla File Storage Import" -msgstr "" +msgstr "Hubzilla-Datenspeicher-Import" #: ../../addon/hzfiles/hzfiles.php:80 msgid "This will import all your cloud files from another server." -msgstr "" +msgstr "Hiermit werden alle Deine Cloud-Dateien von einem anderen Server importiert." #: ../../addon/hzfiles/hzfiles.php:81 msgid "Hubzilla Server base URL" -msgstr "" +msgstr "Basis-URL des Habzilla-Servers" #: ../../addon/hzfiles/hzfiles.php:82 msgid "Since modified date yyyy-mm-dd" @@ -10002,6 +10288,10 @@ msgstr "Mail Test" msgid "Message subject" msgstr "Betreff der Nachricht" +#: ../../addon/mdpost/mdpost.php:41 +msgid "Use markdown for editing posts" +msgstr "Verwende Markdown zum Bearbeiten von Beiträgen" + #: ../../addon/openstreetmap/openstreetmap.php:146 msgid "View Larger" msgstr "Größer anzeigen" @@ -10084,7 +10374,7 @@ msgid "Hubzilla to Friendica Post Settings" msgstr "Hubzilla-zu-Friendica Beitragseinstellungen" #: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1397 -#: ../../include/channel.php:1567 +#: ../../include/channel.php:1568 msgid "Status:" msgstr "Status:" @@ -10211,7 +10501,7 @@ msgstr "Hubzilla-Kanalname" #: ../../addon/redred/redred.php:119 msgid "Hubzilla Crosspost Settings" -msgstr "" +msgstr "Hubzilla Crosspost Einstellungen" #: ../../addon/logrot/logrot.php:36 msgid "Logfile archive directory" @@ -10249,37 +10539,37 @@ msgstr "Friendica-Anmeldebenutzername" msgid "Friendica Login Password" msgstr "Friendica-Anmeldepasswort" -#: ../../addon/pubcrawl/as.php:1077 ../../addon/pubcrawl/as.php:1164 -#: ../../addon/pubcrawl/as.php:1339 ../../include/network.php:1768 +#: ../../addon/pubcrawl/as.php:1101 ../../addon/pubcrawl/as.php:1228 +#: ../../addon/pubcrawl/as.php:1403 ../../include/network.php:1774 msgid "ActivityPub" msgstr "ActivityPub" -#: ../../addon/pubcrawl/pubcrawl.php:1033 +#: ../../addon/pubcrawl/pubcrawl.php:1034 msgid "ActivityPub Protocol Settings updated." -msgstr "" +msgstr "ActivityPub Protokoll Einstellungen aktualisiert" -#: ../../addon/pubcrawl/pubcrawl.php:1042 +#: ../../addon/pubcrawl/pubcrawl.php:1043 msgid "" "The ActivityPub protocol does not support location independence. Connections" " you make within that network may be unreachable from alternate channel " "locations." msgstr "" -#: ../../addon/pubcrawl/pubcrawl.php:1045 +#: ../../addon/pubcrawl/pubcrawl.php:1046 msgid "Enable the ActivityPub protocol for this channel" -msgstr "" +msgstr "Aktiviere das ActivityPub Protokoll für diesen Kanal" -#: ../../addon/pubcrawl/pubcrawl.php:1048 +#: ../../addon/pubcrawl/pubcrawl.php:1049 msgid "Send multi-media HTML articles" -msgstr "" +msgstr "Multimedia HTML Artikel versenden" -#: ../../addon/pubcrawl/pubcrawl.php:1048 +#: ../../addon/pubcrawl/pubcrawl.php:1049 msgid "Not supported by some microblog services such as Mastodon" -msgstr "" +msgstr "Wird von einigen Microblogging-Plattformen wie Mastodon nicht unterstützt" #: ../../addon/pubcrawl/pubcrawl.php:1053 msgid "ActivityPub Protocol Settings" -msgstr "" +msgstr "ActivityPub Protokoll Einstellungen" #: ../../addon/donate/donate.php:21 msgid "Project Servers and Resources" @@ -10583,7 +10873,7 @@ msgstr "Aktuelle GNU social API ist" msgid "Cancel GNU social Connection" msgstr "GNU social Verbindung trennen" -#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:232 +#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 msgid "Currently connected to: " msgstr "Momentan verbunden mit:" @@ -10603,7 +10893,7 @@ msgstr "Erlaube die Veröffentlichung bei GNU social" msgid "" "If enabled your public postings can be posted to the associated GNU-social " "account" -msgstr "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen GNU social Account veröffentlicht werden." +msgstr "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen GNU social Konto veröffentlicht werden." #: ../../addon/statusnet/statusnet.php:415 msgid "Post to GNU social by default" @@ -10613,9 +10903,9 @@ msgstr "Standardmäßig bei GNU social veröffentlichen" msgid "" "If enabled your public postings will be posted to the associated GNU-social " "account by default" -msgstr "Wenn aktiv werden all deine öffentlichen Beiträge standardmäßig bei dem verbundenen GNU social Account veröffentlicht." +msgstr "Wenn aktiv werden all deine öffentlichen Beiträge standardmäßig bei dem verbundenen GNU social Konto veröffentlicht." -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 msgid "Clear OAuth configuration" msgstr "OAuth Konfiguration löschen" @@ -10643,39 +10933,39 @@ msgstr "QR-Generator" msgid "Enter some text" msgstr "Etwas Text eingeben" -#: ../../addon/chess/chess.php:278 ../../addon/chess/chess.php:465 +#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 msgid "Invalid game." msgstr "Ungültiges Spiel." -#: ../../addon/chess/chess.php:284 ../../addon/chess/chess.php:471 +#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 msgid "You are not a player in this game." msgstr "Sie sind kein Spieler in diesem Spiel." -#: ../../addon/chess/chess.php:340 +#: ../../addon/chess/chess.php:415 msgid "You must be a local channel to create a game." msgstr "Um ein Spiel zu eröffnen, musst du ein lokaler Kanal sein" -#: ../../addon/chess/chess.php:358 +#: ../../addon/chess/chess.php:433 msgid "You must select one opponent that is not yourself." msgstr "Du musst einen Gegner wählen, der nicht du selbst ist" -#: ../../addon/chess/chess.php:367 -msgid "You must select white or black." -msgstr "Sie müssen weiß oder schwarz auswählen." +#: ../../addon/chess/chess.php:444 +msgid "Random color chosen." +msgstr "" -#: ../../addon/chess/chess.php:375 +#: ../../addon/chess/chess.php:452 msgid "Error creating new game." msgstr "Fehler beim Erstellen eines neuen Spiels." -#: ../../addon/chess/chess.php:409 ../../include/channel.php:1152 +#: ../../addon/chess/chess.php:486 ../../include/channel.php:1152 msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." +msgstr "Angeforderter Kanal nicht verfügbar." -#: ../../addon/chess/chess.php:423 +#: ../../addon/chess/chess.php:500 msgid "You must select a local channel /chess/channelname" msgstr "Du musst einen lokalen Kanal/Schach(Kanalnamen aufwählen" -#: ../../addon/chess/chess.php:969 +#: ../../addon/chess/chess.php:1066 msgid "Enable notifications" msgstr "Benachrichtigungen aktivieren" @@ -10683,17 +10973,17 @@ msgstr "Benachrichtigungen aktivieren" msgid "Post to Twitter" msgstr "Bei Twitter veröffentlichen" -#: ../../addon/twitter/twitter.php:154 +#: ../../addon/twitter/twitter.php:155 msgid "Twitter settings updated." msgstr "Twitter-Einstellungen aktualisiert." -#: ../../addon/twitter/twitter.php:183 +#: ../../addon/twitter/twitter.php:184 msgid "" "No consumer key pair for Twitter found. Please contact your site " "administrator." msgstr "Es wurde kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte kontaktiere deinen Seiten-Administrator." -#: ../../addon/twitter/twitter.php:205 +#: ../../addon/twitter/twitter.php:206 msgid "" "At this Hubzilla instance the Twitter plugin was enabled but you have not " "yet connected your account to your Twitter account. To do so click the " @@ -10702,15 +10992,15 @@ msgid "" " be posted to Twitter." msgstr "Auf diesem Hubzilla-Server ist das Twitter-Plugin aktiviert, aber Du hast Dich hier noch nicht mit Deinem Twitter-Konto verbunden. Um dies zu tun, klicke die Schaltfläche unten, um eine PIN von Twitter zu erhalten, die Du dann in das Eingabefeld darunter einfügen und das Formular bestätigen musst. Nur Deine öffentlichen Beiträge werden auf Twitter geteilt." -#: ../../addon/twitter/twitter.php:207 +#: ../../addon/twitter/twitter.php:208 msgid "Log in with Twitter" msgstr "Mit Twitter anmelden" -#: ../../addon/twitter/twitter.php:210 +#: ../../addon/twitter/twitter.php:211 msgid "Copy the PIN from Twitter here" msgstr "PIN von Twitter hier her kopieren" -#: ../../addon/twitter/twitter.php:237 +#: ../../addon/twitter/twitter.php:238 msgid "" "Note: Due your privacy settings (Hide your profile " "details from unknown viewers?) the link potentially included in public " @@ -10718,27 +11008,35 @@ msgid "" "the visitor that the access to your profile has been restricted." msgstr "Hinweis: Entsprechend Deiner Privatsphären-Einstellungen (Profil-Details vor nicht angemeldeten Besuchern verbergen?) kann ein ggf. zu Twitter geteilter Link Besucher auf eine leere Seite führen, die darüber informiert, dass der Zugriff zu Deinem Profil eingeschränkt ist." -#: ../../addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:243 msgid "Allow posting to Twitter" msgstr "Erlaube die Veröffentlichung bei Twitter" -#: ../../addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:243 msgid "" "If enabled your public postings can be posted to the associated Twitter " "account" -msgstr "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Account veröffentlicht werden." +msgstr "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden." -#: ../../addon/twitter/twitter.php:246 +#: ../../addon/twitter/twitter.php:247 +msgid "Twitter post length" +msgstr "" + +#: ../../addon/twitter/twitter.php:247 +msgid "Maximum tweet length" +msgstr "" + +#: ../../addon/twitter/twitter.php:252 msgid "Send public postings to Twitter by default" msgstr "Standardmäßig öffentliche Beiträge bei Twitter veröffentlichen" -#: ../../addon/twitter/twitter.php:246 +#: ../../addon/twitter/twitter.php:252 msgid "" "If enabled your public postings will be posted to the associated Twitter " "account by default" -msgstr "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Account veröffentlicht werden." +msgstr "Wenn aktiv werden deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden." -#: ../../addon/twitter/twitter.php:264 +#: ../../addon/twitter/twitter.php:270 msgid "Twitter Post Settings" msgstr "Twitter-Beitragseinstellungen" @@ -10962,8 +11260,8 @@ msgstr "Erweitertes Teilen von Identitäten" #: ../../addon/sendzid/sendzid.php:26 msgid "" "Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Hubzilla-Servern geteilt." +"identity is only shared with $Projectname sites." +msgstr "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit $Projectname - Servern geteilt." #: ../../addon/tictac/tictac.php:21 msgid "Three Dimensional Tic-Tac-Toe" @@ -11240,7 +11538,7 @@ msgstr "Ein Konto wurde für Sie erstellt." #: ../../addon/ldapauth/ldapauth.php:68 msgid "Authentication successful but rejected: account creation is disabled." -msgstr "Authentifizierung war erfolgreich wurde aber abgewiesen! Das Anlegen von Accounts wurde deaktiviert." +msgstr "Authentifizierung war erfolgreich, wurde aber abgewiesen! Das Anlegen von Konten wurde deaktiviert." #: ../../addon/opensearch/opensearch.php:26 #, php-format @@ -11346,11 +11644,11 @@ msgstr "Transsexuell" msgid "Hermaphrodite" msgstr "Zwitter" -#: ../../include/selectors.php:49 ../../include/channel.php:1484 +#: ../../include/selectors.php:49 ../../include/channel.php:1485 msgid "Neuter" msgstr "Geschlechtslos" -#: ../../include/selectors.php:49 ../../include/channel.php:1486 +#: ../../include/selectors.php:49 ../../include/channel.php:1487 msgid "Non-specific" msgstr "unklar" @@ -11533,12 +11831,12 @@ msgstr "Frag mich mal" #: ../../include/conversation.php:169 #, php-format msgid "likes %1$s's %2$s" -msgstr "" +msgstr "gefällt %1$ss %2$s" #: ../../include/conversation.php:172 #, php-format msgid "doesn't like %1$s's %2$s" -msgstr "" +msgstr "missfällt %1$ss %2$s" #: ../../include/conversation.php:212 #, php-format @@ -11550,8 +11848,8 @@ msgstr "%1$s ist jetzt mit %2$s verbunden" msgid "%1$s poked %2$s" msgstr "%1$s stupste %2$s an" -#: ../../include/conversation.php:251 ../../include/text.php:1104 -#: ../../include/text.php:1109 +#: ../../include/conversation.php:251 ../../include/text.php:1129 +#: ../../include/text.php:1133 msgid "poked" msgstr "stupste" @@ -11753,32 +12051,32 @@ msgstr "Spam" msgid "Posts flagged as SPAM" msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../include/conversation.php:1811 ../../include/nav.php:413 +#: ../../include/conversation.php:1811 ../../include/nav.php:381 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: ../../include/conversation.php:1824 ../../include/nav.php:426 +#: ../../include/conversation.php:1824 ../../include/nav.php:394 msgid "Profile Details" msgstr "Profil-Details" -#: ../../include/conversation.php:1834 ../../include/nav.php:436 +#: ../../include/conversation.php:1834 ../../include/nav.php:404 #: ../../include/photos.php:655 msgid "Photo Albums" msgstr "Fotoalben" -#: ../../include/conversation.php:1842 ../../include/nav.php:444 +#: ../../include/conversation.php:1842 ../../include/nav.php:412 msgid "Files and Storage" msgstr "Dateien und Speicher" -#: ../../include/conversation.php:1879 ../../include/nav.php:479 +#: ../../include/conversation.php:1879 ../../include/nav.php:447 msgid "Bookmarks" msgstr "Lesezeichen" -#: ../../include/conversation.php:1882 ../../include/nav.php:482 +#: ../../include/conversation.php:1882 ../../include/nav.php:450 msgid "Saved Bookmarks" msgstr "Gespeicherte Lesezeichen" -#: ../../include/conversation.php:1893 ../../include/nav.php:493 +#: ../../include/conversation.php:1893 ../../include/nav.php:461 msgid "View Cards" msgstr "Karten anzeigen" @@ -11786,11 +12084,11 @@ msgstr "Karten anzeigen" msgid "articles" msgstr "Artikel" -#: ../../include/conversation.php:1904 ../../include/nav.php:504 +#: ../../include/conversation.php:1904 ../../include/nav.php:472 msgid "View Articles" msgstr "Artikel anzeigen" -#: ../../include/conversation.php:1915 ../../include/nav.php:516 +#: ../../include/conversation.php:1915 ../../include/nav.php:484 msgid "View Webpages" msgstr "Webseiten anzeigen" @@ -11862,368 +12160,368 @@ msgid "" "Cannot create a duplicate channel identifier on this system. Import failed." msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." -#: ../../include/import.php:105 +#: ../../include/import.php:106 msgid "Cloned channel not found. Import failed." msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." -#: ../../include/text.php:478 +#: ../../include/text.php:492 msgid "prev" msgstr "vorherige" -#: ../../include/text.php:480 +#: ../../include/text.php:494 msgid "first" msgstr "erste" -#: ../../include/text.php:509 +#: ../../include/text.php:523 msgid "last" msgstr "letzte" -#: ../../include/text.php:512 +#: ../../include/text.php:526 msgid "next" msgstr "nächste" -#: ../../include/text.php:523 +#: ../../include/text.php:537 msgid "older" msgstr "älter" -#: ../../include/text.php:525 +#: ../../include/text.php:539 msgid "newer" msgstr "neuer" -#: ../../include/text.php:947 +#: ../../include/text.php:961 msgid "No connections" msgstr "Keine Verbindungen" -#: ../../include/text.php:972 +#: ../../include/text.php:993 #, php-format msgid "View all %s connections" msgstr "Alle Verbindungen von %s anzeigen" -#: ../../include/text.php:1104 ../../include/text.php:1109 +#: ../../include/text.php:1129 ../../include/text.php:1133 msgid "poke" msgstr "anstupsen" -#: ../../include/text.php:1110 +#: ../../include/text.php:1134 msgid "ping" msgstr "anpingen" -#: ../../include/text.php:1110 +#: ../../include/text.php:1134 msgid "pinged" msgstr "pingte" -#: ../../include/text.php:1111 +#: ../../include/text.php:1135 msgid "prod" msgstr "knuffen" -#: ../../include/text.php:1111 +#: ../../include/text.php:1135 msgid "prodded" msgstr "knuffte" -#: ../../include/text.php:1112 +#: ../../include/text.php:1136 msgid "slap" msgstr "ohrfeigen" -#: ../../include/text.php:1112 +#: ../../include/text.php:1136 msgid "slapped" msgstr "ohrfeigte" -#: ../../include/text.php:1113 +#: ../../include/text.php:1137 msgid "finger" msgstr "befummeln" -#: ../../include/text.php:1113 +#: ../../include/text.php:1137 msgid "fingered" msgstr "befummelte" -#: ../../include/text.php:1114 +#: ../../include/text.php:1138 msgid "rebuff" msgstr "eine Abfuhr erteilen" -#: ../../include/text.php:1114 +#: ../../include/text.php:1138 msgid "rebuffed" msgstr "zurückgewiesen" -#: ../../include/text.php:1126 +#: ../../include/text.php:1161 msgid "happy" msgstr "glücklich" -#: ../../include/text.php:1127 +#: ../../include/text.php:1162 msgid "sad" msgstr "traurig" -#: ../../include/text.php:1128 +#: ../../include/text.php:1163 msgid "mellow" msgstr "sanft" -#: ../../include/text.php:1129 +#: ../../include/text.php:1164 msgid "tired" msgstr "müde" -#: ../../include/text.php:1130 +#: ../../include/text.php:1165 msgid "perky" msgstr "frech" -#: ../../include/text.php:1131 +#: ../../include/text.php:1166 msgid "angry" msgstr "sauer" -#: ../../include/text.php:1132 +#: ../../include/text.php:1167 msgid "stupefied" msgstr "verblüfft" -#: ../../include/text.php:1133 +#: ../../include/text.php:1168 msgid "puzzled" msgstr "verwirrt" -#: ../../include/text.php:1134 +#: ../../include/text.php:1169 msgid "interested" msgstr "interessiert" -#: ../../include/text.php:1135 +#: ../../include/text.php:1170 msgid "bitter" msgstr "verbittert" -#: ../../include/text.php:1136 +#: ../../include/text.php:1171 msgid "cheerful" msgstr "fröhlich" -#: ../../include/text.php:1137 +#: ../../include/text.php:1172 msgid "alive" msgstr "lebendig" -#: ../../include/text.php:1138 +#: ../../include/text.php:1173 msgid "annoyed" msgstr "verärgert" -#: ../../include/text.php:1139 +#: ../../include/text.php:1174 msgid "anxious" msgstr "unruhig" -#: ../../include/text.php:1140 +#: ../../include/text.php:1175 msgid "cranky" msgstr "schrullig" -#: ../../include/text.php:1141 +#: ../../include/text.php:1176 msgid "disturbed" msgstr "verstört" -#: ../../include/text.php:1142 +#: ../../include/text.php:1177 msgid "frustrated" msgstr "frustriert" -#: ../../include/text.php:1143 +#: ../../include/text.php:1178 msgid "depressed" msgstr "deprimiert" -#: ../../include/text.php:1144 +#: ../../include/text.php:1179 msgid "motivated" msgstr "motiviert" -#: ../../include/text.php:1145 +#: ../../include/text.php:1180 msgid "relaxed" msgstr "entspannt" -#: ../../include/text.php:1146 +#: ../../include/text.php:1181 msgid "surprised" msgstr "überrascht" -#: ../../include/text.php:1320 ../../include/js_strings.php:70 +#: ../../include/text.php:1360 ../../include/js_strings.php:76 msgid "Monday" msgstr "Montag" -#: ../../include/text.php:1320 ../../include/js_strings.php:71 +#: ../../include/text.php:1360 ../../include/js_strings.php:77 msgid "Tuesday" msgstr "Dienstag" -#: ../../include/text.php:1320 ../../include/js_strings.php:72 +#: ../../include/text.php:1360 ../../include/js_strings.php:78 msgid "Wednesday" msgstr "Mittwoch" -#: ../../include/text.php:1320 ../../include/js_strings.php:73 +#: ../../include/text.php:1360 ../../include/js_strings.php:79 msgid "Thursday" msgstr "Donnerstag" -#: ../../include/text.php:1320 ../../include/js_strings.php:74 +#: ../../include/text.php:1360 ../../include/js_strings.php:80 msgid "Friday" msgstr "Freitag" -#: ../../include/text.php:1320 ../../include/js_strings.php:75 +#: ../../include/text.php:1360 ../../include/js_strings.php:81 msgid "Saturday" msgstr "Samstag" -#: ../../include/text.php:1320 ../../include/js_strings.php:69 +#: ../../include/text.php:1360 ../../include/js_strings.php:75 msgid "Sunday" msgstr "Sonntag" -#: ../../include/text.php:1324 ../../include/js_strings.php:45 +#: ../../include/text.php:1364 ../../include/js_strings.php:51 msgid "January" msgstr "Januar" -#: ../../include/text.php:1324 ../../include/js_strings.php:46 +#: ../../include/text.php:1364 ../../include/js_strings.php:52 msgid "February" msgstr "Februar" -#: ../../include/text.php:1324 ../../include/js_strings.php:47 +#: ../../include/text.php:1364 ../../include/js_strings.php:53 msgid "March" msgstr "März" -#: ../../include/text.php:1324 ../../include/js_strings.php:48 +#: ../../include/text.php:1364 ../../include/js_strings.php:54 msgid "April" msgstr "April" -#: ../../include/text.php:1324 +#: ../../include/text.php:1364 msgid "May" msgstr "Mai" -#: ../../include/text.php:1324 ../../include/js_strings.php:50 +#: ../../include/text.php:1364 ../../include/js_strings.php:56 msgid "June" msgstr "Juni" -#: ../../include/text.php:1324 ../../include/js_strings.php:51 +#: ../../include/text.php:1364 ../../include/js_strings.php:57 msgid "July" msgstr "Juli" -#: ../../include/text.php:1324 ../../include/js_strings.php:52 +#: ../../include/text.php:1364 ../../include/js_strings.php:58 msgid "August" msgstr "August" -#: ../../include/text.php:1324 ../../include/js_strings.php:53 +#: ../../include/text.php:1364 ../../include/js_strings.php:59 msgid "September" msgstr "September" -#: ../../include/text.php:1324 ../../include/js_strings.php:54 +#: ../../include/text.php:1364 ../../include/js_strings.php:60 msgid "October" msgstr "Oktober" -#: ../../include/text.php:1324 ../../include/js_strings.php:55 +#: ../../include/text.php:1364 ../../include/js_strings.php:61 msgid "November" msgstr "November" -#: ../../include/text.php:1324 ../../include/js_strings.php:56 +#: ../../include/text.php:1364 ../../include/js_strings.php:62 msgid "December" msgstr "Dezember" -#: ../../include/text.php:1388 ../../include/text.php:1392 +#: ../../include/text.php:1428 ../../include/text.php:1432 msgid "Unknown Attachment" msgstr "Unbekannter Anhang" -#: ../../include/text.php:1394 ../../include/feedutils.php:825 +#: ../../include/text.php:1434 ../../include/feedutils.php:852 msgid "unknown" msgstr "unbekannt" -#: ../../include/text.php:1430 +#: ../../include/text.php:1470 msgid "remove category" msgstr "Kategorie entfernen" -#: ../../include/text.php:1504 +#: ../../include/text.php:1544 msgid "remove from file" msgstr "aus der Datei entfernen" -#: ../../include/text.php:1623 ../../include/message.php:12 +#: ../../include/text.php:1686 ../../include/message.php:12 msgid "Download binary/encrypted content" msgstr "Binären/verschlüsselten Inhalt herunterladen" -#: ../../include/text.php:1782 ../../include/language.php:364 +#: ../../include/text.php:1848 ../../include/language.php:397 msgid "default" msgstr "Standard" -#: ../../include/text.php:1790 +#: ../../include/text.php:1856 msgid "Page layout" msgstr "Seiten-Layout" -#: ../../include/text.php:1790 +#: ../../include/text.php:1856 msgid "You can create your own with the layouts tool" msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" -#: ../../include/text.php:1801 +#: ../../include/text.php:1867 msgid "HTML" msgstr "HTML" -#: ../../include/text.php:1804 +#: ../../include/text.php:1870 msgid "Comanche Layout" msgstr "Comanche-Layout" -#: ../../include/text.php:1809 +#: ../../include/text.php:1875 msgid "PHP" msgstr "PHP" -#: ../../include/text.php:1818 +#: ../../include/text.php:1884 msgid "Page content type" msgstr "Art des Seiteninhalts" -#: ../../include/text.php:1951 +#: ../../include/text.php:2017 msgid "activity" msgstr "Aktivität" -#: ../../include/text.php:2014 +#: ../../include/text.php:2099 msgid "a-z, 0-9, -, and _ only" msgstr "nur a-z, 0-9, - und _" -#: ../../include/text.php:2285 +#: ../../include/text.php:2399 msgid "Design Tools" msgstr "Gestaltungswerkzeuge" -#: ../../include/text.php:2291 +#: ../../include/text.php:2405 msgid "Pages" msgstr "Seiten" -#: ../../include/text.php:2313 +#: ../../include/text.php:2427 msgid "Import website..." msgstr "Webseite importieren..." -#: ../../include/text.php:2314 +#: ../../include/text.php:2428 msgid "Select folder to import" msgstr "Ordner zum Importieren auswählen" -#: ../../include/text.php:2315 +#: ../../include/text.php:2429 msgid "Import from a zipped folder:" msgstr "Aus einem gezippten Ordner importieren:" -#: ../../include/text.php:2316 +#: ../../include/text.php:2430 msgid "Import from cloud files:" msgstr "Aus Cloud-Dateien importieren:" -#: ../../include/text.php:2317 +#: ../../include/text.php:2431 msgid "/cloud/channel/path/to/folder" msgstr "/Cloud/Kanal/Pfad/zum/Ordner" -#: ../../include/text.php:2318 +#: ../../include/text.php:2432 msgid "Enter path to website files" msgstr "Pfad zu Webseitendateien eingeben" -#: ../../include/text.php:2319 +#: ../../include/text.php:2433 msgid "Select folder" msgstr "Ordner auswählen" -#: ../../include/text.php:2320 +#: ../../include/text.php:2434 msgid "Export website..." msgstr "Webseite exportieren..." -#: ../../include/text.php:2321 +#: ../../include/text.php:2435 msgid "Export to a zip file" msgstr "In eine ZIP-Datei exportieren" -#: ../../include/text.php:2322 +#: ../../include/text.php:2436 msgid "website.zip" msgstr "website.zip" -#: ../../include/text.php:2323 +#: ../../include/text.php:2437 msgid "Enter a name for the zip file." msgstr "Geben Sie einen für die ZIP-Datei ein." -#: ../../include/text.php:2324 +#: ../../include/text.php:2438 msgid "Export to cloud files" msgstr "In Cloud-Dateien exportieren" -#: ../../include/text.php:2325 +#: ../../include/text.php:2439 msgid "/path/to/export/folder" msgstr "/Pfad/zum/exportierenden/Ordner" -#: ../../include/text.php:2326 +#: ../../include/text.php:2440 msgid "Enter a path to a cloud files destination." msgstr "Gib den Pfad zu einem Datei-Speicherort in der Cloud ein." -#: ../../include/text.php:2327 +#: ../../include/text.php:2441 msgid "Specify folder" msgstr "Ordner angeben" @@ -12271,7 +12569,7 @@ msgstr "Gemeinsame Verbindungen" msgid "View all %d common connections" msgstr "Zeige alle %d gemeinsamen Verbindungen" -#: ../../include/markdown.php:158 ../../include/bbcode.php:339 +#: ../../include/markdown.php:158 ../../include/bbcode.php:343 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s schrieb den folgenden %2$s %3$s" @@ -12375,182 +12673,182 @@ msgstr "Gib eine URL ein:" msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:31 msgid "timeago.prefixAgo" msgstr "vor" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:32 msgid "timeago.prefixFromNow" msgstr "in" -#: ../../include/js_strings.php:29 +#: ../../include/js_strings.php:33 msgid "timeago.suffixAgo" msgstr "NONE" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:34 msgid "timeago.suffixFromNow" msgstr "NONE" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:37 msgid "less than a minute" msgstr "weniger als einer Minute" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:38 msgid "about a minute" msgstr "ungefähr einer Minute" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:39 #, php-format msgid "%d minutes" msgstr "%d Minuten" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:40 msgid "about an hour" msgstr "ungefähr einer Stunde" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:41 #, php-format msgid "about %d hours" msgstr "ungefähr %d Stunden" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:42 msgid "a day" msgstr "einem Tag" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:43 #, php-format msgid "%d days" msgstr "%d Tagen" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:44 msgid "about a month" msgstr "ungefähr einem Monat" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:45 #, php-format msgid "%d months" msgstr "%d Monaten" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:46 msgid "about a year" msgstr "ungefähr einem Jahr" -#: ../../include/js_strings.php:41 +#: ../../include/js_strings.php:47 #, php-format msgid "%d years" msgstr "%d Jahren" -#: ../../include/js_strings.php:42 +#: ../../include/js_strings.php:48 msgid " " msgstr " " -#: ../../include/js_strings.php:43 +#: ../../include/js_strings.php:49 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/js_strings.php:49 +#: ../../include/js_strings.php:55 msgctxt "long" msgid "May" msgstr "Mai" -#: ../../include/js_strings.php:57 +#: ../../include/js_strings.php:63 msgid "Jan" msgstr "Jan" -#: ../../include/js_strings.php:58 +#: ../../include/js_strings.php:64 msgid "Feb" msgstr "Feb" -#: ../../include/js_strings.php:59 +#: ../../include/js_strings.php:65 msgid "Mar" msgstr "Mär" -#: ../../include/js_strings.php:60 +#: ../../include/js_strings.php:66 msgid "Apr" msgstr "Apr" -#: ../../include/js_strings.php:61 +#: ../../include/js_strings.php:67 msgctxt "short" msgid "May" msgstr "Mai" -#: ../../include/js_strings.php:62 +#: ../../include/js_strings.php:68 msgid "Jun" msgstr "Jun" -#: ../../include/js_strings.php:63 +#: ../../include/js_strings.php:69 msgid "Jul" msgstr "Jul" -#: ../../include/js_strings.php:64 +#: ../../include/js_strings.php:70 msgid "Aug" msgstr "Aug" -#: ../../include/js_strings.php:65 +#: ../../include/js_strings.php:71 msgid "Sep" msgstr "Sep" -#: ../../include/js_strings.php:66 +#: ../../include/js_strings.php:72 msgid "Oct" msgstr "Okt" -#: ../../include/js_strings.php:67 +#: ../../include/js_strings.php:73 msgid "Nov" msgstr "Nov" -#: ../../include/js_strings.php:68 +#: ../../include/js_strings.php:74 msgid "Dec" msgstr "Dez" -#: ../../include/js_strings.php:76 +#: ../../include/js_strings.php:82 msgid "Sun" msgstr "So" -#: ../../include/js_strings.php:77 +#: ../../include/js_strings.php:83 msgid "Mon" msgstr "Mo" -#: ../../include/js_strings.php:78 +#: ../../include/js_strings.php:84 msgid "Tue" msgstr "Di" -#: ../../include/js_strings.php:79 +#: ../../include/js_strings.php:85 msgid "Wed" msgstr "Mi" -#: ../../include/js_strings.php:80 +#: ../../include/js_strings.php:86 msgid "Thu" msgstr "Do" -#: ../../include/js_strings.php:81 +#: ../../include/js_strings.php:87 msgid "Fri" msgstr "Fr" -#: ../../include/js_strings.php:82 +#: ../../include/js_strings.php:88 msgid "Sat" msgstr "Sa" -#: ../../include/js_strings.php:83 +#: ../../include/js_strings.php:89 msgctxt "calendar" msgid "today" msgstr "heute" -#: ../../include/js_strings.php:84 +#: ../../include/js_strings.php:90 msgctxt "calendar" msgid "month" msgstr "Monat" -#: ../../include/js_strings.php:85 +#: ../../include/js_strings.php:91 msgctxt "calendar" msgid "week" msgstr "Woche" -#: ../../include/js_strings.php:86 +#: ../../include/js_strings.php:92 msgctxt "calendar" msgid "day" msgstr "Tag" -#: ../../include/js_strings.php:87 +#: ../../include/js_strings.php:93 msgctxt "calendar" msgid "All day" msgstr "Ganztägig" @@ -12598,61 +12896,61 @@ msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." msgid "Item was not found." msgstr "Beitrag wurde nicht gefunden." -#: ../../include/attach.php:553 +#: ../../include/attach.php:554 msgid "No source file." msgstr "Keine Quelldatei." -#: ../../include/attach.php:575 +#: ../../include/attach.php:576 msgid "Cannot locate file to replace" msgstr "Kann Datei zum Ersetzen nicht finden" -#: ../../include/attach.php:593 +#: ../../include/attach.php:595 msgid "Cannot locate file to revise/update" msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" -#: ../../include/attach.php:734 +#: ../../include/attach.php:737 #, php-format msgid "File exceeds size limit of %d" msgstr "Datei überschreitet das Größen-Limit von %d" -#: ../../include/attach.php:754 +#: ../../include/attach.php:758 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." -#: ../../include/attach.php:929 +#: ../../include/attach.php:940 msgid "File upload failed. Possible system limit or action terminated." msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." -#: ../../include/attach.php:948 +#: ../../include/attach.php:959 msgid "Stored file could not be verified. Upload failed." msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." -#: ../../include/attach.php:1022 ../../include/attach.php:1038 +#: ../../include/attach.php:1033 ../../include/attach.php:1049 msgid "Path not available." msgstr "Pfad nicht verfügbar." -#: ../../include/attach.php:1087 ../../include/attach.php:1252 +#: ../../include/attach.php:1098 ../../include/attach.php:1263 msgid "Empty pathname" msgstr "Leere Pfadangabe" -#: ../../include/attach.php:1113 +#: ../../include/attach.php:1124 msgid "duplicate filename or path" msgstr "doppelter Dateiname oder Pfad" -#: ../../include/attach.php:1138 +#: ../../include/attach.php:1149 msgid "Path not found." msgstr "Pfad nicht gefunden." -#: ../../include/attach.php:1206 +#: ../../include/attach.php:1217 msgid "mkdir failed." msgstr "mkdir fehlgeschlagen." -#: ../../include/attach.php:1210 +#: ../../include/attach.php:1221 msgid "database storage failed." msgstr "Speichern in der Datenbank fehlgeschlagen." -#: ../../include/attach.php:1258 +#: ../../include/attach.php:1269 msgid "Empty path" msgstr "Leere Pfadangabe" @@ -12699,34 +12997,34 @@ msgstr "Nur für akzeptierte Verbindungen sichtbar." msgid "Visible to specific connections." msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../include/items.php:4117 +#: ../../include/items.php:4147 msgid "Privacy group is empty." msgstr "Gruppe ist leer." -#: ../../include/items.php:4124 +#: ../../include/items.php:4154 #, php-format msgid "Privacy group: %s" msgstr "Gruppe: %s" -#: ../../include/items.php:4136 +#: ../../include/items.php:4166 msgid "Connection not found." msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/items.php:4485 +#: ../../include/items.php:4515 msgid "profile photo" msgstr "Profilfoto" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 #, php-format msgid "[Edited %s]" msgstr "[%s wurde bearbeitet]" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 msgctxt "edit_activity" msgid "Post" msgstr "Beitrag" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 msgctxt "edit_activity" msgid "Comment" msgstr "Kommentar" @@ -12745,7 +13043,7 @@ msgstr "Name ist zu lang" #: ../../include/channel.php:188 msgid "No account identifier" -msgstr "Keine Account-Kennung" +msgstr "Keine Konten-Kennung" #: ../../include/channel.php:200 msgid "Nickname is required." @@ -12771,11 +13069,11 @@ msgstr "Neues Profil erstellen" msgid "Visible to everybody" msgstr "Für jeden sichtbar" -#: ../../include/channel.php:1396 ../../include/channel.php:1523 +#: ../../include/channel.php:1396 ../../include/channel.php:1524 msgid "Gender:" msgstr "Geschlecht:" -#: ../../include/channel.php:1398 ../../include/channel.php:1578 +#: ../../include/channel.php:1398 ../../include/channel.php:1579 msgid "Homepage:" msgstr "Homepage:" @@ -12783,108 +13081,112 @@ msgstr "Homepage:" msgid "Online Now" msgstr "gerade online" -#: ../../include/channel.php:1482 -msgid "Trans" -msgstr "" +#: ../../include/channel.php:1452 +msgid "Change your profile photo" +msgstr "Dein Profilfoto ändern" -#: ../../include/channel.php:1528 +#: ../../include/channel.php:1483 +msgid "Trans" +msgstr "Trans" + +#: ../../include/channel.php:1529 msgid "Like this channel" msgstr "Dieser Kanal gefällt mir" -#: ../../include/channel.php:1552 +#: ../../include/channel.php:1553 msgid "j F, Y" msgstr "j. F Y" -#: ../../include/channel.php:1553 +#: ../../include/channel.php:1554 msgid "j F" msgstr "j. F" -#: ../../include/channel.php:1560 +#: ../../include/channel.php:1561 msgid "Birthday:" msgstr "Geburtstag:" -#: ../../include/channel.php:1573 +#: ../../include/channel.php:1574 #, php-format msgid "for %1$d %2$s" msgstr "seit %1$d %2$s" -#: ../../include/channel.php:1576 +#: ../../include/channel.php:1577 msgid "Sexual Preference:" msgstr "Sexuelle Orientierung:" -#: ../../include/channel.php:1582 +#: ../../include/channel.php:1583 msgid "Tags:" msgstr "Schlagworte:" -#: ../../include/channel.php:1584 +#: ../../include/channel.php:1585 msgid "Political Views:" msgstr "Politische Ansichten:" -#: ../../include/channel.php:1586 +#: ../../include/channel.php:1587 msgid "Religion:" msgstr "Religion:" -#: ../../include/channel.php:1590 +#: ../../include/channel.php:1591 msgid "Hobbies/Interests:" msgstr "Hobbys/Interessen:" -#: ../../include/channel.php:1592 +#: ../../include/channel.php:1593 msgid "Likes:" msgstr "Gefällt:" -#: ../../include/channel.php:1594 +#: ../../include/channel.php:1595 msgid "Dislikes:" msgstr "Gefällt nicht:" -#: ../../include/channel.php:1596 +#: ../../include/channel.php:1597 msgid "Contact information and Social Networks:" msgstr "Kontaktinformation und soziale Netzwerke:" -#: ../../include/channel.php:1598 +#: ../../include/channel.php:1599 msgid "My other channels:" msgstr "Meine anderen Kanäle:" -#: ../../include/channel.php:1600 +#: ../../include/channel.php:1601 msgid "Musical interests:" msgstr "Musikalische Interessen:" -#: ../../include/channel.php:1602 +#: ../../include/channel.php:1603 msgid "Books, literature:" msgstr "Bücher, Literatur:" -#: ../../include/channel.php:1604 +#: ../../include/channel.php:1605 msgid "Television:" msgstr "Fernsehen:" -#: ../../include/channel.php:1606 +#: ../../include/channel.php:1607 msgid "Film/dance/culture/entertainment:" msgstr "Film/Tanz/Kultur/Unterhaltung:" -#: ../../include/channel.php:1608 +#: ../../include/channel.php:1609 msgid "Love/Romance:" msgstr "Liebe/Romantik:" -#: ../../include/channel.php:1610 +#: ../../include/channel.php:1611 msgid "Work/employment:" msgstr "Arbeit/Anstellung:" -#: ../../include/channel.php:1612 +#: ../../include/channel.php:1613 msgid "School/education:" msgstr "Schule/Ausbildung:" -#: ../../include/channel.php:1635 +#: ../../include/channel.php:1636 msgid "Like this thing" msgstr "Gefällt mir" -#: ../../include/event.php:23 ../../include/event.php:70 +#: ../../include/event.php:24 ../../include/event.php:71 msgid "l F d, Y \\@ g:i A" msgstr "l, d. F Y, H:i" -#: ../../include/event.php:31 ../../include/event.php:74 +#: ../../include/event.php:32 ../../include/event.php:75 msgid "Starts:" msgstr "Beginnt:" -#: ../../include/event.php:41 ../../include/event.php:78 +#: ../../include/event.php:42 ../../include/event.php:79 msgid "Finishes:" msgstr "Endet:" @@ -12892,167 +13194,175 @@ msgstr "Endet:" msgid "This event has been added to your calendar." msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" -#: ../../include/event.php:1220 +#: ../../include/event.php:1227 msgid "Not specified" msgstr "Keine Angabe" -#: ../../include/event.php:1221 +#: ../../include/event.php:1228 msgid "Needs Action" msgstr "Aktion erforderlich" -#: ../../include/event.php:1222 +#: ../../include/event.php:1229 msgid "Completed" msgstr "Abgeschlossen" -#: ../../include/event.php:1223 +#: ../../include/event.php:1230 msgid "In Process" msgstr "In Bearbeitung" -#: ../../include/event.php:1224 +#: ../../include/event.php:1231 msgid "Cancelled" msgstr "gestrichen" -#: ../../include/event.php:1303 ../../include/connections.php:684 +#: ../../include/event.php:1310 ../../include/connections.php:684 msgid "Home, Voice" msgstr "Zuhause, Sprache" -#: ../../include/event.php:1304 ../../include/connections.php:685 +#: ../../include/event.php:1311 ../../include/connections.php:685 msgid "Home, Fax" msgstr "Zuhause, Fax" -#: ../../include/event.php:1306 ../../include/connections.php:687 +#: ../../include/event.php:1313 ../../include/connections.php:687 msgid "Work, Voice" msgstr "Arbeit, Sprache" -#: ../../include/event.php:1307 ../../include/connections.php:688 +#: ../../include/event.php:1314 ../../include/connections.php:688 msgid "Work, Fax" msgstr "Arbeit, Fax" -#: ../../include/network.php:761 +#: ../../include/network.php:762 msgid "view full size" msgstr "In Vollbildansicht anschauen" -#: ../../include/network.php:1763 ../../include/network.php:1764 +#: ../../include/network.php:1769 ../../include/network.php:1770 msgid "Friendica" msgstr "Friendica" -#: ../../include/network.php:1765 +#: ../../include/network.php:1771 msgid "OStatus" msgstr "OStatus" -#: ../../include/network.php:1766 +#: ../../include/network.php:1772 msgid "GNU-Social" msgstr "GNU-Social" -#: ../../include/network.php:1767 +#: ../../include/network.php:1773 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/network.php:1770 +#: ../../include/network.php:1776 msgid "Diaspora" msgstr "Diaspora" -#: ../../include/network.php:1771 +#: ../../include/network.php:1777 msgid "Facebook" msgstr "Facebook" -#: ../../include/network.php:1772 +#: ../../include/network.php:1778 msgid "Zot" -msgstr "Zot!" +msgstr "Zot" -#: ../../include/network.php:1773 +#: ../../include/network.php:1779 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/network.php:1774 +#: ../../include/network.php:1780 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/network.php:1775 +#: ../../include/network.php:1781 msgid "MySpace" msgstr "MySpace" -#: ../../include/language.php:377 +#: ../../include/language.php:410 msgid "Select an alternate language" msgstr "Wähle eine alternative Sprache" -#: ../../include/acl_selectors.php:208 +#: ../../include/acl_selectors.php:113 msgid "Who can see this?" msgstr "Wer kann das sehen?" -#: ../../include/acl_selectors.php:209 +#: ../../include/acl_selectors.php:114 msgid "Custom selection" msgstr "Benutzerdefinierte Auswahl" -#: ../../include/acl_selectors.php:210 +#: ../../include/acl_selectors.php:115 msgid "" "Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" " the scope of \"Show\"." msgstr "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen." -#: ../../include/acl_selectors.php:211 +#: ../../include/acl_selectors.php:116 msgid "Show" msgstr "Anzeigen" -#: ../../include/acl_selectors.php:212 +#: ../../include/acl_selectors.php:117 msgid "Don't show" msgstr "Nicht anzeigen" -#: ../../include/acl_selectors.php:245 +#: ../../include/acl_selectors.php:150 #, php-format msgid "" "Post permissions %s cannot be changed %s after a post is shared.
    These" " permissions set who is allowed to view the post." msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
    Diese Berechtigungen bestimmen, wer den Beitrag sehen kann." -#: ../../include/dba/dba_driver.php:190 +#: ../../include/dba/dba_driver.php:178 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" -#: ../../include/bbcode.php:194 ../../include/bbcode.php:1106 -#: ../../include/bbcode.php:1109 ../../include/bbcode.php:1114 -#: ../../include/bbcode.php:1117 ../../include/bbcode.php:1120 -#: ../../include/bbcode.php:1123 ../../include/bbcode.php:1128 -#: ../../include/bbcode.php:1131 ../../include/bbcode.php:1136 -#: ../../include/bbcode.php:1139 ../../include/bbcode.php:1142 -#: ../../include/bbcode.php:1145 +#: ../../include/bbcode.php:198 ../../include/bbcode.php:1151 +#: ../../include/bbcode.php:1154 ../../include/bbcode.php:1159 +#: ../../include/bbcode.php:1162 ../../include/bbcode.php:1165 +#: ../../include/bbcode.php:1168 ../../include/bbcode.php:1173 +#: ../../include/bbcode.php:1176 ../../include/bbcode.php:1181 +#: ../../include/bbcode.php:1184 ../../include/bbcode.php:1187 +#: ../../include/bbcode.php:1190 msgid "Image/photo" msgstr "Bild/Foto" -#: ../../include/bbcode.php:233 ../../include/bbcode.php:1156 +#: ../../include/bbcode.php:237 ../../include/bbcode.php:1201 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" -#: ../../include/bbcode.php:249 +#: ../../include/bbcode.php:253 #, php-format msgid "Install %1$s element %2$s" -msgstr "" +msgstr "Installiere %1$s Element %2$s" -#: ../../include/bbcode.php:253 +#: ../../include/bbcode.php:257 #, php-format msgid "" "This post contains an installable %s element, however you lack permissions " "to install it on this site." msgstr "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." -#: ../../include/bbcode.php:331 +#: ../../include/bbcode.php:335 msgid "card" msgstr "Karte" -#: ../../include/bbcode.php:333 +#: ../../include/bbcode.php:337 msgid "article" msgstr "Artikel" -#: ../../include/bbcode.php:416 ../../include/bbcode.php:424 +#: ../../include/bbcode.php:420 ../../include/bbcode.php:428 msgid "Click to open/close" msgstr "Klicke zum Öffnen/Schließen" -#: ../../include/bbcode.php:424 +#: ../../include/bbcode.php:428 msgid "spoiler" msgstr "Spoiler" -#: ../../include/bbcode.php:1094 +#: ../../include/bbcode.php:441 +msgid "View article" +msgstr "Artikel ansehen" + +#: ../../include/bbcode.php:441 +msgid "View summary" +msgstr "Zusammenfassung ansehen" + +#: ../../include/bbcode.php:1139 msgid "$1 wrote:" msgstr "$1 schrieb:" @@ -13072,7 +13382,7 @@ msgstr "Eingebetteter Inhalt" msgid "Embedding disabled" msgstr "Einbetten deaktiviert" -#: ../../include/zid.php:340 +#: ../../include/zid.php:346 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s heißt %2$s willkommen" @@ -13081,344 +13391,364 @@ msgstr "OpenWebAuth: %1$s heißt %2$s willkommen" msgid "General Features" msgstr "Allgemeine Funktionen" -#: ../../include/features.php:59 -msgid "Multiple Profiles" -msgstr "Mehrfachprofile" - #: ../../include/features.php:60 -msgid "Ability to create multiple profiles" -msgstr "Ermöglicht das Anlegen mehrerer Profile pro Kanal" - -#: ../../include/features.php:68 msgid "Advanced Profiles" msgstr "Erweiterte Profile" -#: ../../include/features.php:69 +#: ../../include/features.php:61 msgid "Additional profile sections and selections" msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" -#: ../../include/features.php:77 +#: ../../include/features.php:69 msgid "Profile Import/Export" msgstr "Profil-Import/Export" -#: ../../include/features.php:78 +#: ../../include/features.php:70 msgid "Save and load profile details across sites/channels" msgstr "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren" -#: ../../include/features.php:86 +#: ../../include/features.php:78 msgid "Web Pages" msgstr "Webseiten" -#: ../../include/features.php:87 +#: ../../include/features.php:79 msgid "Provide managed web pages on your channel" msgstr "Ermöglicht das Erstellen von Webseiten in Deinem Kanal" -#: ../../include/features.php:96 +#: ../../include/features.php:88 msgid "Provide a wiki for your channel" msgstr "Stelle ein Wiki in Deinem Kanal zur Verfügung" -#: ../../include/features.php:113 +#: ../../include/features.php:105 msgid "Private Notes" msgstr "Private Notizen" -#: ../../include/features.php:114 +#: ../../include/features.php:106 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)" -#: ../../include/features.php:123 +#: ../../include/features.php:115 msgid "Create personal planning cards" msgstr "Erstelle persönliche (Notiz-)Karten zur Planung/Koordination oder ähnlichen Zwecken" -#: ../../include/features.php:141 +#: ../../include/features.php:125 +msgid "Create interactive articles" +msgstr "Erstelle interaktive Artikel" + +#: ../../include/features.php:133 msgid "Navigation Channel Select" msgstr "Kanal-Auswahl in der Navigationsleiste" -#: ../../include/features.php:142 +#: ../../include/features.php:134 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü" -#: ../../include/features.php:150 +#: ../../include/features.php:142 msgid "Photo Location" msgstr "Aufnahmeort" -#: ../../include/features.php:151 +#: ../../include/features.php:143 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte" -#: ../../include/features.php:159 +#: ../../include/features.php:151 msgid "Access Controlled Chatrooms" msgstr "Zugriffskontrollierte Chaträume" -#: ../../include/features.php:160 +#: ../../include/features.php:152 msgid "Provide chatrooms and chat services with access control." msgstr "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an." -#: ../../include/features.php:169 -msgid "Provide alternate connection permission roles." -msgstr "Stelle benutzerdefinierte Berechtigungsrollen für Verbindungen zur Verfügung." - -#: ../../include/features.php:177 +#: ../../include/features.php:161 msgid "Smart Birthdays" msgstr "Smarte Geburtstage" -#: ../../include/features.php:178 +#: ../../include/features.php:162 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind." -#: ../../include/features.php:186 +#: ../../include/features.php:170 msgid "Event Timezone Selection" msgstr "Termin-Zeitzonenauswahl" -#: ../../include/features.php:187 +#: ../../include/features.php:171 msgid "Allow event creation in timezones other than your own." msgstr "Ermögliche das Erstellen von Terminen in anderen Zeitzonen als Deiner eigenen." -#: ../../include/features.php:195 -msgid "Advanced Directory Search" -msgstr "Erweiterte Verzeichnissuche" - -#: ../../include/features.php:196 -msgid "Allows creation of complex directory search queries" -msgstr "Ermöglicht die Erstellung komplexer Verzeichnis-Suchabfragen" - -#: ../../include/features.php:204 -msgid "Advanced Theme and Layout Settings" -msgstr "Erweiterte Design- und Layout-Einstellungen" - -#: ../../include/features.php:205 -msgid "Allows fine tuning of themes and page layouts" -msgstr "Erlaubt die Feineinstellung von Designs und Seitenlayouts" - -#: ../../include/features.php:215 -msgid "Post Composition Features" -msgstr "Nachbearbeitungsfunktionen" - -#: ../../include/features.php:219 -msgid "Large Photos" -msgstr "Große Fotos" - -#: ../../include/features.php:220 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet." - -#: ../../include/features.php:229 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds" - -#: ../../include/features.php:237 -msgid "Even More Encryption" -msgstr "Noch mehr Verschlüsselung" - -#: ../../include/features.php:238 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)" - -#: ../../include/features.php:246 -msgid "Enable Voting Tools" -msgstr "Umfragewerkzeuge aktivieren" - -#: ../../include/features.php:247 -msgid "Provide a class of post which others can vote on" -msgstr "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" - -#: ../../include/features.php:255 -msgid "Disable Comments" -msgstr "Kommentare deaktivieren" - -#: ../../include/features.php:256 -msgid "Provide the option to disable comments for a post" -msgstr "Ermöglicht, die Kommentarfunktion für einzelne Beiträge abzuschalten" - -#: ../../include/features.php:264 -msgid "Delayed Posting" -msgstr "Verzögertes Senden" - -#: ../../include/features.php:265 -msgid "Allow posts to be published at a later date" -msgstr "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen" - -#: ../../include/features.php:273 -msgid "Content Expiration" -msgstr "Verfall von Inhalten" - -#: ../../include/features.php:274 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum." - -#: ../../include/features.php:282 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Doppelte Beiträge unterdrücken" - -#: ../../include/features.php:283 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden." - -#: ../../include/features.php:294 -msgid "Network and Stream Filtering" -msgstr "Netzwerk- und Stream-Filter" - -#: ../../include/features.php:298 -msgid "Search by Date" -msgstr "Suche nach Datum" - -#: ../../include/features.php:299 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" - -#: ../../include/features.php:307 ../../include/group.php:328 -msgid "Privacy Groups" -msgstr "Gruppen" - -#: ../../include/features.php:308 -msgid "Enable management and selection of privacy groups" -msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" - -#: ../../include/features.php:317 -msgid "Save search terms for re-use" -msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" - -#: ../../include/features.php:325 -msgid "Network Personal Tab" -msgstr "Persönlicher Netzwerkreiter" - -#: ../../include/features.php:326 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast" - -#: ../../include/features.php:334 -msgid "Network New Tab" -msgstr "Netzwerkreiter Neu" - -#: ../../include/features.php:335 -msgid "Enable tab to display all new Network activity" -msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt" - -#: ../../include/features.php:343 -msgid "Affinity Tool" -msgstr "Beziehungs-Tool" - -#: ../../include/features.php:344 -msgid "Filter stream activity by depth of relationships" -msgstr "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann" - -#: ../../include/features.php:353 -msgid "Show friend and connection suggestions" -msgstr "Freund- und Verbindungsvorschläge anzeigen" - -#: ../../include/features.php:361 -msgid "Connection Filtering" -msgstr "Filter für Verbindungen" - -#: ../../include/features.php:362 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)" - -#: ../../include/features.php:374 -msgid "Post/Comment Tools" -msgstr "Beitrag-/Kommentar-Tools" - -#: ../../include/features.php:379 -msgid "Use markdown for editing posts" -msgstr "Verwende Markdown zum Bearbeiten von Beiträgen" - -#: ../../include/features.php:387 -msgid "Community Tagging" -msgstr "Gemeinschaftliches Verschlagworten" - -#: ../../include/features.php:388 -msgid "Ability to tag existing posts" -msgstr "Ermöglicht das Verschlagworten existierender Beiträge" - -#: ../../include/features.php:396 -msgid "Post Categories" -msgstr "Beitrags-Kategorien" - -#: ../../include/features.php:397 -msgid "Add categories to your posts" -msgstr "Aktiviert Kategorien für Beiträge" - -#: ../../include/features.php:405 -msgid "Emoji Reactions" -msgstr "Emoji Reaktionen" - -#: ../../include/features.php:406 -msgid "Add emoji reaction ability to posts" -msgstr "Aktiviert Emoji-Reaktionen für Beiträge" - -#: ../../include/features.php:415 -msgid "Ability to file posts under folders" -msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" - -#: ../../include/features.php:423 -msgid "Dislike Posts" -msgstr "Gefällt-mir-nicht-Beiträge" - -#: ../../include/features.php:424 -msgid "Ability to dislike posts/comments" -msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" - -#: ../../include/features.php:432 -msgid "Star Posts" -msgstr "Beiträge mit Sternchen versehen" - -#: ../../include/features.php:433 -msgid "Ability to mark special posts with a star indicator" -msgstr "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol" - -#: ../../include/features.php:441 -msgid "Tag Cloud" -msgstr "Schlagwort-Wolke" - -#: ../../include/features.php:442 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" - -#: ../../include/features.php:453 +#: ../../include/features.php:180 msgid "Premium Channel" msgstr "Premium-Kanal" -#: ../../include/features.php:454 +#: ../../include/features.php:181 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" -#: ../../include/taxonomy.php:377 ../../include/taxonomy.php:398 +#: ../../include/features.php:189 +msgid "Advanced Directory Search" +msgstr "Erweiterte Verzeichnissuche" + +#: ../../include/features.php:190 +msgid "Allows creation of complex directory search queries" +msgstr "Ermöglicht die Erstellung komplexer Verzeichnis-Suchabfragen" + +#: ../../include/features.php:198 +msgid "Advanced Theme and Layout Settings" +msgstr "Erweiterte Design- und Layout-Einstellungen" + +#: ../../include/features.php:199 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Erlaubt die Feineinstellung von Designs und Seitenlayouts" + +#: ../../include/features.php:208 +msgid "Access Control and Permissions" +msgstr "Zugriffskontrolle und Berechtigungen" + +#: ../../include/features.php:212 ../../include/group.php:328 +msgid "Privacy Groups" +msgstr "Gruppen" + +#: ../../include/features.php:213 +msgid "Enable management and selection of privacy groups" +msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" + +#: ../../include/features.php:221 +msgid "Multiple Profiles" +msgstr "Mehrfachprofile" + +#: ../../include/features.php:222 +msgid "Ability to create multiple profiles" +msgstr "Ermöglicht das Anlegen mehrerer Profile pro Kanal" + +#: ../../include/features.php:232 +msgid "Provide alternate connection permission roles." +msgstr "Stelle benutzerdefinierte Berechtigungsrollen für Verbindungen zur Verfügung." + +#: ../../include/features.php:240 +msgid "OAuth Clients" +msgstr "OAuth Clients" + +#: ../../include/features.php:241 +msgid "Manage authenticatication tokens for mobile and remote apps." +msgstr "Verwalte Tokens für den Zugriff von mobilen bzw. externen Anwendungen." + +#: ../../include/features.php:249 +msgid "Access Tokens" +msgstr "Zugangstokens" + +#: ../../include/features.php:250 +msgid "Create access tokens so that non-members can access private content." +msgstr "Erzeuge Tokens für den Zugriff von Nicht-Mitgliedern auf private Inhalte." + +#: ../../include/features.php:261 +msgid "Post Composition Features" +msgstr "Nachbearbeitungsfunktionen" + +#: ../../include/features.php:265 +msgid "Large Photos" +msgstr "Große Fotos" + +#: ../../include/features.php:266 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet." + +#: ../../include/features.php:275 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds" + +#: ../../include/features.php:283 +msgid "Even More Encryption" +msgstr "Noch mehr Verschlüsselung" + +#: ../../include/features.php:284 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)" + +#: ../../include/features.php:292 +msgid "Enable Voting Tools" +msgstr "Umfragewerkzeuge aktivieren" + +#: ../../include/features.php:293 +msgid "Provide a class of post which others can vote on" +msgstr "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" + +#: ../../include/features.php:301 +msgid "Disable Comments" +msgstr "Kommentare deaktivieren" + +#: ../../include/features.php:302 +msgid "Provide the option to disable comments for a post" +msgstr "Ermöglicht, die Kommentarfunktion für einzelne Beiträge abzuschalten" + +#: ../../include/features.php:310 +msgid "Delayed Posting" +msgstr "Verzögertes Senden" + +#: ../../include/features.php:311 +msgid "Allow posts to be published at a later date" +msgstr "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen" + +#: ../../include/features.php:319 +msgid "Content Expiration" +msgstr "Verfall von Inhalten" + +#: ../../include/features.php:320 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum." + +#: ../../include/features.php:328 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Doppelte Beiträge unterdrücken" + +#: ../../include/features.php:329 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden." + +#: ../../include/features.php:340 +msgid "Network and Stream Filtering" +msgstr "Netzwerk- und Stream-Filter" + +#: ../../include/features.php:344 +msgid "Search by Date" +msgstr "Suche nach Datum" + +#: ../../include/features.php:345 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" + +#: ../../include/features.php:355 +msgid "Save search terms for re-use" +msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" + +#: ../../include/features.php:363 +msgid "Network Personal Tab" +msgstr "Persönlicher Netzwerkreiter" + +#: ../../include/features.php:364 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast" + +#: ../../include/features.php:372 +msgid "Network New Tab" +msgstr "Netzwerkreiter Neu" + +#: ../../include/features.php:373 +msgid "Enable tab to display all new Network activity" +msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt" + +#: ../../include/features.php:381 +msgid "Affinity Tool" +msgstr "Beziehungs-Tool" + +#: ../../include/features.php:382 +msgid "Filter stream activity by depth of relationships" +msgstr "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann" + +#: ../../include/features.php:391 +msgid "Show friend and connection suggestions" +msgstr "Freund- und Verbindungsvorschläge anzeigen" + +#: ../../include/features.php:399 +msgid "Connection Filtering" +msgstr "Filter für Verbindungen" + +#: ../../include/features.php:400 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)" + +#: ../../include/features.php:412 +msgid "Post/Comment Tools" +msgstr "Beitrag-/Kommentar-Tools" + +#: ../../include/features.php:416 +msgid "Community Tagging" +msgstr "Gemeinschaftliches Verschlagworten" + +#: ../../include/features.php:417 +msgid "Ability to tag existing posts" +msgstr "Ermöglicht das Verschlagworten existierender Beiträge" + +#: ../../include/features.php:425 +msgid "Post Categories" +msgstr "Beitrags-Kategorien" + +#: ../../include/features.php:426 +msgid "Add categories to your posts" +msgstr "Aktiviert Kategorien für Beiträge" + +#: ../../include/features.php:434 +msgid "Emoji Reactions" +msgstr "Emoji Reaktionen" + +#: ../../include/features.php:435 +msgid "Add emoji reaction ability to posts" +msgstr "Aktiviert Emoji-Reaktionen für Beiträge" + +#: ../../include/features.php:444 +msgid "Ability to file posts under folders" +msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" + +#: ../../include/features.php:452 +msgid "Dislike Posts" +msgstr "Gefällt-mir-nicht-Beiträge" + +#: ../../include/features.php:453 +msgid "Ability to dislike posts/comments" +msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" + +#: ../../include/features.php:461 +msgid "Star Posts" +msgstr "Beiträge mit Sternchen versehen" + +#: ../../include/features.php:462 +msgid "Ability to mark special posts with a star indicator" +msgstr "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol" + +#: ../../include/features.php:470 +msgid "Tag Cloud" +msgstr "Schlagwort-Wolke" + +#: ../../include/features.php:471 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" + +#: ../../include/taxonomy.php:384 ../../include/taxonomy.php:405 msgid "Tags" msgstr "Schlagwörter" -#: ../../include/taxonomy.php:483 +#: ../../include/taxonomy.php:487 msgid "Keywords" msgstr "Schlüsselwörter" -#: ../../include/taxonomy.php:504 +#: ../../include/taxonomy.php:508 msgid "have" msgstr "habe" -#: ../../include/taxonomy.php:504 +#: ../../include/taxonomy.php:508 msgid "has" msgstr "hat" -#: ../../include/taxonomy.php:505 +#: ../../include/taxonomy.php:509 msgid "want" msgstr "will" -#: ../../include/taxonomy.php:505 +#: ../../include/taxonomy.php:509 msgid "wants" msgstr "will" -#: ../../include/taxonomy.php:506 +#: ../../include/taxonomy.php:510 msgid "likes" msgstr "gefällt" -#: ../../include/taxonomy.php:507 +#: ../../include/taxonomy.php:511 msgid "dislikes" msgstr "missfällt" @@ -13450,256 +13780,200 @@ msgstr "Bitte gib die benötigten Informationen ein." msgid "Failed to store account information." msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." -#: ../../include/account.php:291 +#: ../../include/account.php:313 #, php-format msgid "Registration confirmation for %s" msgstr "Registrierungsbestätigung für %s" -#: ../../include/account.php:360 +#: ../../include/account.php:382 #, php-format msgid "Registration request at %s" msgstr "Registrierungsanfrage auf %s" -#: ../../include/account.php:382 +#: ../../include/account.php:404 msgid "your registration password" msgstr "Dein Registrierungspasswort" -#: ../../include/account.php:388 ../../include/account.php:450 +#: ../../include/account.php:410 ../../include/account.php:472 #, php-format msgid "Registration details for %s" msgstr "Registrierungsdetails für %s" -#: ../../include/account.php:461 +#: ../../include/account.php:483 msgid "Account approved." msgstr "Nutzerkonto bestätigt." -#: ../../include/account.php:501 +#: ../../include/account.php:523 #, php-format msgid "Registration revoked for %s" msgstr "Registrierung für %s wurde widerrufen" -#: ../../include/account.php:780 ../../include/account.php:782 +#: ../../include/account.php:802 ../../include/account.php:804 msgid "Click here to upgrade." msgstr "Klicke hier, um das Upgrade durchzuführen." -#: ../../include/account.php:788 +#: ../../include/account.php:810 msgid "This action exceeds the limits set by your subscription plan." msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." -#: ../../include/account.php:793 +#: ../../include/account.php:815 msgid "This action is not available under your subscription plan." msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." -#: ../../include/datetime.php:150 +#: ../../include/datetime.php:134 msgid "Birthday" msgstr "Geburtstag" -#: ../../include/datetime.php:152 +#: ../../include/datetime.php:134 msgid "Age: " msgstr "Alter:" -#: ../../include/datetime.php:154 +#: ../../include/datetime.php:134 msgid "YYYY-MM-DD or MM-DD" msgstr "JJJJ-MM-TT oder MM-TT" -#: ../../include/datetime.php:298 +#: ../../include/datetime.php:238 msgid "less than a second ago" msgstr "Vor weniger als einer Sekunde" -#: ../../include/datetime.php:316 +#: ../../include/datetime.php:256 #, php-format msgctxt "e.g. 22 hours ago, 1 minute ago" msgid "%1$d %2$s ago" msgstr "vor %1$d %2$s" -#: ../../include/datetime.php:327 +#: ../../include/datetime.php:267 msgctxt "relative_date" msgid "year" msgid_plural "years" msgstr[0] "Jahr" msgstr[1] "Jahre" -#: ../../include/datetime.php:330 +#: ../../include/datetime.php:270 msgctxt "relative_date" msgid "month" msgid_plural "months" msgstr[0] "Monat" msgstr[1] "Monate" -#: ../../include/datetime.php:333 +#: ../../include/datetime.php:273 msgctxt "relative_date" msgid "week" msgid_plural "weeks" msgstr[0] "Woche" msgstr[1] "Wochen" -#: ../../include/datetime.php:336 +#: ../../include/datetime.php:276 msgctxt "relative_date" msgid "day" msgid_plural "days" msgstr[0] "Tag" msgstr[1] "Tage" -#: ../../include/datetime.php:339 +#: ../../include/datetime.php:279 msgctxt "relative_date" msgid "hour" msgid_plural "hours" msgstr[0] "Stunde" msgstr[1] "Stunden" -#: ../../include/datetime.php:342 +#: ../../include/datetime.php:282 msgctxt "relative_date" msgid "minute" msgid_plural "minutes" msgstr[0] "Minute" msgstr[1] "Minuten" -#: ../../include/datetime.php:345 +#: ../../include/datetime.php:285 msgctxt "relative_date" msgid "second" msgid_plural "seconds" msgstr[0] "Sekunde" msgstr[1] "Sekunden" -#: ../../include/datetime.php:579 +#: ../../include/datetime.php:514 #, php-format msgid "%1$s's birthday" msgstr "%1$ss Geburtstag" -#: ../../include/datetime.php:580 +#: ../../include/datetime.php:515 #, php-format msgid "Happy Birthday %1$s" msgstr "Alles Gute zum Geburtstag, %1$s" -#: ../../include/nav.php:98 +#: ../../include/nav.php:96 msgid "Remote authentication" msgstr "Über Konto auf anderem Server einloggen" -#: ../../include/nav.php:98 +#: ../../include/nav.php:96 msgid "Click to authenticate to your home hub" msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" -#: ../../include/nav.php:105 -msgid "Network Activity" -msgstr "Netzwerk-Aktivitäten" - -#: ../../include/nav.php:107 -msgid "Mark all activity notifications seen" -msgstr "Alle Benachrichtigungen als gesehen markieren" - -#: ../../include/nav.php:109 -msgid "Channel home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:110 -msgid "View your channel home" -msgstr "Zeige Deine Kanalseite an" - -#: ../../include/nav.php:111 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:116 -msgid "Registrations" -msgstr "Registrierungen" - -#: ../../include/nav.php:119 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:120 -msgid "View all notifications" -msgstr "Alle Benachrichtigungen ansehen" - -#: ../../include/nav.php:121 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" - -#: ../../include/nav.php:123 -msgid "Private mail" -msgstr "Persönliche Mail" - -#: ../../include/nav.php:124 -msgid "View your private messages" -msgstr "Zeige Deine persönlichen Nachrichten an" - -#: ../../include/nav.php:125 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" - -#: ../../include/nav.php:131 -msgid "Event Calendar" -msgstr "Terminkalender" - -#: ../../include/nav.php:136 ../../include/nav.php:222 +#: ../../include/nav.php:102 ../../include/nav.php:190 msgid "Manage Your Channels" msgstr "Verwalte Deine Kanäle" -#: ../../include/nav.php:139 ../../include/nav.php:224 +#: ../../include/nav.php:105 ../../include/nav.php:192 msgid "Account/Channel Settings" msgstr "Konto-/Kanal-Einstellungen" -#: ../../include/nav.php:145 ../../include/nav.php:174 +#: ../../include/nav.php:111 ../../include/nav.php:140 msgid "End this session" msgstr "Beende diese Sitzung" -#: ../../include/nav.php:148 +#: ../../include/nav.php:114 msgid "Your profile page" msgstr "Deine Profilseite" -#: ../../include/nav.php:151 +#: ../../include/nav.php:117 msgid "Manage/Edit profiles" msgstr "Profile verwalten" -#: ../../include/nav.php:153 -msgid "Edit your profile" -msgstr "Profil bearbeiten" - -#: ../../include/nav.php:160 ../../include/nav.php:164 +#: ../../include/nav.php:126 ../../include/nav.php:130 msgid "Sign in" msgstr "Anmelden" -#: ../../include/nav.php:189 +#: ../../include/nav.php:157 msgid "Take me home" msgstr "Bringe mich nach Hause (eigener Kanal)" -#: ../../include/nav.php:191 +#: ../../include/nav.php:159 msgid "Log me out of this site" msgstr "Logge mich von dieser Seite aus" -#: ../../include/nav.php:196 +#: ../../include/nav.php:164 msgid "Create an account" msgstr "Erzeuge ein Konto" -#: ../../include/nav.php:208 +#: ../../include/nav.php:176 msgid "Help and documentation" msgstr "Hilfe und Dokumentation" -#: ../../include/nav.php:211 +#: ../../include/nav.php:179 msgid "Search site @name, #tag, ?docs, content" msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" -#: ../../include/nav.php:231 +#: ../../include/nav.php:199 msgid "Site Setup and Configuration" msgstr "Seiten-Einrichtung und -Konfiguration" -#: ../../include/nav.php:322 +#: ../../include/nav.php:290 msgid "@name, #tag, ?doc, content" msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" -#: ../../include/nav.php:323 +#: ../../include/nav.php:291 msgid "Please wait..." msgstr "Bitte warten..." -#: ../../include/nav.php:329 +#: ../../include/nav.php:297 msgid "Add Apps" msgstr "Apps hinzufügen" -#: ../../include/nav.php:330 +#: ../../include/nav.php:298 msgid "Arrange Apps" msgstr "Apps anordnen" -#: ../../include/nav.php:331 +#: ../../include/nav.php:299 msgid "Toggle System Apps" msgstr "System-Apps umschalten" @@ -13730,19 +14004,23 @@ msgstr "%1$s hat %2$s auf %3$s veröffentlicht" msgid "Upload New Photos" msgstr "Neue Fotos hochladen" -#: ../../include/zot.php:675 +#: ../../include/zot.php:767 msgid "Invalid data packet" msgstr "Ungültiges Datenpaket" -#: ../../include/zot.php:702 +#: ../../include/zot.php:794 msgid "Unable to verify channel signature" msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/zot.php:2409 +#: ../../include/zot.php:2529 #, php-format msgid "Unable to verify site signature for %s" msgstr "Kann die Signatur der Seite von %s nicht verifizieren" +#: ../../include/zot.php:4180 +msgid "invalid target signature" +msgstr "Ungültige Signatur des Ziels" + #: ../../include/group.php:22 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -13786,7 +14064,7 @@ msgstr "Ausgeloggt." msgid "Email validation is incomplete. Please check your email." msgstr "E-Mail-Bestätigung nicht abgeschlossen. Bitte prüfe Deine E-Mails (ggf. Spam-Filterung mit berücksichtigen)." -#: ../../include/auth.php:278 +#: ../../include/auth.php:279 msgid "Failed authentication" msgstr "Authentifizierung fehlgeschlagen" diff --git a/view/de-de/hstrings.php b/view/de-de/hstrings.php index e87f660f0..a96dd02b7 100644 --- a/view/de-de/hstrings.php +++ b/view/de-de/hstrings.php @@ -71,9 +71,8 @@ App::$strings["2. Enter my \$Projectname network address into the site searchbar App::$strings["or visit"] = "oder besuche"; App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; App::$strings["Submit"] = "Absenden"; -App::$strings["Cards"] = "Karten"; -App::$strings["Add Article"] = "Artikel hinzufügen"; App::$strings["Articles"] = "Artikel"; +App::$strings["Add Article"] = "Artikel hinzufügen"; App::$strings["Item not found"] = "Element nicht gefunden"; App::$strings["Layout Name"] = "Layout-Name"; App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)"; @@ -151,7 +150,8 @@ App::$strings["You may also export your posts and conversations for a particular App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; -App::$strings["Welcome to hubzilla!"] = "Willkommen bei Hubzilla!"; +App::$strings["Welcome to Hubzilla!"] = "Willkommen bei Hubzilla!"; +App::$strings["You have got no unseen posts..."] = "Du hast keine ungelesenen Beiträge..."; App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert."; App::$strings["Search"] = "Suche"; App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; @@ -282,6 +282,7 @@ App::$strings["Read more about roles"] = "Mehr Informationen über Rollen"; App::$strings["Create Channel"] = "Einen neuen Kanal anlegen"; App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen."; App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; +App::$strings["Validate"] = "Überprüfe"; App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden."; App::$strings["Remove This Channel"] = "Diesen Kanal löschen"; App::$strings["WARNING: "] = "WARNUNG: "; @@ -319,7 +320,7 @@ App::$strings["Database Login Password"] = "Datenbank-Passwort"; App::$strings["Database Name"] = "Datenbankname"; App::$strings["Database Type"] = "Datenbanktyp"; App::$strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Kontos muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; App::$strings["Website URL"] = "Webseiten-URL"; App::$strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; App::$strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; @@ -412,10 +413,10 @@ App::$strings["Executing %s failed. Check system logs."] = "Ausführen von %s fe App::$strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; App::$strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; -App::$strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; App::$strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; App::$strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; App::$strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; +App::$strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; App::$strings["Item not found."] = "Element nicht gefunden."; App::$strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; App::$strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; @@ -542,6 +543,7 @@ App::$strings["Used to provide a member experience matched to technical comfort App::$strings["Lock the technical skill level setting"] = "Sperre die technische Qualifikationsstufe"; App::$strings["Members can set their own technical comfort level by default"] = "Benutzer können standardmäßig ihre eigene technische Qualifikationsstufe einstellen"; App::$strings["Banner/Logo"] = "Banner/Logo"; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Ungefiltertes HTML/CSS/JS ist erlaubt"; App::$strings["Administrator Information"] = "Administrator-Informationen"; App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; App::$strings["Site Information"] = "Seiteninformationen"; @@ -558,6 +560,8 @@ App::$strings["Maximum size in bytes of uploaded images. Default is 0, which mea App::$strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; App::$strings["Invitation only"] = "Nur mit Einladung"; App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden."; +App::$strings["Minimum age"] = "Mindestalter"; +App::$strings["Minimum age (in years) for who may register on this site."] = "Mindestalter (in Jahren) für alle, die sich auf dieser Website anmelden möchten."; App::$strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; App::$strings["Register text"] = "Registrierungstext"; App::$strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; @@ -575,6 +579,10 @@ App::$strings["Force publish"] = "Veröffentlichung erzwingen"; App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; App::$strings["Import Public Streams"] = "Öffentliche Beiträge importieren"; App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert."; +App::$strings["Site only Public Streams"] = "Öffentlichen Beitragsstrom auf diesen Server beschränken"; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Erlaubt den Zugriff auf öffentliche Beiträge von ausschließlich dieser Website (diesem Server), wenn \"Öffentliche Beiträge importieren\" ausgeschaltet ist."; +App::$strings["Allow anybody on the internet to access the Public streams"] = "Allen im Internet Zugriff auf den öffentlichen Beitragsstrom erlauben"; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Deaktiviert die erforderliche Authentifizierung vor dem Ansehen. Warnung: Diese Inhalte sind nicht moderiert."; App::$strings["Login on Homepage"] = "Log-in auf der Startseite"; App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden."; App::$strings["Enable context help"] = "Kontext-Hilfe aktivieren"; @@ -604,6 +612,12 @@ App::$strings["Maximum Load Average"] = "Maximales Load Average"; App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; App::$strings["Expiration period in days for imported (grid/network) content"] = "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen"; App::$strings["0 for no expiration of imported content"] = "0 = keine Löschung importierter Inhalte"; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Öffentliche Server: Optionale Einstiegsseite (landing page) für neue Mitglieder vor deren Anmeldung"; +App::$strings["Create this page first. Default is %s/register"] = "Erstelle zunächst die entsprechende Seite. Standard ist %s/register"; +App::$strings["Page to display after creating a new channel"] = "Seite, die nach Erstellung eines neuen Kanals angezeigt werden soll"; +App::$strings["Recommend: profiles, go, or settings"] = "Empfohlen: profiles, go oder settings"; +App::$strings["Optional: site location"] = "Optional: Standort der Website"; +App::$strings["Region or country"] = "Region oder Land"; App::$strings["New Profile Field"] = "Neues Profilfeld"; App::$strings["Field nickname"] = "Kurzname für das Feld"; App::$strings["System name of field"] = "Systemname des Feldes"; @@ -754,8 +768,8 @@ App::$strings["If your channel is mirrored to multiple hubs, set this to your pr App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen anzeigen"; App::$strings["Notify me of events this many days in advance"] = "Benachrichtige mich zu Terminen so viele Tage im Voraus"; App::$strings["Must be greater than 0"] = "Muss größer als 0 sein"; -App::$strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Seitenart-Einstellungen"; -App::$strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen"; +App::$strings["Advanced Account/Page Type Settings"] = "Erweiterte Konten- und Seitenart-Einstellungen"; +App::$strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Kontos unter speziellen Umständen"; App::$strings["Miscellaneous Settings"] = "Sonstige Einstellungen"; App::$strings["Default photo upload folder"] = "Voreingestellter Ordner für hochgeladene Fotos"; App::$strings["%Y - current year, %m - current month"] = "%Y - aktuelles Jahr, %m - aktueller Monat"; @@ -790,16 +804,18 @@ App::$strings["Enter New Password"] = "Gib ein neues Passwort ein"; App::$strings["Confirm New Password"] = "Bestätige das neue Passwort"; App::$strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"; App::$strings["Your technical skill level"] = "Deine technische Qualifikationsstufe"; -App::$strings["Used to provide a member experience matched to your comfort level"] = "Dies wird verwendet, um Dir eine Benutzererfahrung passend zu Deiner technischen Qualifikationsstufe zu bieten."; +App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Dies wird verwendet, um Dir eine Benutzererfahrung sowie zusätzliche Funktionen passend zu Deiner technischen Qualifikationsstufe zu bieten (Bedienkomfort beim Umgang mit Anwendungen)."; App::$strings["Remove Account"] = "Konto entfernen"; App::$strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; App::$strings["Affinity Slider settings updated."] = "Die Beziehungsgrad-Schieberegler-Einstellungen wurden aktualisiert."; App::$strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert"; App::$strings["Default maximum affinity level"] = "Voreinstellung für maximalen Beziehungsgrad"; +App::$strings["0-99 default 99"] = "0-99 - Standard 99"; App::$strings["Default minimum affinity level"] = "Voreinstellung für minimalen Beziehungsgrad"; +App::$strings["0-99 - default 0"] = "0-99 - Standard 0"; App::$strings["Affinity Slider Settings"] = "Beziehungsgrad-Schieberegler-Einstellungen"; -App::$strings["Feature/Addon Settings"] = "Funktions-/Addon-Einstellungen"; -App::$strings["No special theme for mobile devices"] = "Kein spezielles Design für mobile Geräte"; +App::$strings["Addon Settings"] = "Addon-Einstellungen"; +App::$strings["Please save/submit changes to any panel before opening another."] = "Bitte speichere alle Änderungen in diesem Bereich, bevor Du einen anderen öffnest."; App::$strings["%s - (Experimental)"] = "%s – (experimentell)"; App::$strings["Display Settings"] = "Anzeige-Einstellungen"; App::$strings["Theme Settings"] = "Design-Einstellungen"; @@ -807,7 +823,6 @@ App::$strings["Custom Theme Settings"] = "Benutzerdefinierte Design-Einstellunge App::$strings["Content Settings"] = "Inhaltseinstellungen"; App::$strings["Display Theme:"] = "Anzeige-Design:"; App::$strings["Select scheme"] = "Schema wählen"; -App::$strings["Mobile Theme:"] = "Design für mobile Geräte:"; App::$strings["Preload images before rendering the page"] = "Bilder im voraus laden, bevor die Seite angezeigt wird"; App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird"; App::$strings["Enable user zoom on mobile devices"] = "Zoom auf Mobilgeräten aktivieren"; @@ -1082,10 +1097,10 @@ App::$strings["Photo not available."] = "Foto nicht verfügbar."; App::$strings["Upload File:"] = "Datei hochladen:"; App::$strings["Select a profile:"] = "Wähle ein Profil:"; App::$strings["Use Photo for Profile"] = "Foto für Profil verwenden"; -App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; +App::$strings["Change Profile Photo"] = "Profilfoto ändern"; App::$strings["Use"] = "Verwenden"; -App::$strings["skip this step"] = "diesen Schritt überspringen"; -App::$strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; +App::$strings["Use a photo from your albums"] = "Ein Foto aus meinen Alben verwenden"; +App::$strings["Select existing photo"] = "Wähle ein vorhandenes Foto aus"; App::$strings["Crop Image"] = "Bild zuschneiden"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; App::$strings["Done Editing"] = "Bearbeitung fertigstellen"; @@ -1164,6 +1179,7 @@ App::$strings["Connection: %s"] = "Verbindung: %s"; App::$strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; App::$strings["Connection requests will be approved without your interaction"] = "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist."; App::$strings["Permission role"] = "Berechtigungsrolle"; +App::$strings["Loading"] = "Lädt..."; App::$strings["Add permission role"] = "Berechtigungsrolle hinzufügen"; App::$strings["This connection's primary address is"] = "Die Hauptadresse der Verbindung ist"; App::$strings["Available locations:"] = "Verfügbare Klone:"; @@ -1227,7 +1243,13 @@ App::$strings["Help"] = "Hilfe"; App::$strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; App::$strings["Layout Description"] = "Layout-Beschreibung"; App::$strings["Download PDL file"] = "PDL-Datei herunterladen"; +App::$strings["Please refresh page"] = "Bitte die Seite neu laden"; App::$strings["Unknown error"] = "Unbekannter Fehler"; +App::$strings["Token verification failed."] = "Überprüfung des Verifizierungscodes fehlgeschlagen."; +App::$strings["Email Verification Required"] = "Email-Überprüfung erforderlich"; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Ein Verifizierungscode wurde an Deine Emailadresse versendet [%s]. Gib diesen Code hier ein, um die Überprüfung abzuschließen. Bedenke, dass die Zustellung der Mail einige Zeit dauern kann, und überprüfe ggf. auch Spam- und andere Filter-Ordner, falls die Nachricht nicht erscheint."; +App::$strings["Resend Email"] = "Email erneut versenden"; +App::$strings["Validation token"] = "Verifizierungscode"; App::$strings["Post not found."] = "Beitrag nicht gefunden."; App::$strings["post"] = "Beitrag"; App::$strings["comment"] = "Kommentar"; @@ -1319,6 +1341,21 @@ App::$strings["My other channels"] = "Meine anderen Kanäle"; App::$strings["Communications"] = "Kommunikation"; App::$strings["Profile Image"] = "Profilfoto:"; App::$strings["Edit Profiles"] = "Profile bearbeiten"; +App::$strings["This page is available only to site members"] = "Diese Seite ist nur für Mitglieder verfügbar"; +App::$strings["Welcome"] = "Willkommen"; +App::$strings["What would you like to do?"] = "Was möchtest Du gerne tun?"; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Bitte speichere diese Seite in Deinen Lesezeichen, falls Du später zu ihr zurückkehren möchtest."; +App::$strings["Upload a profile photo"] = "Ein Profilfoto hochladen"; +App::$strings["Upload a cover photo"] = "Ein Titelbild hochladen"; +App::$strings["Edit your default profile"] = "Dein Standardprofil bearbeiten"; +App::$strings["View friend suggestions"] = "Freundschafts- und Verbindungsvorschläge ansehen"; +App::$strings["View the channel directory"] = "Das Kanalverzeichnis ansehen"; +App::$strings["View/edit your channel settings"] = "Deine Kanaleinstellungen ansehen/bearbeiten"; +App::$strings["View the site or project documentation"] = "Die Website-/Projektdokumentation ansehen"; +App::$strings["Visit your channel homepage"] = "Deine Kanal-Startseite aufrufen"; +App::$strings["View your connections and/or add somebody whose address you already know"] = "Deine Verbindungen ansehen und/oder jemanden hinzufügen, dessen Kanal-Adresse Du bereits kennst"; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Deinen persönlichen Beitragsstrom ansehen (dieser kann leer sein, bis Du ein paar Verbindungen hinzugefügt hast)"; +App::$strings["View the public stream. Warning: this content is not moderated"] = "Den öffentlichen Beitragsstrom ansehen. Warnung: Diese Inhalte sind nicht moderiert."; App::$strings["Page link"] = "Seiten-Link"; App::$strings["Edit Webpage"] = "Webseite bearbeiten"; App::$strings["Create a new channel"] = "Neuen Kanal anlegen"; @@ -1330,6 +1367,7 @@ App::$strings["Make Default"] = "Zum Standard machen"; App::$strings["%d new messages"] = "%d neue Nachrichten"; App::$strings["%d new introductions"] = "%d neue Vorstellungen"; App::$strings["Delegated Channel"] = "Delegierte Kanäle"; +App::$strings["Cards"] = "Karten"; App::$strings["Add Card"] = "Karte hinzufügen"; App::$strings["This directory server requires an access token"] = "Dieser Verzeichnisserver benötigt einen Zugriffstoken"; App::$strings["About this site"] = "Über diese Seite"; @@ -1504,8 +1542,8 @@ App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; App::$strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; App::$strings["Registration successful. Continue to create your first channel..."] = "Registrierung erfolgreich. Fahre fort, indem Du Deinen ersten Kanal anlegst..."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; App::$strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; App::$strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; App::$strings["Registration on this hub is disabled."] = "Die Registrierung auf diesem Hub ist nicht möglich."; @@ -1522,7 +1560,7 @@ App::$strings["no"] = "nein"; App::$strings["yes"] = "ja"; App::$strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; App::$strings["Register"] = "Registrieren"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Absenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte Deinen Posteingang auf neue Mails mit entsprechenden Hinweisen."; +App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Diese Website erfordert eine Email-Bestätigung. Bitte prüfe Deine Emails nach Ausfüllen und Absenden des Formulars, um weitere Hinweise zu bekommen."; App::$strings["Cover Photos"] = "Cover Foto"; App::$strings["female"] = "weiblich"; App::$strings["%1\$s updated her %2\$s"] = "%1\$s hat ihr %2\$s aktualisiert"; @@ -1530,7 +1568,7 @@ App::$strings["male"] = "männlich"; App::$strings["%1\$s updated his %2\$s"] = "%1\$s hat sein %2\$s aktualisiert"; App::$strings["%1\$s updated their %2\$s"] = "%1\$s hat sein/ihr %2\$s aktualisiert"; App::$strings["cover photo"] = "Cover Foto"; -App::$strings["Upload Cover Photo"] = "Cover Foto hochladen"; +App::$strings["Change Cover Photo"] = "Titelbild ändern"; App::$strings["Documentation Search"] = "Suche in der Dokumentation"; App::$strings["About"] = "Über"; App::$strings["Administrators"] = "Administratoren"; @@ -1568,6 +1606,8 @@ App::$strings["Show in your contacts shared folder"] = "Im geteilten Ordner Dein App::$strings["No channel."] = "Kein Kanal."; App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; App::$strings["View Common Connections"] = "Zeige gemeinsame Verbindungen"; +App::$strings["Email verification resent"] = "Email zur Verifizierung wurde erneut versendet"; +App::$strings["Unable to resend email verification message."] = "Erneutes Versenden der Email zur Verifizierung nicht möglich."; App::$strings["No connections."] = "Keine Verbindungen."; App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; App::$strings["View Connections"] = "Verbindungen anzeigen"; @@ -1684,15 +1724,21 @@ App::$strings["\$Projectname Notification"] = "\$Projectname-Benachrichtigung"; App::$strings["\$projectname"] = "\$projectname"; App::$strings["Thank You,"] = "Danke."; App::$strings["%s Administrator"] = "der Administrator von %s"; +App::$strings["This email was sent by %1\$s at %2\$s."] = "Diese Email wurde von %1\$s auf %2\$s gesendet."; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine Benachrichtigungseinstellungen unter folgendem Link an: %s"; +App::$strings["To stop receiving these messages, please adjust your %s."] = "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine %s an."; App::$strings["%s "] = "%s "; App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Benachrichtigung] Neue Mail empfangen auf %s"; App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat Dir eine private Nachricht auf %3\$s gesendet."; App::$strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt."; App::$strings["a private message"] = "eine private Nachricht"; App::$strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]einen %4\$s[/zrl] kommentiert"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen %4\$s[/zrl] kommentiert"; +App::$strings["commented on"] = "kommentierte"; +App::$strings["liked"] = "gefiel"; +App::$strings["disliked"] = "missfiel"; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]a %5\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s]ein %5\$s[/zrl]"; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]%5\$s's %6\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s]%5\$s's %6\$s[/zrl]"; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]your %5\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s]Dein %5\$s[/zrl]"; App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Benachrichtigung] Moderierter Kommantar in Unterhaltung #%1\$d von %2\$s"; App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s"; App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat eine Unterhaltung kommentiert, der Du folgst."; @@ -1727,6 +1773,8 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Bitte b App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Benachrichtigung]"; App::$strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; App::$strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; +App::$strings["edited a post dated %s"] = "hat einen Beitrag vom %s bearbeitet"; +App::$strings["edited a comment dated %s"] = "hat einen Kommentar vom %s bearbeitet"; App::$strings["Wiki updated successfully"] = "Wiki erfolgreich aktualisiert"; App::$strings["Wiki files deleted successfully"] = "Wiki-Dateien erfolgreich gelöscht"; App::$strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; @@ -1865,6 +1913,18 @@ App::$strings["Suggestions"] = "Vorschläge"; App::$strings["See more..."] = "Mehr anzeigen …"; App::$strings["Saved Folders"] = "Gespeicherte Ordner"; App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; +App::$strings["Profile Creation"] = "Profilerstellung"; +App::$strings["Upload profile photo"] = "Profilfoto hochladen"; +App::$strings["Upload cover photo"] = "Titelbild hochladen"; +App::$strings["Edit your profile"] = "Profil bearbeiten"; +App::$strings["Find and Connect with others"] = "Finden und Verbinden von/mit Anderen"; +App::$strings["Manage your connections"] = "Deine Verbindungen verwalten"; +App::$strings["Communicate"] = "Kommunizieren"; +App::$strings["View your channel homepage"] = "Deine Kanal-Startseite ansehen"; +App::$strings["View your network stream"] = "Deine Netzwerk-Aktivitäten ansehen"; +App::$strings["Documentation"] = "Dokumentation"; +App::$strings["View public stream. Warning: not moderated"] = "Öffentliche Beitragsaktivitäten ansehen. Warnung: Diese Inhalte sind nicht moderiert."; +App::$strings["New Member Links"] = "Links für neue Mitglieder"; App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; App::$strings["Inspect queue"] = "Warteschlange kontrollieren"; App::$strings["DB updates"] = "DB-Aktualisierungen"; @@ -1873,7 +1933,7 @@ App::$strings["Plugin Features"] = "Plug-In Funktionen"; App::$strings["Account settings"] = "Konto-Einstellungen"; App::$strings["Channel settings"] = "Kanal-Einstellungen"; App::$strings["Additional features"] = "Zusätzliche Funktionen"; -App::$strings["Feature/Addon settings"] = "Plugin-Einstellungen"; +App::$strings["Addon settings"] = "Addon-Einstellungen"; App::$strings["Display settings"] = "Anzeige-Einstellungen"; App::$strings["Manage locations"] = "Klon-Adressen verwalten"; App::$strings["Export channel"] = "Kanal exportieren"; @@ -1886,6 +1946,7 @@ App::$strings["New Network Activity Notifications"] = "Benachrichtigungen für n App::$strings["View your network activity"] = "Zeige Deine Netzwerk-Aktivitäten"; App::$strings["Mark all notifications read"] = "Alle Benachrichtigungen als gesehen markieren"; App::$strings["Show new posts only"] = "Zeige nur neue Beiträge"; +App::$strings["Filter by name"] = "Nach Namen filtern"; App::$strings["New Home Activity"] = "Neue Kanal-Aktivitäten"; App::$strings["New Home Activity Notifications"] = "Benachrichtigungen für neue Kanal-Aktivitäten"; App::$strings["View your home activity"] = "Zeige Deine Kanal-Aktivitäten"; @@ -1909,7 +1970,7 @@ App::$strings["New Registrations"] = "Neue Registrierungen"; App::$strings["New Registrations Notifications"] = "Benachrichtigungen für neue Registrierungen"; App::$strings["Public Stream Notifications"] = "Benachrichtigungen für öffentlichen Beitrags-Stream"; App::$strings["View the public stream"] = "Zeige öffentlichen Beitrags-Stream"; -App::$strings["Loading"] = "Lädt..."; +App::$strings["Sorry, you have got no notifications at the moment"] = "Du hast momentan keine Benachrichtigungen"; App::$strings["Source channel not found."] = "Quellkanal nicht gefunden."; App::$strings["Create an account to access services and applications"] = "Erstelle ein Konto, um auf Dienste und Anwendungen zugreifen zu können."; App::$strings["Logout"] = "Abmelden"; @@ -1917,7 +1978,6 @@ App::$strings["Login/Email"] = "Anmelden/E-Mail"; App::$strings["Password"] = "Kennwort"; App::$strings["Remember me"] = "Angaben speichern"; App::$strings["Forgot your password?"] = "Passwort vergessen?"; -App::$strings["toggle mobile"] = "auf/von mobile Ansicht wechseln"; App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Webseiten-SSL-Fehler für %s"; App::$strings["Website SSL certificate is not valid. Please correct."] = "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben."; App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Cron-Jobs laufen nicht auf %s"; @@ -2005,11 +2065,11 @@ App::$strings["Preferred IDs Message"] = "Nachricht für bevorzugte IDs"; App::$strings["Message to display above preferred results."] = "Nachricht, die über den Ergebnissen mit den bevorzugten IDs angezeigt werden soll."; App::$strings["Uploaded by: "] = "Hochgeladen von: "; App::$strings["Drawn by: "] = "Gezeichnet von: "; +App::$strings["Use this image"] = ""; App::$strings["Or select from a free OpenClipart.org image:"] = "Oder wähle ein freies Bild von OpenClipart.org:"; App::$strings["Search Term"] = "Suchbegriff"; App::$strings["Unknown error. Please try again later."] = "Unbekannter Fehler. Bitte versuchen Sie es später erneut."; App::$strings["Profile photo updated successfully."] = "Profilfoto erfolgreich aktualisiert."; -App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels"; App::$strings["Flag Adult Photos"] = "Nicht jugendfreie Fotos markieren"; App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Stellt eine Option zum Verstecken von Fotos mit unangemessenen Inhalten in der Standard-Albumansicht bereit"; App::$strings["Post to WordPress"] = "Auf WordPress posten"; @@ -2046,6 +2106,8 @@ App::$strings["Dreamwidth username"] = "Dreamwidth-Benutzername"; App::$strings["Dreamwidth password"] = "Dreamwidth-Passwort"; App::$strings["Post to Dreamwidth by default"] = "Standardmäßig auf auf Dreamwidth posten"; App::$strings["Dreamwidth Post Settings"] = "Dreamwidth-Beitragseinstellungen"; +App::$strings["New registration"] = ""; +App::$strings["Message sent to %s. New account registration: %s"] = "Nachricht gesendet an %s. Neue Kontoregistrierung: %s"; App::$strings["Hubzilla Directory Stats"] = "Hubzilla-Verzeichnisstatistiken"; App::$strings["Total Hubs"] = "Hubs insgesamt"; App::$strings["Hubzilla Hubs"] = "Hubzilla Hubs"; @@ -2132,8 +2194,8 @@ App::$strings["kiss"] = "küssen"; App::$strings["kissed"] = "geküsst"; App::$strings["tempt"] = "verlocken"; App::$strings["tempted"] = "verlockt"; -App::$strings["raise eyebrows at"] = ""; -App::$strings["raised their eyebrows at"] = ""; +App::$strings["raise eyebrows at"] = "Augenbrauen hochziehen"; +App::$strings["raised their eyebrows at"] = "zog die Augenbrauen hoch"; App::$strings["insult"] = "beleidigen"; App::$strings["insulted"] = "beleidigt"; App::$strings["praise"] = "loben"; @@ -2152,8 +2214,8 @@ App::$strings["fuck"] = "ficken"; App::$strings["fucked"] = "gefickt"; App::$strings["bonk"] = ""; App::$strings["bonked"] = ""; -App::$strings["declare undying love for"] = ""; -App::$strings["declared undying love for"] = ""; +App::$strings["declare undying love for"] = "erkläre unsterbliche Liebe"; +App::$strings["declared undying love for"] = "erklärte unsterbliche Liebe"; App::$strings["Diaspora Protocol Settings updated."] = "Diaspora Protokoll Einstellungen aktualisiert"; App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Das Diaspora-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein."; App::$strings["Enable the Diaspora protocol for this channel"] = "Das Diaspora Protokoll für diesen Kanal aktivieren"; @@ -2164,8 +2226,8 @@ App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Ve App::$strings["Diaspora Protocol Settings"] = "Diaspora Protokoll Einstellungen"; App::$strings["No username found in import file."] = "Es wurde kein Nutzername in der importierten Datei gefunden."; App::$strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; -App::$strings["Your account on %s will expire in a few days."] = "Dein Account auf %s wird in ein paar Tagen ablaufen."; -App::$strings["Your $Productname test account is about to expire."] = "Dein $Productname Test-Account wird bald auslaufen."; +App::$strings["Your account on %s will expire in a few days."] = "Dein Konto auf %s wird in ein paar Tagen ablaufen."; +App::$strings["Your $Productname test account is about to expire."] = "Dein $Productname Test-Konto wird bald auslaufen."; App::$strings["Enable Rainbowtag"] = "Rainbowtag aktivieren"; App::$strings["Rainbowtag Settings"] = "Rainbowtag-Einstellungen"; App::$strings["Rainbowtag Settings saved."] = "Rainbowtag-Einstellungen gespeichert."; @@ -2187,9 +2249,9 @@ App::$strings["Select default avatar image if none was found at Gravatar. See RE App::$strings["Rating of images"] = "Bewertungen der Bilder"; App::$strings["Select the appropriate avatar rating for your site. See README"] = ""; App::$strings["Gravatar settings updated."] = "Gravatar-Einstellungen aktualisiert."; -App::$strings["Hubzilla File Storage Import"] = ""; -App::$strings["This will import all your cloud files from another server."] = ""; -App::$strings["Hubzilla Server base URL"] = ""; +App::$strings["Hubzilla File Storage Import"] = "Hubzilla-Datenspeicher-Import"; +App::$strings["This will import all your cloud files from another server."] = "Hiermit werden alle Deine Cloud-Dateien von einem anderen Server importiert."; +App::$strings["Hubzilla Server base URL"] = "Basis-URL des Habzilla-Servers"; App::$strings["Since modified date yyyy-mm-dd"] = ""; App::$strings["Until modified date yyyy-mm-dd"] = ""; App::$strings["Recent Channel/Profile Viewers"] = "Kürzliche Kanal/Profil Besucher"; @@ -2208,6 +2270,7 @@ App::$strings["Mail sent."] = "Mail gesendet."; App::$strings["Sending of mail failed."] = "Senden der E-Mail fehlgeschlagen."; App::$strings["Mail Test"] = "Mail Test"; App::$strings["Message subject"] = "Betreff der Nachricht"; +App::$strings["Use markdown for editing posts"] = "Verwende Markdown zum Bearbeiten von Beiträgen"; App::$strings["View Larger"] = "Größer anzeigen"; App::$strings["Tile Server URL"] = "Kachelserver-URL"; App::$strings["A list of public tile servers"] = "Eine Liste öffentlicher Kachelserver"; @@ -2258,7 +2321,7 @@ App::$strings["Send public postings to Hubzilla channel by default"] = ""; App::$strings["Hubzilla API Path"] = "Hubzilla-API-Pfad"; App::$strings["Hubzilla login name"] = "Hubzilla-Anmeldename"; App::$strings["Hubzilla channel name"] = "Hubzilla-Kanalname"; -App::$strings["Hubzilla Crosspost Settings"] = ""; +App::$strings["Hubzilla Crosspost Settings"] = "Hubzilla Crosspost Einstellungen"; App::$strings["Logfile archive directory"] = "Verzeichnis der Logdatei"; App::$strings["Directory to store rotated logs"] = "Verzeichnis, in dem rotierte Logs gespeichert werden sollen"; App::$strings["Logfile size in bytes before rotating"] = "zu erreichende Logdateigröße in Bytes, bevor rotiert wird"; @@ -2269,12 +2332,12 @@ App::$strings["Friendica Server base URL"] = "BasisURL des Friendica Servers"; App::$strings["Friendica Login Username"] = "Friendica-Anmeldebenutzername"; App::$strings["Friendica Login Password"] = "Friendica-Anmeldepasswort"; App::$strings["ActivityPub"] = "ActivityPub"; -App::$strings["ActivityPub Protocol Settings updated."] = ""; +App::$strings["ActivityPub Protocol Settings updated."] = "ActivityPub Protokoll Einstellungen aktualisiert"; App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = ""; -App::$strings["Enable the ActivityPub protocol for this channel"] = ""; -App::$strings["Send multi-media HTML articles"] = ""; -App::$strings["Not supported by some microblog services such as Mastodon"] = ""; -App::$strings["ActivityPub Protocol Settings"] = ""; +App::$strings["Enable the ActivityPub protocol for this channel"] = "Aktiviere das ActivityPub Protokoll für diesen Kanal"; +App::$strings["Send multi-media HTML articles"] = "Multimedia HTML Artikel versenden"; +App::$strings["Not supported by some microblog services such as Mastodon"] = "Wird von einigen Microblogging-Plattformen wie Mastodon nicht unterstützt"; +App::$strings["ActivityPub Protocol Settings"] = "ActivityPub Protokoll Einstellungen"; App::$strings["Project Servers and Resources"] = "Projektserver und -ressourcen"; App::$strings["Project Creator and Tech Lead"] = "Projektersteller und Technischer Leiter"; App::$strings["Admin, developer, directorymin, support bloke"] = "Administrator, Entwickler, Verzeichnis Betreibender, Supportleistende"; @@ -2343,9 +2406,9 @@ App::$strings["Cancel GNU social Connection"] = "GNU social Verbindung trennen"; App::$strings["Currently connected to: "] = "Momentan verbunden mit:"; App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; App::$strings["Allow posting to GNU social"] = "Erlaube die Veröffentlichung bei GNU social"; -App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen GNU social Account veröffentlicht werden."; +App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen GNU social Konto veröffentlicht werden."; App::$strings["Post to GNU social by default"] = "Standardmäßig bei GNU social veröffentlichen"; -App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Wenn aktiv werden all deine öffentlichen Beiträge standardmäßig bei dem verbundenen GNU social Account veröffentlicht."; +App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Wenn aktiv werden all deine öffentlichen Beiträge standardmäßig bei dem verbundenen GNU social Konto veröffentlicht."; App::$strings["Clear OAuth configuration"] = "OAuth Konfiguration löschen"; App::$strings["GNU social Post Settings"] = "GNU social Einstellungen"; App::$strings["API URL"] = "API-URL"; @@ -2357,9 +2420,9 @@ App::$strings["Invalid game."] = "Ungültiges Spiel."; App::$strings["You are not a player in this game."] = "Sie sind kein Spieler in diesem Spiel."; App::$strings["You must be a local channel to create a game."] = "Um ein Spiel zu eröffnen, musst du ein lokaler Kanal sein"; App::$strings["You must select one opponent that is not yourself."] = "Du musst einen Gegner wählen, der nicht du selbst ist"; -App::$strings["You must select white or black."] = "Sie müssen weiß oder schwarz auswählen."; +App::$strings["Random color chosen."] = ""; App::$strings["Error creating new game."] = "Fehler beim Erstellen eines neuen Spiels."; -App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; +App::$strings["Requested channel is not available."] = "Angeforderter Kanal nicht verfügbar."; App::$strings["You must select a local channel /chess/channelname"] = "Du musst einen lokalen Kanal/Schach(Kanalnamen aufwählen"; App::$strings["Enable notifications"] = "Benachrichtigungen aktivieren"; App::$strings["Post to Twitter"] = "Bei Twitter veröffentlichen"; @@ -2370,9 +2433,11 @@ App::$strings["Log in with Twitter"] = "Mit Twitter anmelden"; App::$strings["Copy the PIN from Twitter here"] = "PIN von Twitter hier her kopieren"; App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Hinweis: Entsprechend Deiner Privatsphären-Einstellungen (Profil-Details vor nicht angemeldeten Besuchern verbergen?) kann ein ggf. zu Twitter geteilter Link Besucher auf eine leere Seite führen, die darüber informiert, dass der Zugriff zu Deinem Profil eingeschränkt ist."; App::$strings["Allow posting to Twitter"] = "Erlaube die Veröffentlichung bei Twitter"; -App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Account veröffentlicht werden."; +App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden."; +App::$strings["Twitter post length"] = ""; +App::$strings["Maximum tweet length"] = ""; App::$strings["Send public postings to Twitter by default"] = "Standardmäßig öffentliche Beiträge bei Twitter veröffentlichen"; -App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Account veröffentlicht werden."; +App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Wenn aktiv werden deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden."; App::$strings["Twitter Post Settings"] = "Twitter-Beitragseinstellungen"; App::$strings["Deactivate the feature"] = "Diese Funktion abschalten"; App::$strings["Hide the button and show the smilies directly."] = "Verstecke die Schaltfläche und zeige die Smilies direkt an."; @@ -2422,7 +2487,7 @@ App::$strings["If you see this icon you can be sure that the sender is who it sa App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "Vorsicht! Es kann sein, dass jemand versucht, eine Nachricht zu fälschen! Diese Nachricht muss nicht unbedingt vom angegebenen Absender stammen!"; App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

    You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

    You can also advance by pressing the return key"] = "Willkommen zu Hubzilla! Möchtest Du eine Tour der Benutzeroberfläche angezeigt bekommen?

    Du kannst zu jeder Zeit pausieren und fortsetzen, wo Du aufgehört hast, indem Du die Seite neu lädtst, oder zu einer anderen Seite springst.

    Du kannst auc durch das Drücken der Enter-Taste weitergehen."; App::$strings["Extended Identity Sharing"] = "Erweitertes Teilen von Identitäten"; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Hubzilla-Servern geteilt."; +App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit \$Projectname - Servern geteilt."; App::$strings["Three Dimensional Tic-Tac-Toe"] = "Dreidimensionales Tic-Tac-Toe"; App::$strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; App::$strings["New game"] = "Neues Spiel"; @@ -2489,7 +2554,7 @@ App::$strings["Mirror all public posts"] = "Öffentliche Beiträge spiegeln"; App::$strings["Pump.io Post Settings"] = "Pump.io-Beitragseinstellungen"; App::$strings["PumpIO Settings saved."] = "PumpIO-Einstellungen gespeichert."; App::$strings["An account has been created for you."] = "Ein Konto wurde für Sie erstellt."; -App::$strings["Authentication successful but rejected: account creation is disabled."] = "Authentifizierung war erfolgreich wurde aber abgewiesen! Das Anlegen von Accounts wurde deaktiviert."; +App::$strings["Authentication successful but rejected: account creation is disabled."] = "Authentifizierung war erfolgreich, wurde aber abgewiesen! Das Anlegen von Konten wurde deaktiviert."; App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Suche %1\$s (%2\$s)"; App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Search \$Projectname"] = "\$Projectname suchen"; @@ -2561,8 +2626,8 @@ App::$strings["Uncertain"] = "Ungewiss"; App::$strings["It's complicated"] = "Es ist kompliziert"; App::$strings["Don't care"] = "Interessiert mich nicht"; App::$strings["Ask me"] = "Frag mich mal"; -App::$strings["likes %1\$s's %2\$s"] = ""; -App::$strings["doesn't like %1\$s's %2\$s"] = ""; +App::$strings["likes %1\$s's %2\$s"] = "gefällt %1\$ss %2\$s"; +App::$strings["doesn't like %1\$s's %2\$s"] = "missfällt %1\$ss %2\$s"; App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; App::$strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; App::$strings["poked"] = "stupste"; @@ -2876,7 +2941,7 @@ App::$strings["__ctx:edit_activity__ Comment"] = "Kommentar"; App::$strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; App::$strings["Empty name"] = "Namensfeld leer"; App::$strings["Name too long"] = "Name ist zu lang"; -App::$strings["No account identifier"] = "Keine Account-Kennung"; +App::$strings["No account identifier"] = "Keine Konten-Kennung"; App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; App::$strings["Default Profile"] = "Standard-Profil"; @@ -2886,7 +2951,8 @@ App::$strings["Visible to everybody"] = "Für jeden sichtbar"; App::$strings["Gender:"] = "Geschlecht:"; App::$strings["Homepage:"] = "Homepage:"; App::$strings["Online Now"] = "gerade online"; -App::$strings["Trans"] = ""; +App::$strings["Change your profile photo"] = "Dein Profilfoto ändern"; +App::$strings["Trans"] = "Trans"; App::$strings["Like this channel"] = "Dieser Kanal gefällt mir"; App::$strings["j F, Y"] = "j. F Y"; App::$strings["j F"] = "j. F"; @@ -2929,7 +2995,7 @@ App::$strings["GNU-Social"] = "GNU-Social"; App::$strings["RSS/Atom"] = "RSS/Atom"; App::$strings["Diaspora"] = "Diaspora"; App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot!"; +App::$strings["Zot"] = "Zot"; App::$strings["LinkedIn"] = "LinkedIn"; App::$strings["XMPP/IM"] = "XMPP/IM"; App::$strings["MySpace"] = "MySpace"; @@ -2943,12 +3009,14 @@ App::$strings["Post permissions %s cannot be changed %s after a post is shared.< App::$strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; App::$strings["Image/photo"] = "Bild/Foto"; App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; -App::$strings["Install %1\$s element %2\$s"] = ""; +App::$strings["Install %1\$s element %2\$s"] = "Installiere %1\$s Element %2\$s"; App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; App::$strings["card"] = "Karte"; App::$strings["article"] = "Artikel"; App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; App::$strings["spoiler"] = "Spoiler"; +App::$strings["View article"] = "Artikel ansehen"; +App::$strings["View summary"] = "Zusammenfassung ansehen"; App::$strings["$1 wrote:"] = "$1 schrieb:"; App::$strings[" by "] = "von"; App::$strings[" on "] = "am"; @@ -2956,8 +3024,6 @@ App::$strings["Embedded content"] = "Eingebetteter Inhalt"; App::$strings["Embedding disabled"] = "Einbetten deaktiviert"; App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s heißt %2\$s willkommen"; App::$strings["General Features"] = "Allgemeine Funktionen"; -App::$strings["Multiple Profiles"] = "Mehrfachprofile"; -App::$strings["Ability to create multiple profiles"] = "Ermöglicht das Anlegen mehrerer Profile pro Kanal"; App::$strings["Advanced Profiles"] = "Erweiterte Profile"; App::$strings["Additional profile sections and selections"] = "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung"; App::$strings["Profile Import/Export"] = "Profil-Import/Export"; @@ -2968,21 +3034,33 @@ App::$strings["Provide a wiki for your channel"] = "Stelle ein Wiki in Deinem Ka App::$strings["Private Notes"] = "Private Notizen"; App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)"; App::$strings["Create personal planning cards"] = "Erstelle persönliche (Notiz-)Karten zur Planung/Koordination oder ähnlichen Zwecken"; +App::$strings["Create interactive articles"] = "Erstelle interaktive Artikel"; App::$strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; App::$strings["Change channels directly from within the navigation dropdown menu"] = "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü"; App::$strings["Photo Location"] = "Aufnahmeort"; App::$strings["If location data is available on uploaded photos, link this to a map."] = "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte"; App::$strings["Access Controlled Chatrooms"] = "Zugriffskontrollierte Chaträume"; App::$strings["Provide chatrooms and chat services with access control."] = "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an."; -App::$strings["Provide alternate connection permission roles."] = "Stelle benutzerdefinierte Berechtigungsrollen für Verbindungen zur Verfügung."; App::$strings["Smart Birthdays"] = "Smarte Geburtstage"; App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind."; App::$strings["Event Timezone Selection"] = "Termin-Zeitzonenauswahl"; App::$strings["Allow event creation in timezones other than your own."] = "Ermögliche das Erstellen von Terminen in anderen Zeitzonen als Deiner eigenen."; +App::$strings["Premium Channel"] = "Premium-Kanal"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen"; App::$strings["Advanced Directory Search"] = "Erweiterte Verzeichnissuche"; App::$strings["Allows creation of complex directory search queries"] = "Ermöglicht die Erstellung komplexer Verzeichnis-Suchabfragen"; App::$strings["Advanced Theme and Layout Settings"] = "Erweiterte Design- und Layout-Einstellungen"; App::$strings["Allows fine tuning of themes and page layouts"] = "Erlaubt die Feineinstellung von Designs und Seitenlayouts"; +App::$strings["Access Control and Permissions"] = "Zugriffskontrolle und Berechtigungen"; +App::$strings["Privacy Groups"] = "Gruppen"; +App::$strings["Enable management and selection of privacy groups"] = "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren"; +App::$strings["Multiple Profiles"] = "Mehrfachprofile"; +App::$strings["Ability to create multiple profiles"] = "Ermöglicht das Anlegen mehrerer Profile pro Kanal"; +App::$strings["Provide alternate connection permission roles."] = "Stelle benutzerdefinierte Berechtigungsrollen für Verbindungen zur Verfügung."; +App::$strings["OAuth Clients"] = "OAuth Clients"; +App::$strings["Manage authenticatication tokens for mobile and remote apps."] = "Verwalte Tokens für den Zugriff von mobilen bzw. externen Anwendungen."; +App::$strings["Access Tokens"] = "Zugangstokens"; +App::$strings["Create access tokens so that non-members can access private content."] = "Erzeuge Tokens für den Zugriff von Nicht-Mitgliedern auf private Inhalte."; App::$strings["Post Composition Features"] = "Nachbearbeitungsfunktionen"; App::$strings["Large Photos"] = "Große Fotos"; App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet."; @@ -3002,8 +3080,6 @@ App::$strings["Prevent posts with identical content to be published with less th App::$strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter"; App::$strings["Search by Date"] = "Suche nach Datum"; App::$strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; -App::$strings["Privacy Groups"] = "Gruppen"; -App::$strings["Enable management and selection of privacy groups"] = "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren"; App::$strings["Save search terms for re-use"] = "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung"; App::$strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast"; @@ -3015,7 +3091,6 @@ App::$strings["Show friend and connection suggestions"] = "Freund- und Verbindun App::$strings["Connection Filtering"] = "Filter für Verbindungen"; App::$strings["Filter incoming posts from connections based on keywords/content"] = "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)"; App::$strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; -App::$strings["Use markdown for editing posts"] = "Verwende Markdown zum Bearbeiten von Beiträgen"; App::$strings["Community Tagging"] = "Gemeinschaftliches Verschlagworten"; App::$strings["Ability to tag existing posts"] = "Ermöglicht das Verschlagworten existierender Beiträge"; App::$strings["Post Categories"] = "Beitrags-Kategorien"; @@ -3029,8 +3104,6 @@ App::$strings["Star Posts"] = "Beiträge mit Sternchen versehen"; App::$strings["Ability to mark special posts with a star indicator"] = "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol"; App::$strings["Tag Cloud"] = "Schlagwort-Wolke"; App::$strings["Provide a personal tag cloud on your channel page"] = "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite"; -App::$strings["Premium Channel"] = "Premium-Kanal"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen"; App::$strings["Tags"] = "Schlagwörter"; App::$strings["Keywords"] = "Schlüsselwörter"; App::$strings["have"] = "habe"; @@ -3092,25 +3165,11 @@ App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; -App::$strings["Network Activity"] = "Netzwerk-Aktivitäten"; -App::$strings["Mark all activity notifications seen"] = "Alle Benachrichtigungen als gesehen markieren"; -App::$strings["Channel home"] = "Mein Kanal"; -App::$strings["View your channel home"] = "Zeige Deine Kanalseite an"; -App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; -App::$strings["Registrations"] = "Registrierungen"; -App::$strings["Notifications"] = "Benachrichtigungen"; -App::$strings["View all notifications"] = "Alle Benachrichtigungen ansehen"; -App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; -App::$strings["Private mail"] = "Persönliche Mail"; -App::$strings["View your private messages"] = "Zeige Deine persönlichen Nachrichten an"; -App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; -App::$strings["Event Calendar"] = "Terminkalender"; App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; App::$strings["End this session"] = "Beende diese Sitzung"; App::$strings["Your profile page"] = "Deine Profilseite"; App::$strings["Manage/Edit profiles"] = "Profile verwalten"; -App::$strings["Edit your profile"] = "Profil bearbeiten"; App::$strings["Sign in"] = "Anmelden"; App::$strings["Take me home"] = "Bringe mich nach Hause (eigener Kanal)"; App::$strings["Log me out of this site"] = "Logge mich von dieser Seite aus"; @@ -3132,6 +3191,7 @@ App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; App::$strings["Invalid data packet"] = "Ungültiges Datenpaket"; App::$strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; App::$strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; +App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen."; App::$strings["Add new connections to this privacy group"] = "Neue Verbindung zu dieser Gruppe hinzufügen"; App::$strings["edit"] = "Bearbeiten"; diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 8f6b8cb4e..2321b2819 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -6,7 +6,7 @@ # alfonsomthd , 2015 # inboxwall , 2015 # jeroenpraat , 2015 -# Manuel Jiménez Friaza , 2017 +# Manuel Jiménez Friaza , 2017-2018 # Manuel Jiménez Friaza , 2015-2017 # Rafael, 2015 # tony baldwin , 2014 @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-13 12:54+0100\n" -"PO-Revision-Date: 2017-12-16 09:43+0000\n" +"POT-Creation-Date: 2018-03-01 08:51+0100\n" +"PO-Revision-Date: 2018-03-10 11:43+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -153,13 +153,13 @@ msgid "Special - Group Repository" msgstr "Especial - Repositorio de grupo" #: ../../Zotlabs/Access/PermissionRoles.php:287 -#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Settings/Channel.php:474 -#: ../../Zotlabs/Module/Connedit.php:936 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Register.php:221 ../../include/selectors.php:49 +#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Settings/Channel.php:473 +#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/event.php:1308 -#: ../../include/event.php:1315 ../../include/connections.php:689 +#: ../../include/selectors.php:140 ../../include/event.php:1315 +#: ../../include/event.php:1322 ../../include/connections.php:689 #: ../../include/connections.php:696 msgid "Other" msgstr "Otro" @@ -173,7 +173,7 @@ msgstr "Modo personalizado/experto" #: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Cards.php:29 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 #: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1198 msgid "Requested profile is not available." msgstr "El perfil solicitado no está disponible." @@ -188,7 +188,7 @@ msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/Appman.php:86 ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Article_edit.php:51 #: ../../Zotlabs/Module/New_channel.php:77 -#: ../../Zotlabs/Module/New_channel.php:104 +#: ../../Zotlabs/Module/New_channel.php:102 #: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 #: ../../Zotlabs/Module/Moderate.php:13 #: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:275 @@ -200,11 +200,11 @@ msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 #: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:400 #: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../Zotlabs/Module/Profile_photo.php:307 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:228 -#: ../../Zotlabs/Module/Item.php:245 ../../Zotlabs/Module/Item.php:255 -#: ../../Zotlabs/Module/Item.php:1085 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Profile_photo.php:302 +#: ../../Zotlabs/Module/Profile_photo.php:315 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 +#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 +#: ../../Zotlabs/Module/Item.php:1099 ../../Zotlabs/Module/Page.php:34 #: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 #: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 #: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 @@ -215,15 +215,15 @@ msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:107 #: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Cards.php:68 ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 #: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 #: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 -#: ../../Zotlabs/Module/Like.php:184 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 #: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 #: ../../Zotlabs/Module/Register.php:77 #: ../../Zotlabs/Module/Cover_photo.php:281 #: ../../Zotlabs/Module/Cover_photo.php:294 -#: ../../Zotlabs/Module/Display.php:404 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Display.php:406 ../../Zotlabs/Module/Network.php:15 #: ../../Zotlabs/Module/Filestorage.php:15 #: ../../Zotlabs/Module/Filestorage.php:70 #: ../../Zotlabs/Module/Filestorage.php:85 @@ -233,7 +233,7 @@ msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 #: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:169 +#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 #: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 #: ../../addon/gitwiki/Mod_Gitwiki.php:196 #: ../../addon/gitwiki/Mod_Gitwiki.php:292 ../../addon/pumpio/pumpio.php:40 @@ -241,9 +241,9 @@ msgstr "El perfil solicitado no está disponible." #: ../../include/attach.php:270 ../../include/attach.php:284 #: ../../include/attach.php:293 ../../include/attach.php:366 #: ../../include/attach.php:380 ../../include/attach.php:387 -#: ../../include/attach.php:469 ../../include/attach.php:1008 -#: ../../include/attach.php:1082 ../../include/attach.php:1247 -#: ../../include/items.php:3633 ../../include/photos.php:27 +#: ../../include/attach.php:469 ../../include/attach.php:1019 +#: ../../include/attach.php:1093 ../../include/attach.php:1258 +#: ../../include/items.php:3656 ../../include/photos.php:27 msgid "Permission denied." msgstr "Acceso denegado." @@ -252,7 +252,7 @@ msgstr "Acceso denegado." msgid "Block Name" msgstr "Nombre del bloque" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2288 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2402 msgid "Blocks" msgstr "Bloques" @@ -271,11 +271,11 @@ msgid "Edited" msgstr "Editado" #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 -#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:147 -#: ../../Zotlabs/Module/Connedit.php:939 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:146 +#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Cards.php:96 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Storage/Browser.php:273 ../../Zotlabs/Storage/Browser.php:379 +#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 #: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 msgid "Create" msgstr "Crear" @@ -285,15 +285,15 @@ msgstr "Crear" #: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Settings/Oauth.php:149 #: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Connections.php:260 -#: ../../Zotlabs/Module/Connections.php:297 -#: ../../Zotlabs/Module/Connections.php:317 ../../Zotlabs/Module/Wiki.php:202 +#: ../../Zotlabs/Module/Connections.php:265 +#: ../../Zotlabs/Module/Connections.php:303 +#: ../../Zotlabs/Module/Connections.php:323 ../../Zotlabs/Module/Wiki.php:202 #: ../../Zotlabs/Module/Wiki.php:358 ../../Zotlabs/Module/Menu.php:112 #: ../../Zotlabs/Module/Layouts.php:193 #: ../../Zotlabs/Module/Editwebpage.php:142 #: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Editpost.php:85 -#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Lib/Apps.php:399 -#: ../../Zotlabs/Lib/ThreadItem.php:121 ../../Zotlabs/Storage/Browser.php:285 +#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Lib/Apps.php:409 +#: ../../Zotlabs/Lib/ThreadItem.php:121 ../../Zotlabs/Storage/Browser.php:288 #: ../../Zotlabs/Widget/Cdav.php:126 ../../Zotlabs/Widget/Cdav.php:162 #: ../../addon/gitwiki/Mod_Gitwiki.php:151 #: ../../addon/gitwiki/Mod_Gitwiki.php:252 ../../include/channel.php:1297 @@ -310,19 +310,19 @@ msgstr "Compartir" #: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 #: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 #: ../../Zotlabs/Module/Article_edit.php:129 -#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Admin/Accounts.php:174 #: ../../Zotlabs/Module/Admin/Channels.php:149 #: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Settings/Oauth.php:150 #: ../../Zotlabs/Module/Thing.php:262 ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Connections.php:268 +#: ../../Zotlabs/Module/Connections.php:273 #: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Connedit.php:941 ../../Zotlabs/Module/Group.php:179 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 #: ../../Zotlabs/Module/Profiles.php:803 #: ../../Zotlabs/Module/Editwebpage.php:167 #: ../../Zotlabs/Module/Webpages.php:242 -#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:400 -#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:286 +#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:410 +#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:289 #: ../../include/conversation.php:690 ../../include/conversation.php:733 msgid "Delete" msgstr "Eliminar" @@ -352,6 +352,7 @@ msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." #: ../../Zotlabs/Module/Invite.php:82 +#: ../../addon/notifyadmin/notifyadmin.php:40 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Falló el envío del mensaje." @@ -412,35 +413,36 @@ msgstr "3. Pulse [conectar]" #: ../../Zotlabs/Module/Connect.php:98 #: ../../Zotlabs/Module/Admin/Features.php:66 #: ../../Zotlabs/Module/Admin/Plugins.php:438 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:167 #: ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Channels.php:147 #: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:277 +#: ../../Zotlabs/Module/Admin/Site.php:289 #: ../../Zotlabs/Module/Admin/Profs.php:157 #: ../../Zotlabs/Module/Admin/Account_edit.php:74 #: ../../Zotlabs/Module/Admin/Security.php:104 #: ../../Zotlabs/Module/Settings/Permcats.php:110 -#: ../../Zotlabs/Module/Settings/Channel.php:489 +#: ../../Zotlabs/Module/Settings/Channel.php:488 #: ../../Zotlabs/Module/Settings/Features.php:47 #: ../../Zotlabs/Module/Settings/Tokens.php:168 #: ../../Zotlabs/Module/Settings/Account.php:118 -#: ../../Zotlabs/Module/Settings/Featured.php:52 -#: ../../Zotlabs/Module/Settings/Display.php:209 +#: ../../Zotlabs/Module/Settings/Featured.php:54 +#: ../../Zotlabs/Module/Settings/Display.php:192 #: ../../Zotlabs/Module/Settings/Oauth.php:87 #: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 #: ../../Zotlabs/Module/Import.php:529 ../../Zotlabs/Module/Cal.php:345 #: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 #: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 #: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 -#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:904 +#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 #: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 +#: ../../Zotlabs/Module/Email_validation.php:40 #: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 #: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:726 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 #: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Mail.php:431 #: ../../Zotlabs/Module/Filestorage.php:160 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Lib/ThreadItem.php:754 +#: ../../Zotlabs/Lib/ThreadItem.php:750 #: ../../Zotlabs/Widget/Eventstools.php:16 #: ../../Zotlabs/Widget/Wiki_pages.php:40 #: ../../Zotlabs/Widget/Wiki_pages.php:97 @@ -454,7 +456,7 @@ msgstr "3. Pulse [conectar]" #: ../../addon/likebanner/likebanner.php:57 #: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 #: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 -#: ../../addon/diaspora/diaspora.php:816 +#: ../../addon/diaspora/diaspora.php:822 #: ../../addon/gitwiki/Mod_Gitwiki.php:155 #: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 #: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 @@ -469,8 +471,8 @@ msgstr "3. Pulse [conectar]" #: ../../addon/statusnet/statusnet.php:322 #: ../../addon/statusnet/statusnet.php:380 #: ../../addon/statusnet/statusnet.php:432 -#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:217 -#: ../../addon/twitter/twitter.php:259 +#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 +#: ../../addon/twitter/twitter.php:265 #: ../../addon/smileybutton/smileybutton.php:219 #: ../../addon/piwik/piwik.php:95 ../../addon/pageheader/pageheader.php:48 #: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 @@ -479,21 +481,16 @@ msgstr "3. Pulse [conectar]" msgid "Submit" msgstr "Enviar" -#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Cards.php:38 -#: ../../Zotlabs/Module/Cards.php:178 ../../Zotlabs/Lib/Apps.php:224 -#: ../../include/conversation.php:1890 ../../include/features.php:122 -#: ../../include/nav.php:490 -msgid "Cards" -msgstr "Fichas" +#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:179 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:124 +#: ../../include/nav.php:469 +msgid "Articles" +msgstr "Artículos" #: ../../Zotlabs/Module/Articles.php:95 msgid "Add Article" msgstr "Añadir un artículo" -#: ../../Zotlabs/Module/Articles.php:178 ../../include/nav.php:501 -msgid "Articles" -msgstr "Artículos" - #: ../../Zotlabs/Module/Editlayout.php:79 #: ../../Zotlabs/Module/Article_edit.php:17 #: ../../Zotlabs/Module/Article_edit.php:33 @@ -522,7 +519,7 @@ msgstr "Modificar la plantilla" #: ../../Zotlabs/Module/Import_items.php:120 #: ../../Zotlabs/Module/Cloud.php:111 ../../Zotlabs/Module/Group.php:74 #: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 -#: ../../Zotlabs/Module/Like.php:295 ../../Zotlabs/Web/WebServer.php:168 +#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 #: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 #: ../../addon/frphotos/frphotos.php:81 ../../addon/redfiles/redfiles.php:109 #: ../../include/items.php:358 @@ -537,7 +534,7 @@ msgstr "Identificador del perfil no válido" msgid "Profile Visibility Editor" msgstr "Editor de visibilidad del perfil" -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1633 +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1634 msgid "Profile" msgstr "Perfil" @@ -565,9 +562,9 @@ msgstr "Resumen: " #: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 #: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 #: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 -#: ../../Zotlabs/Lib/Apps.php:744 ../../Zotlabs/Lib/Apps.php:822 +#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:832 #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 -#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:842 +#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:853 #: ../../include/conversation.php:1160 msgid "Unknown" msgstr "Desconocido" @@ -680,10 +677,12 @@ msgstr "Eliminar todos" #: ../../Zotlabs/Module/Settings/Oauth.php:88 #: ../../Zotlabs/Module/Settings/Oauth.php:114 #: ../../Zotlabs/Module/Wiki.php:345 ../../Zotlabs/Module/Wiki.php:375 -#: ../../Zotlabs/Module/Connedit.php:942 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Profile_photo.php:464 +#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 #: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:804 -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../addon/gitwiki/Mod_Gitwiki.php:244 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:365 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../addon/gitwiki/Mod_Gitwiki.php:244 #: ../../addon/gitwiki/Mod_Gitwiki.php:267 ../../include/conversation.php:1386 #: ../../include/conversation.php:1435 msgid "Cancel" @@ -698,85 +697,85 @@ msgstr "¡Disculpas! La edición de eventos recurrentes aún no se ha implementa #: ../../Zotlabs/Module/Admin/Channels.php:159 #: ../../Zotlabs/Module/Settings/Oauth.php:89 #: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:924 +#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 #: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 -#: ../../Zotlabs/Storage/Browser.php:280 +#: ../../Zotlabs/Storage/Browser.php:283 #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../addon/rendezvous/rendezvous.php:172 #: ../../addon/gitwiki/Mod_Gitwiki.php:158 msgid "Name" msgstr "Nombre" -#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:925 +#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 msgid "Organisation" msgstr "Organización" -#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:926 +#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 msgid "Title" msgstr "Título" -#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:927 +#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 #: ../../Zotlabs/Module/Profiles.php:789 msgid "Phone" msgstr "Teléfono" #: ../../Zotlabs/Module/Cdav.php:1174 -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Accounts.php:181 -#: ../../Zotlabs/Module/Connedit.php:928 ../../Zotlabs/Module/Profiles.php:790 +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:790 #: ../../addon/openid/MysqlProvider.php:56 #: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1769 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1775 msgid "Email" msgstr "Correo electrónico" -#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:929 +#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 #: ../../Zotlabs/Module/Profiles.php:791 msgid "Instant messenger" msgstr "Mensajería instantánea" -#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:930 +#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 #: ../../Zotlabs/Module/Profiles.php:792 msgid "Website" msgstr "Sitio web" #: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 #: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:931 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 #: ../../Zotlabs/Module/Profiles.php:793 msgid "Address" msgstr "Dirección" -#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:932 +#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 #: ../../Zotlabs/Module/Profiles.php:794 msgid "Note" msgstr "Nota" -#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:933 -#: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1301 +#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 +#: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1308 #: ../../include/connections.php:682 msgid "Mobile" msgstr "Móvil" -#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:934 -#: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1302 +#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1309 #: ../../include/connections.php:683 msgid "Home" msgstr "Inicio" -#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:935 -#: ../../Zotlabs/Module/Profiles.php:797 ../../include/event.php:1305 +#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Profiles.php:797 ../../include/event.php:1312 #: ../../include/connections.php:686 msgid "Work" msgstr "Trabajo" -#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:937 +#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 #: ../../Zotlabs/Module/Profiles.php:799 #: ../../addon/jappixmini/jappixmini.php:368 msgid "Add Contact" msgstr "Añadir un contacto" -#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:938 +#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 #: ../../Zotlabs/Module/Profiles.php:800 msgid "Add Field" msgstr "Añadir un campo" @@ -785,36 +784,36 @@ msgstr "Añadir un campo" #: ../../Zotlabs/Module/Admin/Plugins.php:453 #: ../../Zotlabs/Module/Settings/Oauth.php:42 #: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Connedit.php:940 ../../Zotlabs/Module/Profiles.php:802 -#: ../../Zotlabs/Lib/Apps.php:383 +#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:802 +#: ../../Zotlabs/Lib/Apps.php:393 msgid "Update" msgstr "Actualizar" -#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:943 +#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 msgid "P.O. Box" msgstr "Buzón de correos" -#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:944 +#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 msgid "Additional" msgstr "Adicional" -#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:945 +#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 msgid "Street" msgstr "Calle" -#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:946 +#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 msgid "Locality" msgstr "Localidad" -#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:947 +#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 msgid "Region" msgstr "Provincia, región o estado" -#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:948 +#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 msgid "ZIP Code" msgstr "Código postal" -#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:949 +#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 #: ../../Zotlabs/Module/Profiles.php:760 msgid "Country" msgstr "País" @@ -832,7 +831,7 @@ msgid "This site is not a directory server" msgstr "Este sitio no es un servidor de directorio" #: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Chat.php:25 -#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:431 +#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:508 msgid "You must be logged in to see this page." msgstr "Debe haber iniciado sesión para poder ver esta página." @@ -908,9 +907,13 @@ msgid "" " please import or restore these in date order (oldest first)." msgstr "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." -#: ../../Zotlabs/Module/Hq.php:136 -msgid "Welcome to hubzilla!" -msgstr "¡Bienvenido o bienvenida a Hubzilla!" +#: ../../Zotlabs/Module/Hq.php:140 +msgid "Welcome to Hubzilla!" +msgstr "¡Bienvenido a Hubzilla!" + +#: ../../Zotlabs/Module/Hq.php:140 +msgid "You have got no unseen posts..." +msgstr "No tiene ningún mensaje sin leer..." #: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:540 #: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 @@ -919,25 +922,25 @@ msgstr "¡Bienvenido o bienvenida a Hubzilla!" msgid "Public access denied." msgstr "Acceso público denegado." -#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:313 -#: ../../Zotlabs/Lib/Apps.php:250 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../include/text.php:1029 ../../include/text.php:1041 -#: ../../include/acl_selectors.php:213 ../../include/nav.php:211 +#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:319 +#: ../../Zotlabs/Lib/Apps.php:256 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../include/text.php:1051 ../../include/text.php:1063 +#: ../../include/acl_selectors.php:118 ../../include/nav.php:179 msgid "Search" msgstr "Buscar" -#: ../../Zotlabs/Module/Search.php:225 +#: ../../Zotlabs/Module/Search.php:226 #, php-format msgid "Items tagged with: %s" msgstr "elementos etiquetados con: %s" -#: ../../Zotlabs/Module/Search.php:227 +#: ../../Zotlabs/Module/Search.php:228 #, php-format msgid "Search results for: %s" msgstr "Resultados de la búsqueda para: %s" -#: ../../Zotlabs/Module/Pubstream.php:81 -#: ../../Zotlabs/Widget/Notifications.php:129 +#: ../../Zotlabs/Module/Pubstream.php:93 +#: ../../Zotlabs/Widget/Notifications.php:131 msgid "Public Stream" msgstr "\"Stream\" público" @@ -1037,7 +1040,7 @@ msgid "Menu Item Permissions" msgstr "Permisos del elemento del menú" #: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 -#: ../../Zotlabs/Module/Settings/Channel.php:522 +#: ../../Zotlabs/Module/Settings/Channel.php:521 msgid "(click to open/close)" msgstr "(pulsar para abrir o cerrar)" @@ -1061,17 +1064,17 @@ msgstr "Usar la autenticación mágica si está disponible" #: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 #: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 #: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:240 +#: ../../Zotlabs/Module/Admin/Site.php:252 #: ../../Zotlabs/Module/Settings/Channel.php:305 -#: ../../Zotlabs/Module/Settings/Display.php:105 -#: ../../Zotlabs/Module/Api.php:97 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 #: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 #: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 #: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 #: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 #: ../../Zotlabs/Module/Filestorage.php:155 #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 ../../boot.php:1669 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1587 #: ../../view/theme/redbasic_c/php/config.php:100 #: ../../view/theme/redbasic_c/php/config.php:115 #: ../../view/theme/redbasic/php/config.php:98 @@ -1096,8 +1099,8 @@ msgstr "Usar la autenticación mágica si está disponible" #: ../../addon/statusnet/statusnet.php:389 #: ../../addon/statusnet/statusnet.php:411 #: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:242 -#: ../../addon/twitter/twitter.php:246 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 #: ../../addon/smileybutton/smileybutton.php:211 #: ../../addon/smileybutton/smileybutton.php:215 #: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 @@ -1112,17 +1115,17 @@ msgstr "No" #: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 #: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 #: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:242 +#: ../../Zotlabs/Module/Admin/Site.php:254 #: ../../Zotlabs/Module/Settings/Channel.php:305 -#: ../../Zotlabs/Module/Settings/Display.php:105 -#: ../../Zotlabs/Module/Api.php:96 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 #: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 #: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100 #: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Defperms.php:180 #: ../../Zotlabs/Module/Profiles.php:681 #: ../../Zotlabs/Module/Filestorage.php:155 #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 ../../boot.php:1669 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1587 #: ../../view/theme/redbasic_c/php/config.php:100 #: ../../view/theme/redbasic_c/php/config.php:115 #: ../../view/theme/redbasic/php/config.php:98 @@ -1147,8 +1150,8 @@ msgstr "No" #: ../../addon/statusnet/statusnet.php:389 #: ../../addon/statusnet/statusnet.php:411 #: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:242 -#: ../../addon/twitter/twitter.php:246 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 #: ../../addon/smileybutton/smileybutton.php:211 #: ../../addon/smileybutton/smileybutton.php:215 #: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 @@ -1265,8 +1268,8 @@ msgid "Event not found." msgstr "Evento no encontrado." #: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 -#: ../../Zotlabs/Module/Like.php:384 ../../include/conversation.php:119 -#: ../../include/text.php:1941 ../../include/event.php:1153 +#: ../../Zotlabs/Module/Like.php:385 ../../include/conversation.php:119 +#: ../../include/text.php:2007 ../../include/event.php:1153 msgid "event" msgstr "evento" @@ -1277,7 +1280,7 @@ msgstr "Editar el título del evento" #: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 #: ../../Zotlabs/Module/Appman.php:140 ../../Zotlabs/Module/Appman.php:141 #: ../../Zotlabs/Module/Profiles.php:748 ../../Zotlabs/Module/Profiles.php:752 -#: ../../include/datetime.php:265 +#: ../../include/datetime.php:205 msgid "Required" msgstr "Obligatorio" @@ -1328,7 +1331,7 @@ msgid "Edit Location" msgstr "Modificar la dirección" #: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1123 -#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:764 +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:760 #: ../../include/conversation.php:1330 msgid "Preview" msgstr "Previsualizar" @@ -1358,7 +1361,7 @@ msgid "Delete event" msgstr "Borrar evento" #: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 -#: ../../include/text.php:1760 +#: ../../include/text.php:1826 msgid "Link to Source" msgstr "Enlazar con la entrada en su ubicación original" @@ -1375,7 +1378,7 @@ msgid "Create Event" msgstr "Crear un evento" #: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 -#: ../../include/channel.php:1636 +#: ../../include/channel.php:1637 msgid "Export" msgstr "Exportar" @@ -1448,16 +1451,16 @@ msgid "Hub not found." msgstr "Servidor no encontrado" #: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 -#: ../../Zotlabs/Module/Like.php:382 +#: ../../Zotlabs/Module/Like.php:383 #: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/diaspora/Receiver.php:1433 ../../addon/pubcrawl/as.php:1295 -#: ../../include/conversation.php:116 ../../include/text.php:1938 +#: ../../addon/diaspora/Receiver.php:1518 ../../addon/pubcrawl/as.php:1359 +#: ../../include/conversation.php:116 ../../include/text.php:2004 msgid "photo" msgstr "foto" -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:382 -#: ../../addon/diaspora/Receiver.php:1433 ../../addon/pubcrawl/as.php:1295 -#: ../../include/conversation.php:144 ../../include/text.php:1944 +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:383 +#: ../../addon/diaspora/Receiver.php:1518 ../../addon/pubcrawl/as.php:1359 +#: ../../include/conversation.php:144 ../../include/text.php:2010 msgid "status" msgstr "el mensaje de estado" @@ -1534,66 +1537,70 @@ msgstr "Utilice este formulario para importar entradas existentes y contenido de msgid "File to Upload" msgstr "Fichero para subir" -#: ../../Zotlabs/Module/New_channel.php:121 +#: ../../Zotlabs/Module/New_channel.php:119 #: ../../Zotlabs/Module/Manage.php:138 #, php-format msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." -#: ../../Zotlabs/Module/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:249 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:254 msgid "Name or caption" msgstr "Nombre o descripción" -#: ../../Zotlabs/Module/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:249 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:254 msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" -#: ../../Zotlabs/Module/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:251 +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:256 msgid "Choose a short nickname" msgstr "Elija un alias corto" -#: ../../Zotlabs/Module/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:251 +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:256 #, php-format msgid "" "Your nickname will be used to create an easy to remember channel address " "e.g. nickname%s" msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 msgid "Channel role and privacy" msgstr "Clase de canal y privacidad" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 msgid "Select a channel role with your privacy requirements." msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 msgid "Read more about roles" msgstr "Leer más sobre los roles" -#: ../../Zotlabs/Module/New_channel.php:140 +#: ../../Zotlabs/Module/New_channel.php:138 msgid "Create Channel" msgstr "Crear un canal" -#: ../../Zotlabs/Module/New_channel.php:141 +#: ../../Zotlabs/Module/New_channel.php:139 msgid "" "A channel is your identity on this network. It can represent a person, a " "blog, or a forum to name a few. Channels can make connections with other " "channels to share information with highly detailed permissions." msgstr "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." -#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/New_channel.php:140 msgid "" "or import an existing channel from another location." msgstr "O importar un canal existente desde otro lugar." +#: ../../Zotlabs/Module/New_channel.php:145 +msgid "Validate" +msgstr "Validar" + #: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " @@ -1636,7 +1643,7 @@ msgid "" msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" #: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:593 +#: ../../Zotlabs/Module/Settings/Channel.php:592 msgid "Remove Channel" msgstr "Eliminar el canal" @@ -1649,12 +1656,12 @@ msgid "NEW" msgstr "NUEVO" #: ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:282 ../../include/text.php:1394 +#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 msgid "Size" msgstr "Tamaño" #: ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:283 +#: ../../Zotlabs/Storage/Browser.php:286 msgid "Last Modified" msgstr "Última modificación" @@ -2204,30 +2211,26 @@ msgstr "Gestionar las funcionalidades" msgid "Update has been marked successful" msgstr "La actualización ha sido marcada como exitosa" -#: ../../Zotlabs/Module/Admin/Dbsync.php:29 +#: ../../Zotlabs/Module/Admin/Dbsync.php:31 #, php-format msgid "Executing %s failed. Check system logs." msgstr "La ejecución de %s ha fallado. Mirar en los informes del sistema." -#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 #, php-format msgid "Update %s was successfully applied." msgstr "La actualización de %s se ha realizado exitosamente." -#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito." -#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#: ../../Zotlabs/Module/Admin/Dbsync.php:41 #, php-format msgid "Update function %s could not be found." msgstr "No se encuentra la función de actualización de %s." -#: ../../Zotlabs/Module/Admin/Dbsync.php:55 -msgid "No failed updates." -msgstr "No ha fallado ninguna actualización." - #: ../../Zotlabs/Module/Admin/Dbsync.php:59 msgid "Failed Updates" msgstr "Han fallado las actualizaciones" @@ -2240,12 +2243,16 @@ msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" msgid "Attempt to execute this update step automatically" msgstr "Intentar ejecutar este paso de actualización automáticamente" +#: ../../Zotlabs/Module/Admin/Dbsync.php:67 +msgid "No failed updates." +msgstr "No ha fallado ninguna actualización." + #: ../../Zotlabs/Module/Admin/Plugins.php:259 #: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:89 #: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 -#: ../../Zotlabs/Module/Display.php:408 +#: ../../Zotlabs/Module/Display.php:410 #: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 -#: ../../include/items.php:3546 +#: ../../include/items.php:3569 msgid "Item not found." msgstr "Elemento no encontrado." @@ -2271,12 +2278,12 @@ msgstr "Activar" #: ../../Zotlabs/Module/Admin/Plugins.php:341 #: ../../Zotlabs/Module/Admin/Plugins.php:436 -#: ../../Zotlabs/Module/Admin/Accounts.php:164 +#: ../../Zotlabs/Module/Admin/Accounts.php:165 #: ../../Zotlabs/Module/Admin/Logs.php:82 #: ../../Zotlabs/Module/Admin/Channels.php:145 #: ../../Zotlabs/Module/Admin/Themes.php:122 #: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Site.php:275 +#: ../../Zotlabs/Module/Admin/Site.php:287 #: ../../Zotlabs/Module/Admin/Security.php:86 #: ../../Zotlabs/Module/Admin.php:136 msgid "Administration" @@ -2294,9 +2301,10 @@ msgid "Toggle" msgstr "Cambiar" #: ../../Zotlabs/Module/Admin/Plugins.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:236 -#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:139 -#: ../../include/nav.php:224 +#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 +#: ../../Zotlabs/Widget/Newmember.php:55 +#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:105 +#: ../../include/nav.php:192 msgid "Settings" msgstr "Ajustes" @@ -2359,7 +2367,7 @@ msgstr "Descargar el repositorio" msgid "Install new repo" msgstr "Instalar un nuevo repositorio" -#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:383 +#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 msgid "Install" msgstr "Instalar" @@ -2385,112 +2393,112 @@ msgstr "Cambiar la rama" msgid "Remove" msgstr "Eliminar" -#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#: ../../Zotlabs/Module/Admin/Accounts.php:37 #, php-format msgid "%s account blocked/unblocked" msgid_plural "%s account blocked/unblocked" msgstr[0] "%s cuenta bloqueada/desbloqueada" msgstr[1] "%s cuenta bloqueada/desbloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#: ../../Zotlabs/Module/Admin/Accounts.php:44 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" msgstr[0] "%s cuentas eliminadas" msgstr[1] "%s cuentas eliminadas" -#: ../../Zotlabs/Module/Admin/Accounts.php:79 +#: ../../Zotlabs/Module/Admin/Accounts.php:80 msgid "Account not found" msgstr "Cuenta no encontrada" -#: ../../Zotlabs/Module/Admin/Accounts.php:90 ../../include/channel.php:2456 +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2462 #, php-format msgid "Account '%s' deleted" msgstr "La cuenta '%s' ha sido eliminada" -#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#: ../../Zotlabs/Module/Admin/Accounts.php:99 #, php-format msgid "Account '%s' blocked" msgstr "La cuenta '%s' ha sido bloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#: ../../Zotlabs/Module/Admin/Accounts.php:107 #, php-format msgid "Account '%s' unblocked" msgstr "La cuenta '%s' ha sido desbloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:165 -#: ../../Zotlabs/Module/Admin/Accounts.php:178 +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 #: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 msgid "Accounts" msgstr "Cuentas" -#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 #: ../../Zotlabs/Module/Admin/Channels.php:148 msgid "select all" msgstr "seleccionar todo" -#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Accounts.php:169 msgid "Registrations waiting for confirm" msgstr "Inscripciones en espera de confirmación" -#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Accounts.php:170 msgid "Request date" msgstr "Fecha de solicitud" -#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 msgid "No registrations." msgstr "Sin registros." -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Connections.php:282 ../../include/conversation.php:732 +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Connections.php:287 ../../include/conversation.php:732 msgid "Approve" msgstr "Aprobar" -#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Admin/Accounts.php:173 msgid "Deny" msgstr "Rechazar" -#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 #: ../../Zotlabs/Module/Connedit.php:622 msgid "Block" msgstr "Bloquear" -#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Accounts.php:176 #: ../../Zotlabs/Module/Connedit.php:622 msgid "Unblock" msgstr "Desbloquear" -#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin/Accounts.php:181 msgid "ID" msgstr "ID" -#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/group.php:284 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:284 msgid "All Channels" msgstr "Todos los canales" -#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Admin/Accounts.php:184 msgid "Register date" msgstr "Fecha de registro" -#: ../../Zotlabs/Module/Admin/Accounts.php:184 +#: ../../Zotlabs/Module/Admin/Accounts.php:185 msgid "Last login" msgstr "Último acceso" -#: ../../Zotlabs/Module/Admin/Accounts.php:185 +#: ../../Zotlabs/Module/Admin/Accounts.php:186 msgid "Expires" msgstr "Caduca" -#: ../../Zotlabs/Module/Admin/Accounts.php:186 +#: ../../Zotlabs/Module/Admin/Accounts.php:187 msgid "Service Class" msgstr "Clase de servicio" -#: ../../Zotlabs/Module/Admin/Accounts.php:188 +#: ../../Zotlabs/Module/Admin/Accounts.php:189 msgid "" "Selected accounts will be deleted!\\n\\nEverything these accounts had posted" " on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Admin/Accounts.php:189 +#: ../../Zotlabs/Module/Admin/Accounts.php:190 msgid "" "The account {0} will be deleted!\\n\\nEverything this account has posted on " "this site will be permanently deleted!\\n\\nAre you sure?" @@ -2599,7 +2607,7 @@ msgid "Disallow Code" msgstr "No permitir código" #: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1808 ../../include/nav.php:410 +#: ../../include/conversation.php:1808 ../../include/nav.php:378 msgid "Channel" msgstr "Canal" @@ -2644,415 +2652,472 @@ msgstr "[Experimental]" msgid "[Unsupported]" msgstr "[No soportado]" -#: ../../Zotlabs/Module/Admin/Site.php:147 +#: ../../Zotlabs/Module/Admin/Site.php:158 msgid "Site settings updated." msgstr "Ajustes del sitio actualizados." -#: ../../Zotlabs/Module/Admin/Site.php:173 +#: ../../Zotlabs/Module/Admin/Site.php:184 #: ../../view/theme/redbasic_c/php/config.php:15 -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:2968 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3082 msgid "Default" msgstr "Predeterminado" -#: ../../Zotlabs/Module/Admin/Site.php:184 -#: ../../Zotlabs/Module/Settings/Display.php:139 +#: ../../Zotlabs/Module/Admin/Site.php:195 +#: ../../Zotlabs/Module/Settings/Display.php:130 #, php-format msgid "%s - (Incompatible)" msgstr "%s - (Incompatible)" -#: ../../Zotlabs/Module/Admin/Site.php:191 -#: ../../Zotlabs/Module/Settings/Display.php:153 +#: ../../Zotlabs/Module/Admin/Site.php:202 msgid "mobile" msgstr "móvil" -#: ../../Zotlabs/Module/Admin/Site.php:193 +#: ../../Zotlabs/Module/Admin/Site.php:204 msgid "experimental" msgstr "experimental" -#: ../../Zotlabs/Module/Admin/Site.php:195 +#: ../../Zotlabs/Module/Admin/Site.php:206 msgid "unsupported" msgstr "no soportado" -#: ../../Zotlabs/Module/Admin/Site.php:241 +#: ../../Zotlabs/Module/Admin/Site.php:253 msgid "Yes - with approval" msgstr "Sí - con aprobación" -#: ../../Zotlabs/Module/Admin/Site.php:247 +#: ../../Zotlabs/Module/Admin/Site.php:259 msgid "My site is not a public server" msgstr "Mi sitio no es un servidor público" -#: ../../Zotlabs/Module/Admin/Site.php:248 +#: ../../Zotlabs/Module/Admin/Site.php:260 msgid "My site has paid access only" msgstr "Mi sitio es un servicio de pago" -#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Admin/Site.php:261 msgid "My site has free access only" msgstr "Mi sitio es un servicio gratuito" -#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Admin/Site.php:262 msgid "My site offers free accounts with optional paid upgrades" msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" -#: ../../Zotlabs/Module/Admin/Site.php:262 +#: ../../Zotlabs/Module/Admin/Site.php:274 msgid "Beginner/Basic" msgstr "Principiante / Básico" -#: ../../Zotlabs/Module/Admin/Site.php:263 +#: ../../Zotlabs/Module/Admin/Site.php:275 msgid "Novice - not skilled but willing to learn" msgstr "Novato: no cualificado, pero dispuesto a aprender" -#: ../../Zotlabs/Module/Admin/Site.php:264 +#: ../../Zotlabs/Module/Admin/Site.php:276 msgid "Intermediate - somewhat comfortable" msgstr "Intermedio: bastante cómodo" -#: ../../Zotlabs/Module/Admin/Site.php:265 +#: ../../Zotlabs/Module/Admin/Site.php:277 msgid "Advanced - very comfortable" msgstr "Avanzado: muy cómodo" -#: ../../Zotlabs/Module/Admin/Site.php:266 +#: ../../Zotlabs/Module/Admin/Site.php:278 msgid "Expert - I can write computer code" msgstr "Experto: puedo escribir código informático" -#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Site.php:279 msgid "Wizard - I probably know more than you do" msgstr "Colaborador: probablemente sé más que tú" -#: ../../Zotlabs/Module/Admin/Site.php:276 ../../Zotlabs/Widget/Admin.php:22 +#: ../../Zotlabs/Module/Admin/Site.php:288 ../../Zotlabs/Widget/Admin.php:22 msgid "Site" msgstr "Sitio" -#: ../../Zotlabs/Module/Admin/Site.php:278 -#: ../../Zotlabs/Module/Register.php:263 +#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Register.php:269 msgid "Registration" msgstr "Registro" -#: ../../Zotlabs/Module/Admin/Site.php:279 +#: ../../Zotlabs/Module/Admin/Site.php:291 msgid "File upload" msgstr "Subir fichero" -#: ../../Zotlabs/Module/Admin/Site.php:280 +#: ../../Zotlabs/Module/Admin/Site.php:292 msgid "Policies" msgstr "Políticas" -#: ../../Zotlabs/Module/Admin/Site.php:281 +#: ../../Zotlabs/Module/Admin/Site.php:293 #: ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "Avanzado" -#: ../../Zotlabs/Module/Admin/Site.php:285 +#: ../../Zotlabs/Module/Admin/Site.php:297 #: ../../addon/statusnet/statusnet.php:891 msgid "Site name" msgstr "Nombre del sitio" -#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Site default technical skill level" msgstr "Nivel de habilidad técnica predeterminado del sitio" -#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Used to provide a member experience matched to technical comfort level" msgstr "Se utiliza para proporcionar una experiencia a los miembros adaptada a su nivel de comodidad técnica" -#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "Lock the technical skill level setting" msgstr "Bloquear el ajuste del nivel de habilidad técnica" -#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "Members can set their own technical comfort level by default" msgstr "Los miembros pueden configurar su nivel de comodidad técnica por defecto" -#: ../../Zotlabs/Module/Admin/Site.php:291 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "Se permite HTML/CSS/JS sin filtrar" + +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "Administrator Information" msgstr "Información del Administrador" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" -#: ../../Zotlabs/Module/Admin/Site.php:293 -#: ../../Zotlabs/Module/Siteinfo.php:22 +#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Siteinfo.php:21 msgid "Site Information" msgstr "Información sobre el sitio" -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Site.php:305 msgid "" "Publicly visible description of this site. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Descripción pública de este sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" -#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Site.php:306 msgid "System language" msgstr "Idioma del sistema" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "System theme" msgstr "Tema gráfico del sistema" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Mobile system theme" msgstr "Tema del sistema para móviles" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Theme for mobile devices" msgstr "Tema para dispositivos móviles" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "Allow Feeds as Connections" msgstr "Permitir contenidos RSS como conexiones" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "(Heavy system resource usage)" msgstr "(Uso intenso de los recursos del sistema)" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "Maximum image size" msgstr "Tamaño máximo de la imagen" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." -#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "Does this site allow new member registration?" msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "Invitation only" msgstr "Solo con una invitación" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." msgstr "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"." -#: ../../Zotlabs/Module/Admin/Site.php:302 +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Minimum age" +msgstr "Edad mínima" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Minimum age (in years) for who may register on this site." +msgstr "Edad mínima (en años) para poder registrarse en este sitio." + +#: ../../Zotlabs/Module/Admin/Site.php:315 msgid "Which best describes the types of account offered by this hub?" msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Register text" msgstr "Texto del registro" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Will be displayed prominently on the registration page." msgstr "Se mostrará de forma destacada en la página de registro." -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:317 msgid "Site homepage to show visitors (default: login box)" msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:317 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "Preserve site homepage URL" msgstr "Preservar la dirección de la página personal" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "Accounts abandoned after x days" msgstr "Cuentas abandonadas después de x días" -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "Allowed friend domains" msgstr "Dominios amigos permitidos" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." -#: ../../Zotlabs/Module/Admin/Site.php:308 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "Verify Email Addresses" msgstr "Verificar las direcciones de correo electrónico" -#: ../../Zotlabs/Module/Admin/Site.php:308 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." -#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "Force publish" msgstr "Forzar la publicación" -#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:323 msgid "Import Public Streams" msgstr "Importar contenido público" -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:323 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas." -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Site only Public Streams" +msgstr "Solo contenido público en este sitio" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "Permitir el acceso al contenido público originado sólo desde este sitio si los \"streams\" públicos Importados están deshabilitados." + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "Permitir que cualquiera en Internet pueda acceder a los \"streams\" públicos" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "Desactivar para requerir autenticación antes de la visualización. Advertencia: este contenido no está moderado." + +#: ../../Zotlabs/Module/Admin/Site.php:326 msgid "Login on Homepage" msgstr "Iniciar sesión en la página personal" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:326 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "Enable context help" msgstr "Habilitar la ayuda contextual" -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "" "Display contextual help for the current page when the help button is " "pressed." msgstr "Ver la ayuda contextual para la página actual cuando se pulse el botón de Ayuda." -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:329 msgid "Reply-to email address for system generated email." msgstr "Dirección de respuesta para el correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:315 +#: ../../Zotlabs/Module/Admin/Site.php:330 msgid "Sender (From) email address for system generated email." msgstr "Dirección del remitente (From) para el correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:316 +#: ../../Zotlabs/Module/Admin/Site.php:331 msgid "Name of email sender for system generated email." msgstr "Nombre del remitente del correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:333 msgid "Directory Server URL" msgstr "URL del servidor de directorio" -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:333 msgid "Default directory server" msgstr "Servidor de directorio predeterminado" -#: ../../Zotlabs/Module/Admin/Site.php:320 +#: ../../Zotlabs/Module/Admin/Site.php:335 msgid "Proxy user" msgstr "Usuario del proxy" -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:336 msgid "Proxy URL" msgstr "Dirección del proxy" -#: ../../Zotlabs/Module/Admin/Site.php:322 +#: ../../Zotlabs/Module/Admin/Site.php:337 msgid "Network timeout" msgstr "Tiempo de espera de la red" -#: ../../Zotlabs/Module/Admin/Site.php:322 +#: ../../Zotlabs/Module/Admin/Site.php:337 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:338 msgid "Delivery interval" msgstr "Intervalo de entrega" -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:338 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:339 msgid "Deliveries per process" msgstr "Intentos de envío por proceso" -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:339 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust" " if necessary to tune system performance. Recommend: 1-5." msgstr "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5." -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:340 msgid "Queue Threshold" msgstr "Umbral de la cola de espera" -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:340 msgid "" "Always defer immediate delivery if queue contains more than this number of " "entries." msgstr "Aplazar siempre la entrega inmediata si la cola contiene más de este número de entradas." -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:341 msgid "Poll interval" msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:341 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega." -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:342 msgid "Path to ImageMagick convert program" msgstr "Ruta al programa de conversión de ImageMagick" -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:342 msgid "" "If set, use this program to generate photo thumbnails for huge images ( > " "4000 pixels in either dimension), otherwise memory exhaustion may occur. " "Example: /usr/bin/convert" msgstr "Si está configurado, utilice este programa para generar miniaturas de fotos para imágenes de gran tamaño ( > 4000 píxeles en cualquiera de las dos dimensiones), de lo contrario se puede agotar la memoria. Ejemplo: /usr/bin/convert" -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:343 msgid "Allow SVG thumbnails in file browser" msgstr "Permitir miniaturas SVG en el navegador de archivos" -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:343 msgid "WARNING: SVG images may contain malicious code." msgstr "ADVERTENCIA: Las imágenes SVG pueden contener código malicioso." -#: ../../Zotlabs/Module/Admin/Site.php:329 +#: ../../Zotlabs/Module/Admin/Site.php:344 msgid "Maximum Load Average" msgstr "Carga media máxima" -#: ../../Zotlabs/Module/Admin/Site.php:329 +#: ../../Zotlabs/Module/Admin/Site.php:344 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50." -#: ../../Zotlabs/Module/Admin/Site.php:330 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "Expiration period in days for imported (grid/network) content" msgstr "Caducidad del contenido importado de otros sitios (en días)" -#: ../../Zotlabs/Module/Admin/Site.php:330 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "0 for no expiration of imported content" msgstr "0 para que no caduque el contenido importado" +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "Servidores públicos: Página web de acogida (marketing) opcional para nuevos registros" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "Crear esta página primero. Por defecto es %s/register" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Page to display after creating a new channel" +msgstr "Página a mostrar después de la creación de un nuevo canal" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Recommend: profiles, go, or settings" +msgstr "Recomendar: perfiles, ir, o ajustes" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Optional: site location" +msgstr "Opcional: ubicación del sitio" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Region or country" +msgstr "Región o país" + #: ../../Zotlabs/Module/Admin/Profs.php:69 msgid "New Profile Field" msgstr "Nuevo campo en el perfil" @@ -3095,8 +3160,8 @@ msgstr "Información adicional (opcional)" #: ../../Zotlabs/Module/Admin/Profs.php:74 #: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 #: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1030 -#: ../../include/text.php:1042 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 +#: ../../include/text.php:1064 msgid "Save" msgstr "Guardar" @@ -3295,7 +3360,7 @@ msgid "Visible to:" msgstr "Visible para:" #: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:118 ../../include/acl_selectors.php:183 +#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 msgctxt "acl" msgid "Profile" msgstr "Perfil" @@ -3328,25 +3393,25 @@ msgstr "Nombre de la autorización" #: ../../Zotlabs/Module/Settings/Permcats.php:103 #: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Connedit.php:908 ../../Zotlabs/Module/Defperms.php:250 +#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 msgid "My Settings" msgstr "Mis ajustes" #: ../../Zotlabs/Module/Settings/Permcats.php:105 #: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Connedit.php:903 ../../Zotlabs/Module/Defperms.php:248 +#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 msgid "inherited" msgstr "heredado" #: ../../Zotlabs/Module/Settings/Permcats.php:108 #: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Defperms.php:253 +#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 msgid "Individual Permissions" msgstr "Permisos individuales" #: ../../Zotlabs/Module/Settings/Permcats.php:109 #: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Connedit.php:911 +#: ../../Zotlabs/Module/Connedit.php:894 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -3359,7 +3424,7 @@ msgstr "Algunos permisos pueden ser heredados de los extremely permissive (should be used with caution)" msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" -#: ../../Zotlabs/Module/Settings/Channel.php:511 +#: ../../Zotlabs/Module/Settings/Channel.php:510 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" -#: ../../Zotlabs/Module/Settings/Channel.php:512 +#: ../../Zotlabs/Module/Settings/Channel.php:511 msgid "Private - default private, never open or public" msgstr "Privado - por defecto, privado, nunca abierto o público" -#: ../../Zotlabs/Module/Settings/Channel.php:513 +#: ../../Zotlabs/Module/Settings/Channel.php:512 msgid "Blocked - default blocked to/from everybody" msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" -#: ../../Zotlabs/Module/Settings/Channel.php:515 +#: ../../Zotlabs/Module/Settings/Channel.php:514 msgid "Allow others to tag your posts" msgstr "Permitir a otros etiquetar sus publicaciones" -#: ../../Zotlabs/Module/Settings/Channel.php:515 +#: ../../Zotlabs/Module/Settings/Channel.php:514 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." -#: ../../Zotlabs/Module/Settings/Channel.php:517 +#: ../../Zotlabs/Module/Settings/Channel.php:516 msgid "Channel Permission Limits" msgstr "Límites de los permisos del canal" -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "Expire other channel content after this many days" msgstr "Caducar contenido de otros canales después de este número de días" -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "0 or blank to use the website limit." msgstr "0 o en blanco para usar el límite del sitio web." -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 #, php-format msgid "This website expires after %d days." msgstr "Este sitio web caduca después de %d días." -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "This website does not expire imported content." msgstr "Este sitio web no caduca el contenido importado." -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "The website limit takes precedence if lower than your limit." msgstr "El límite del sitio web tiene prioridad si es inferior a su propio límite." -#: ../../Zotlabs/Module/Settings/Channel.php:520 +#: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "Maximum Friend Requests/Day:" msgstr "Máximo de solicitudes de amistad por día:" -#: ../../Zotlabs/Module/Settings/Channel.php:520 +#: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "May reduce spam activity" msgstr "Podría reducir la actividad de spam" -#: ../../Zotlabs/Module/Settings/Channel.php:521 +#: ../../Zotlabs/Module/Settings/Channel.php:520 msgid "Default Privacy Group" msgstr "Grupo de canales predeterminado" -#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:522 msgid "Use my default audience setting for the type of object published" msgstr "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación" -#: ../../Zotlabs/Module/Settings/Channel.php:524 +#: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "Profile to assign new connections" msgstr "Perfil para asignar a las nuevas conexiones" -#: ../../Zotlabs/Module/Settings/Channel.php:533 +#: ../../Zotlabs/Module/Settings/Channel.php:532 msgid "Channel permissions category:" msgstr "Categoría de los permisos del canal:" -#: ../../Zotlabs/Module/Settings/Channel.php:534 +#: ../../Zotlabs/Module/Settings/Channel.php:533 msgid "Default Permissions Group" msgstr "Grupo de permisos predeterminados" -#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:539 msgid "Maximum private messages per day from unknown people:" msgstr "Máximo de mensajes privados por día de gente desconocida:" -#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:539 msgid "Useful to reduce spamming" msgstr "Útil para reducir el envío de correo no deseado" -#: ../../Zotlabs/Module/Settings/Channel.php:543 +#: ../../Zotlabs/Module/Settings/Channel.php:542 +#: ../../Zotlabs/Lib/Enotify.php:68 msgid "Notification Settings" msgstr "Configuración de las notificaciones" -#: ../../Zotlabs/Module/Settings/Channel.php:544 +#: ../../Zotlabs/Module/Settings/Channel.php:543 msgid "By default post a status message when:" msgstr "Por defecto, enviar un mensaje de estado cuando:" -#: ../../Zotlabs/Module/Settings/Channel.php:545 +#: ../../Zotlabs/Module/Settings/Channel.php:544 msgid "accepting a friend request" msgstr "Acepte una solicitud de amistad" -#: ../../Zotlabs/Module/Settings/Channel.php:546 +#: ../../Zotlabs/Module/Settings/Channel.php:545 msgid "joining a forum/community" msgstr "al unirse a un foro o comunidad" -#: ../../Zotlabs/Module/Settings/Channel.php:547 +#: ../../Zotlabs/Module/Settings/Channel.php:546 msgid "making an interesting profile change" msgstr "Realice un cambio interesante en su perfil" -#: ../../Zotlabs/Module/Settings/Channel.php:548 +#: ../../Zotlabs/Module/Settings/Channel.php:547 msgid "Send a notification email when:" msgstr "Enviar una notificación por correo electrónico cuando:" -#: ../../Zotlabs/Module/Settings/Channel.php:549 +#: ../../Zotlabs/Module/Settings/Channel.php:548 msgid "You receive a connection request" msgstr "Reciba una solicitud de conexión" -#: ../../Zotlabs/Module/Settings/Channel.php:550 +#: ../../Zotlabs/Module/Settings/Channel.php:549 msgid "Your connections are confirmed" msgstr "Sus conexiones hayan sido confirmadas" -#: ../../Zotlabs/Module/Settings/Channel.php:551 +#: ../../Zotlabs/Module/Settings/Channel.php:550 msgid "Someone writes on your profile wall" msgstr "Alguien escriba en la página de su perfil (\"muro\")" -#: ../../Zotlabs/Module/Settings/Channel.php:552 +#: ../../Zotlabs/Module/Settings/Channel.php:551 msgid "Someone writes a followup comment" msgstr "Alguien escriba un comentario sobre sus publicaciones" -#: ../../Zotlabs/Module/Settings/Channel.php:553 +#: ../../Zotlabs/Module/Settings/Channel.php:552 msgid "You receive a private message" msgstr "Reciba un mensaje privado" -#: ../../Zotlabs/Module/Settings/Channel.php:554 +#: ../../Zotlabs/Module/Settings/Channel.php:553 msgid "You receive a friend suggestion" msgstr "Reciba una sugerencia de amistad" -#: ../../Zotlabs/Module/Settings/Channel.php:555 +#: ../../Zotlabs/Module/Settings/Channel.php:554 msgid "You are tagged in a post" msgstr "Usted sea etiquetado en una publicación" -#: ../../Zotlabs/Module/Settings/Channel.php:556 +#: ../../Zotlabs/Module/Settings/Channel.php:555 msgid "You are poked/prodded/etc. in a post" msgstr "Reciba un toque o incitación en una publicación" -#: ../../Zotlabs/Module/Settings/Channel.php:558 +#: ../../Zotlabs/Module/Settings/Channel.php:557 msgid "Someone likes your post/comment" msgstr "Alguien muestre agrado por su entrada o comentario" -#: ../../Zotlabs/Module/Settings/Channel.php:561 +#: ../../Zotlabs/Module/Settings/Channel.php:560 msgid "Show visual notifications including:" msgstr "Mostrar notificaciones visuales que incluyan:" -#: ../../Zotlabs/Module/Settings/Channel.php:563 +#: ../../Zotlabs/Module/Settings/Channel.php:562 msgid "Unseen grid activity" msgstr "Nueva actividad en la red" -#: ../../Zotlabs/Module/Settings/Channel.php:564 +#: ../../Zotlabs/Module/Settings/Channel.php:563 msgid "Unseen channel activity" msgstr "Actividad no vista en el canal" -#: ../../Zotlabs/Module/Settings/Channel.php:565 +#: ../../Zotlabs/Module/Settings/Channel.php:564 msgid "Unseen private messages" msgstr "Mensajes privados no leídos" -#: ../../Zotlabs/Module/Settings/Channel.php:565 +#: ../../Zotlabs/Module/Settings/Channel.php:564 +#: ../../Zotlabs/Module/Settings/Channel.php:569 #: ../../Zotlabs/Module/Settings/Channel.php:570 #: ../../Zotlabs/Module/Settings/Channel.php:571 -#: ../../Zotlabs/Module/Settings/Channel.php:572 #: ../../addon/jappixmini/jappixmini.php:343 msgid "Recommended" msgstr "Recomendado" -#: ../../Zotlabs/Module/Settings/Channel.php:566 +#: ../../Zotlabs/Module/Settings/Channel.php:565 msgid "Upcoming events" msgstr "Próximos eventos" -#: ../../Zotlabs/Module/Settings/Channel.php:567 +#: ../../Zotlabs/Module/Settings/Channel.php:566 msgid "Events today" msgstr "Eventos de hoy" -#: ../../Zotlabs/Module/Settings/Channel.php:568 +#: ../../Zotlabs/Module/Settings/Channel.php:567 msgid "Upcoming birthdays" msgstr "Próximos cumpleaños" -#: ../../Zotlabs/Module/Settings/Channel.php:568 +#: ../../Zotlabs/Module/Settings/Channel.php:567 msgid "Not available in all themes" msgstr "No disponible en todos los temas" -#: ../../Zotlabs/Module/Settings/Channel.php:569 +#: ../../Zotlabs/Module/Settings/Channel.php:568 msgid "System (personal) notifications" msgstr "Notificaciones del sistema (personales)" -#: ../../Zotlabs/Module/Settings/Channel.php:570 +#: ../../Zotlabs/Module/Settings/Channel.php:569 msgid "System info messages" msgstr "Mensajes de información del sistema" -#: ../../Zotlabs/Module/Settings/Channel.php:571 +#: ../../Zotlabs/Module/Settings/Channel.php:570 msgid "System critical alerts" msgstr "Alertas críticas del sistema" -#: ../../Zotlabs/Module/Settings/Channel.php:572 +#: ../../Zotlabs/Module/Settings/Channel.php:571 msgid "New connections" msgstr "Nuevas conexiones" -#: ../../Zotlabs/Module/Settings/Channel.php:573 +#: ../../Zotlabs/Module/Settings/Channel.php:572 msgid "System Registrations" msgstr "Registros del sistema" -#: ../../Zotlabs/Module/Settings/Channel.php:574 +#: ../../Zotlabs/Module/Settings/Channel.php:573 msgid "Unseen shared files" msgstr "Ficheros compartidos no vistos" -#: ../../Zotlabs/Module/Settings/Channel.php:575 +#: ../../Zotlabs/Module/Settings/Channel.php:574 msgid "Unseen public activity" msgstr "Actividad pública no vista" -#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:575 msgid "Email notification hub (hostname)" msgstr "Email de notificación del hub (nombre del host)" -#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:575 #, php-format msgid "" "If your channel is mirrored to multiple hubs, set this to your preferred " "location. This will prevent duplicate email notifications. Example: %s" msgstr "Si su canal está replicado en múltiples hubs, colóquelo en su ubicación preferida. Esto evitará la duplicación de notificaciones por correo electrónico. Ejemplo: %s" -#: ../../Zotlabs/Module/Settings/Channel.php:577 +#: ../../Zotlabs/Module/Settings/Channel.php:576 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" -#: ../../Zotlabs/Module/Settings/Channel.php:579 +#: ../../Zotlabs/Module/Settings/Channel.php:578 msgid "Notify me of events this many days in advance" msgstr "Avisarme de los eventos con algunos días de antelación" -#: ../../Zotlabs/Module/Settings/Channel.php:579 +#: ../../Zotlabs/Module/Settings/Channel.php:578 msgid "Must be greater than 0" msgstr "Debe ser mayor que 0" -#: ../../Zotlabs/Module/Settings/Channel.php:585 +#: ../../Zotlabs/Module/Settings/Channel.php:584 msgid "Advanced Account/Page Type Settings" msgstr "Ajustes avanzados de la cuenta y de los tipos de página" -#: ../../Zotlabs/Module/Settings/Channel.php:586 +#: ../../Zotlabs/Module/Settings/Channel.php:585 msgid "Change the behaviour of this account for special situations" msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" -#: ../../Zotlabs/Module/Settings/Channel.php:588 +#: ../../Zotlabs/Module/Settings/Channel.php:587 msgid "Miscellaneous Settings" msgstr "Ajustes diversos" -#: ../../Zotlabs/Module/Settings/Channel.php:589 +#: ../../Zotlabs/Module/Settings/Channel.php:588 msgid "Default photo upload folder" msgstr "Carpeta por defecto de las fotos subidas" +#: ../../Zotlabs/Module/Settings/Channel.php:588 #: ../../Zotlabs/Module/Settings/Channel.php:589 -#: ../../Zotlabs/Module/Settings/Channel.php:590 msgid "%Y - current year, %m - current month" msgstr "%Y - año en curso, %m - mes actual" -#: ../../Zotlabs/Module/Settings/Channel.php:590 +#: ../../Zotlabs/Module/Settings/Channel.php:589 msgid "Default file upload folder" msgstr "Carpeta por defecto de los ficheros subidos" -#: ../../Zotlabs/Module/Settings/Channel.php:592 +#: ../../Zotlabs/Module/Settings/Channel.php:591 msgid "Personal menu to display in your channel pages" msgstr "Menú personal que debe mostrarse en las páginas de su canal" -#: ../../Zotlabs/Module/Settings/Channel.php:594 +#: ../../Zotlabs/Module/Settings/Channel.php:593 msgid "Remove this channel." msgstr "Eliminar este canal." -#: ../../Zotlabs/Module/Settings/Channel.php:595 +#: ../../Zotlabs/Module/Settings/Channel.php:594 msgid "Firefox Share $Projectname provider" msgstr "Servicio de compartición de Firefox: proveedor $Projectname" -#: ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Settings/Channel.php:595 msgid "Start calendar week on Monday" msgstr "Comenzar el calendario semanal por el lunes" @@ -3824,7 +3888,7 @@ msgid "Expires (yyyy-mm-dd)" msgstr "Expira (aaaa-mm-dd)" #: ../../Zotlabs/Module/Settings/Tokens.php:160 -#: ../../Zotlabs/Module/Connedit.php:907 +#: ../../Zotlabs/Module/Connedit.php:890 msgid "Their Settings" msgstr "Sus ajustes" @@ -3889,8 +3953,10 @@ msgid "Your technical skill level" msgstr "Su nivel de habilidad técnica" #: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "Used to provide a member experience matched to your comfort level" -msgstr "Se utiliza para proporcionar la experiencia de los miembros adaptada a su nivel de comodidad" +msgid "" +"Used to provide a member experience and additional features consistent with " +"your comfort level" +msgstr "Utilizado para proporcionar un nivel de experiencia como miembro y características adicionales consistentes con su nivel de comodidad" #: ../../Zotlabs/Module/Settings/Account.php:120 #: ../../Zotlabs/Module/Removeaccount.php:61 @@ -3901,148 +3967,152 @@ msgstr "Eliminar cuenta" msgid "Remove this account including all its channels" msgstr "Eliminar esta cuenta incluyendo todos sus canales" -#: ../../Zotlabs/Module/Settings/Featured.php:21 +#: ../../Zotlabs/Module/Settings/Featured.php:23 msgid "Affinity Slider settings updated." msgstr "Se han actualizado los ajustes del controlador de afinidad." -#: ../../Zotlabs/Module/Settings/Featured.php:36 +#: ../../Zotlabs/Module/Settings/Featured.php:38 msgid "No feature settings configured" msgstr "No se ha establecido la configuración de los complementos" -#: ../../Zotlabs/Module/Settings/Featured.php:43 +#: ../../Zotlabs/Module/Settings/Featured.php:45 msgid "Default maximum affinity level" msgstr "Nivel máximo de afinidad por defecto" -#: ../../Zotlabs/Module/Settings/Featured.php:48 +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "0-99 default 99" +msgstr "0-99 por defecto 99" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 msgid "Default minimum affinity level" msgstr "Nivel mínimo de afinidad por defecto" -#: ../../Zotlabs/Module/Settings/Featured.php:52 +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "0-99 - default 0" +msgstr "0-99 - por defecto 0" + +#: ../../Zotlabs/Module/Settings/Featured.php:54 msgid "Affinity Slider Settings" msgstr "Ajustes del controlador de afinidad" -#: ../../Zotlabs/Module/Settings/Featured.php:62 -msgid "Feature/Addon Settings" +#: ../../Zotlabs/Module/Settings/Featured.php:64 +msgid "Addon Settings" msgstr "Ajustes de los complementos" -#: ../../Zotlabs/Module/Settings/Display.php:147 -msgid "No special theme for mobile devices" -msgstr "Sin tema especial para dispositivos móviles" +#: ../../Zotlabs/Module/Settings/Featured.php:65 +msgid "Please save/submit changes to any panel before opening another." +msgstr "Guarde o envíe los cambios a cualquier panel antes de abrir otro." -#: ../../Zotlabs/Module/Settings/Display.php:150 +#: ../../Zotlabs/Module/Settings/Display.php:139 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: ../../Zotlabs/Module/Settings/Display.php:204 +#: ../../Zotlabs/Module/Settings/Display.php:187 msgid "Display Settings" msgstr "Ajustes de visualización" -#: ../../Zotlabs/Module/Settings/Display.php:205 +#: ../../Zotlabs/Module/Settings/Display.php:188 msgid "Theme Settings" msgstr "Ajustes del tema" -#: ../../Zotlabs/Module/Settings/Display.php:206 +#: ../../Zotlabs/Module/Settings/Display.php:189 msgid "Custom Theme Settings" msgstr "Ajustes personalizados del tema" -#: ../../Zotlabs/Module/Settings/Display.php:207 +#: ../../Zotlabs/Module/Settings/Display.php:190 msgid "Content Settings" msgstr "Ajustes del contenido" -#: ../../Zotlabs/Module/Settings/Display.php:213 +#: ../../Zotlabs/Module/Settings/Display.php:196 msgid "Display Theme:" msgstr "Tema gráfico del perfil:" -#: ../../Zotlabs/Module/Settings/Display.php:214 +#: ../../Zotlabs/Module/Settings/Display.php:197 msgid "Select scheme" msgstr "Elegir un esquema" -#: ../../Zotlabs/Module/Settings/Display.php:216 -msgid "Mobile Theme:" -msgstr "Tema para el móvil:" - -#: ../../Zotlabs/Module/Settings/Display.php:217 +#: ../../Zotlabs/Module/Settings/Display.php:199 msgid "Preload images before rendering the page" msgstr "Carga previa de las imágenes antes de generar la página" -#: ../../Zotlabs/Module/Settings/Display.php:217 +#: ../../Zotlabs/Module/Settings/Display.php:199 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." -#: ../../Zotlabs/Module/Settings/Display.php:218 +#: ../../Zotlabs/Module/Settings/Display.php:200 msgid "Enable user zoom on mobile devices" msgstr "Habilitar zoom de usuario en dispositivos móviles" -#: ../../Zotlabs/Module/Settings/Display.php:219 +#: ../../Zotlabs/Module/Settings/Display.php:201 msgid "Update browser every xx seconds" msgstr "Actualizar navegador cada xx segundos" -#: ../../Zotlabs/Module/Settings/Display.php:219 +#: ../../Zotlabs/Module/Settings/Display.php:201 msgid "Minimum of 10 seconds, no maximum" msgstr "Mínimo de 10 segundos, sin máximo" -#: ../../Zotlabs/Module/Settings/Display.php:220 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "Maximum number of conversations to load at any time:" msgstr "Máximo número de conversaciones a cargar en cualquier momento:" -#: ../../Zotlabs/Module/Settings/Display.php:220 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "Maximum of 100 items" msgstr "Máximo de 100 elementos" -#: ../../Zotlabs/Module/Settings/Display.php:221 +#: ../../Zotlabs/Module/Settings/Display.php:203 msgid "Show emoticons (smilies) as images" msgstr "Mostrar emoticonos (smilies) como imágenes" -#: ../../Zotlabs/Module/Settings/Display.php:222 +#: ../../Zotlabs/Module/Settings/Display.php:204 msgid "Provide channel menu in navigation bar" msgstr "Proporcionar un menú de canales en la barra de navegación" -#: ../../Zotlabs/Module/Settings/Display.php:222 +#: ../../Zotlabs/Module/Settings/Display.php:204 msgid "Default: channel menu located in app menu" msgstr "Predeterminado: menú de canales ubicado en el menú de aplicaciones" -#: ../../Zotlabs/Module/Settings/Display.php:223 +#: ../../Zotlabs/Module/Settings/Display.php:205 msgid "Manual conversation updates" msgstr "Actualizaciones manuales de la conversación" -#: ../../Zotlabs/Module/Settings/Display.php:223 +#: ../../Zotlabs/Module/Settings/Display.php:205 msgid "Default is on, turning this off may increase screen jumping" msgstr "El valor predeterminado está activado, al desactivarlo puede aumentar el salto de pantalla" -#: ../../Zotlabs/Module/Settings/Display.php:224 +#: ../../Zotlabs/Module/Settings/Display.php:206 msgid "Link post titles to source" msgstr "Enlazar título de la publicación a la fuente original" -#: ../../Zotlabs/Module/Settings/Display.php:225 +#: ../../Zotlabs/Module/Settings/Display.php:207 msgid "System Page Layout Editor - (advanced)" msgstr "Editor de plantilla de página del sistema - (avanzado)" -#: ../../Zotlabs/Module/Settings/Display.php:228 +#: ../../Zotlabs/Module/Settings/Display.php:210 msgid "Use blog/list mode on channel page" msgstr "Usar modo blog/lista en la página de inicio del canal" -#: ../../Zotlabs/Module/Settings/Display.php:228 -#: ../../Zotlabs/Module/Settings/Display.php:229 +#: ../../Zotlabs/Module/Settings/Display.php:210 +#: ../../Zotlabs/Module/Settings/Display.php:211 msgid "(comments displayed separately)" msgstr "(comentarios mostrados de forma separada)" -#: ../../Zotlabs/Module/Settings/Display.php:229 +#: ../../Zotlabs/Module/Settings/Display.php:211 msgid "Use blog/list mode on grid page" msgstr "Mostrar mi red en modo blog" -#: ../../Zotlabs/Module/Settings/Display.php:230 +#: ../../Zotlabs/Module/Settings/Display.php:212 msgid "Channel page max height of content (in pixels)" msgstr "Altura máxima del contenido de la página del canal (en píxeles)" -#: ../../Zotlabs/Module/Settings/Display.php:230 -#: ../../Zotlabs/Module/Settings/Display.php:231 +#: ../../Zotlabs/Module/Settings/Display.php:212 +#: ../../Zotlabs/Module/Settings/Display.php:213 msgid "click to expand content exceeding this height" msgstr "Pulsar para expandir el contenido que exceda de esta altura" -#: ../../Zotlabs/Module/Settings/Display.php:231 +#: ../../Zotlabs/Module/Settings/Display.php:213 msgid "Grid page max height of content (in pixels)" msgstr "Altura máxima del contenido de mi red (en píxeles)" @@ -4066,7 +4136,7 @@ msgstr "Nombre de la aplicación" #: ../../Zotlabs/Module/Settings/Oauth.php:90 #: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:775 +#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 msgid "Consumer Key" msgstr "Consumer Key" @@ -4077,7 +4147,7 @@ msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 2 #: ../../Zotlabs/Module/Settings/Oauth.php:91 #: ../../Zotlabs/Module/Settings/Oauth.php:117 -#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:776 +#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 msgid "Consumer Secret" msgstr "Consumer Secret" @@ -4137,9 +4207,9 @@ msgstr "Editar álbum" #: ../../Zotlabs/Module/Embedphotos.php:158 #: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Photos.php:844 #: ../../Zotlabs/Module/Photos.php:1381 -#: ../../Zotlabs/Module/Profile_photo.php:437 +#: ../../Zotlabs/Module/Profile_photo.php:458 #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Storage/Browser.php:274 ../../Zotlabs/Storage/Browser.php:381 +#: ../../Zotlabs/Storage/Browser.php:277 ../../Zotlabs/Storage/Browser.php:384 #: ../../Zotlabs/Widget/Cdav.php:133 ../../Zotlabs/Widget/Cdav.php:169 #: ../../Zotlabs/Widget/Portfolio.php:110 ../../Zotlabs/Widget/Album.php:97 msgid "Upload" @@ -4206,7 +4276,7 @@ msgstr "Dirección para la foto o elemento (opcional)" #: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 #: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 #: ../../Zotlabs/Module/Filestorage.php:147 -#: ../../include/acl_selectors.php:218 +#: ../../include/acl_selectors.php:123 msgid "Permissions" msgstr "Permisos" @@ -4303,16 +4373,16 @@ msgstr "Este proceso puede tardar varios minutos en completarse. Por favor enví msgid "Authentication failed." msgstr "Falló la autenticación." -#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1665 -#: ../../include/channel.php:2301 +#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1583 +#: ../../include/channel.php:2307 msgid "Remote Authentication" msgstr "Acceso desde su servidor" -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2302 +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2308 msgid "Enter your channel address (e.g. channel@example.com)" msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" -#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2303 +#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2309 msgid "Authenticate" msgstr "Acceder" @@ -4320,23 +4390,23 @@ msgstr "Acceder" msgid "Permissions denied." msgstr "Permisos denegados." -#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2312 +#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2426 msgid "Import" msgstr "Importar" -#: ../../Zotlabs/Module/Api.php:72 ../../Zotlabs/Module/Api.php:93 +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 msgid "Authorize application connection" msgstr "Autorizar una conexión de aplicación" -#: ../../Zotlabs/Module/Api.php:73 +#: ../../Zotlabs/Module/Api.php:75 msgid "Return to your app and insert this Security Code:" msgstr "Vuelva a su aplicación e introduzca este código de seguridad: " -#: ../../Zotlabs/Module/Api.php:83 +#: ../../Zotlabs/Module/Api.php:85 msgid "Please login to continue." msgstr "Por favor inicie sesión para continuar." -#: ../../Zotlabs/Module/Api.php:95 +#: ../../Zotlabs/Module/Api.php:97 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" @@ -4354,15 +4424,15 @@ msgstr "Modificar este bloque" msgid "vcard" msgstr "vcard" -#: ../../Zotlabs/Module/Apps.php:47 ../../Zotlabs/Lib/Apps.php:223 +#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 msgid "Apps" msgstr "Aplicaciones (apps)" -#: ../../Zotlabs/Module/Apps.php:50 +#: ../../Zotlabs/Module/Apps.php:51 msgid "Manage apps" msgstr "Gestionar las aplicaciones" -#: ../../Zotlabs/Module/Apps.php:51 +#: ../../Zotlabs/Module/Apps.php:52 msgid "Create new app" msgstr "Crear una nueva aplicación" @@ -4372,7 +4442,7 @@ msgctxt "mood" msgid "%1$s is %2$s" msgstr "%1$s está %2$s" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:247 +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:253 msgid "Mood" msgstr "Estado de ánimo" @@ -4412,12 +4482,12 @@ msgstr "Nuevas" #: ../../Zotlabs/Module/Connections.php:88 #: ../../Zotlabs/Module/Connections.php:102 -#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:30 +#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 msgid "All" msgstr "Todos/as" #: ../../Zotlabs/Module/Connections.php:133 -#: ../../Zotlabs/Widget/Notifications.php:82 +#: ../../Zotlabs/Widget/Notifications.php:84 msgid "New Connections" msgstr "Nuevas conexiones" @@ -4457,70 +4527,70 @@ msgstr "Archivadas" msgid "Not connected at this location" msgstr "No está conectado/a en esta ubicación" -#: ../../Zotlabs/Module/Connections.php:258 +#: ../../Zotlabs/Module/Connections.php:263 #, php-format msgid "%1$s [%2$s]" msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Connections.php:259 +#: ../../Zotlabs/Module/Connections.php:264 msgid "Edit connection" msgstr "Editar conexión" -#: ../../Zotlabs/Module/Connections.php:261 +#: ../../Zotlabs/Module/Connections.php:266 msgid "Delete connection" msgstr "Eliminar conexión" -#: ../../Zotlabs/Module/Connections.php:270 +#: ../../Zotlabs/Module/Connections.php:275 msgid "Channel address" msgstr "Dirección del canal" -#: ../../Zotlabs/Module/Connections.php:272 +#: ../../Zotlabs/Module/Connections.php:277 msgid "Network" msgstr "Red" -#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Connections.php:280 msgid "Call" msgstr "Llamar" -#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Connections.php:282 msgid "Status" msgstr "Estado" -#: ../../Zotlabs/Module/Connections.php:279 +#: ../../Zotlabs/Module/Connections.php:284 msgid "Connected" msgstr "Conectado/a" -#: ../../Zotlabs/Module/Connections.php:281 +#: ../../Zotlabs/Module/Connections.php:286 msgid "Approve connection" msgstr "Aprobar esta conexión" -#: ../../Zotlabs/Module/Connections.php:283 +#: ../../Zotlabs/Module/Connections.php:288 msgid "Ignore connection" msgstr "Ignorar esta conexión" -#: ../../Zotlabs/Module/Connections.php:284 +#: ../../Zotlabs/Module/Connections.php:289 #: ../../Zotlabs/Module/Connedit.php:630 msgid "Ignore" msgstr "Ignorar" -#: ../../Zotlabs/Module/Connections.php:285 +#: ../../Zotlabs/Module/Connections.php:290 msgid "Recent activity" msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Connections.php:309 ../../Zotlabs/Lib/Apps.php:229 -#: ../../include/text.php:959 ../../include/nav.php:114 +#: ../../Zotlabs/Module/Connections.php:315 ../../Zotlabs/Lib/Apps.php:235 +#: ../../include/text.php:973 msgid "Connections" msgstr "Conexiones" -#: ../../Zotlabs/Module/Connections.php:314 +#: ../../Zotlabs/Module/Connections.php:320 msgid "Search your connections" msgstr "Buscar sus conexiones" -#: ../../Zotlabs/Module/Connections.php:315 +#: ../../Zotlabs/Module/Connections.php:321 msgid "Connections search" msgstr "Buscar conexiones" -#: ../../Zotlabs/Module/Connections.php:316 +#: ../../Zotlabs/Module/Connections.php:322 #: ../../Zotlabs/Module/Directory.php:396 #: ../../Zotlabs/Module/Directory.php:401 ../../include/contact_widgets.php:23 msgid "Find" @@ -4718,12 +4788,12 @@ msgid "Please wait" msgstr "Espere por favor" #: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 -#: ../../Zotlabs/Lib/ThreadItem.php:751 +#: ../../Zotlabs/Lib/ThreadItem.php:747 msgid "This is you" msgstr "Este es usted" #: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 -#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/js_strings.php:6 +#: ../../Zotlabs/Lib/ThreadItem.php:749 ../../include/js_strings.php:6 msgid "Comment" msgstr "Comentar" @@ -4773,8 +4843,8 @@ msgid "View all" msgstr "Ver todo" #: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 -#: ../../include/conversation.php:1978 ../../include/channel.php:1539 -#: ../../include/taxonomy.php:593 +#: ../../include/conversation.php:1978 ../../include/channel.php:1540 +#: ../../include/taxonomy.php:597 msgctxt "noun" msgid "Like" msgid_plural "Likes" @@ -4812,7 +4882,7 @@ msgid "Dislikes" msgstr "No me gusta" #: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 -#: ../../include/acl_selectors.php:220 +#: ../../include/acl_selectors.php:125 msgid "Close" msgstr "Cerrar" @@ -4847,7 +4917,7 @@ msgid "Error downloading wiki: " msgstr "Error al descargar el wiki: " #: ../../Zotlabs/Module/Wiki.php:197 ../../addon/gitwiki/Mod_Gitwiki.php:146 -#: ../../include/conversation.php:1925 ../../include/nav.php:526 +#: ../../include/conversation.php:1925 ../../include/nav.php:494 msgid "Wikis" msgstr "Wikis" @@ -4871,23 +4941,23 @@ msgstr "Tipo de contenido" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:348 #: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1802 -#: ../../include/features.php:378 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 +#: ../../include/text.php:1868 msgid "Markdown" msgstr "Markdown" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:348 #: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1800 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1866 msgid "BBcode" msgstr "BBcode" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1803 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1869 msgid "Text" msgstr "Texto" -#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:281 +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 #: ../../addon/gitwiki/Mod_Gitwiki.php:159 msgid "Type" msgstr "Tipo" @@ -4954,8 +5024,11 @@ msgstr "Incluir una imagen de los álbumes de fotos" msgid "Embed an image from your albums" msgstr "Incluir una imagen de sus álbumes" -#: ../../Zotlabs/Module/Wiki.php:376 ../../addon/gitwiki/Mod_Gitwiki.php:268 -#: ../../include/conversation.php:1387 ../../include/conversation.php:1434 +#: ../../Zotlabs/Module/Wiki.php:376 +#: ../../Zotlabs/Module/Profile_photo.php:465 +#: ../../Zotlabs/Module/Cover_photo.php:366 +#: ../../addon/gitwiki/Mod_Gitwiki.php:268 ../../include/conversation.php:1387 +#: ../../include/conversation.php:1434 msgid "OK" msgstr "OK" @@ -5084,7 +5157,7 @@ msgstr "Editar otro diseño" msgid "System layout" msgstr "Diseño del sistema" -#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:248 +#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 #: ../../include/conversation.php:1092 msgid "Poke" msgstr "Toques y otras cosas" @@ -5113,97 +5186,97 @@ msgstr "Elegir qué desea enviar al destinatario" msgid "Make this post private" msgstr "Convertir en privado este envío" -#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Profile_photo.php:66 #: ../../Zotlabs/Module/Cover_photo.php:56 msgid "Image uploaded but image cropping failed." msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:240 +#: ../../Zotlabs/Module/Profile_photo.php:120 +#: ../../Zotlabs/Module/Profile_photo.php:248 #: ../../include/photo/photo_driver.php:740 msgid "Profile Photos" msgstr "Fotos del perfil" -#: ../../Zotlabs/Module/Profile_photo.php:137 +#: ../../Zotlabs/Module/Profile_photo.php:142 #: ../../Zotlabs/Module/Cover_photo.php:159 msgid "Image resize failed." msgstr "El ajuste del tamaño de la imagen ha fallado." -#: ../../Zotlabs/Module/Profile_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:218 #: ../../addon/openclipatar/openclipatar.php:298 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." -#: ../../Zotlabs/Module/Profile_photo.php:217 +#: ../../Zotlabs/Module/Profile_photo.php:225 #: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 msgid "Unable to process image" msgstr "No ha sido posible procesar la imagen" -#: ../../Zotlabs/Module/Profile_photo.php:252 +#: ../../Zotlabs/Module/Profile_photo.php:260 #: ../../Zotlabs/Module/Cover_photo.php:197 msgid "Image upload failed." msgstr "La carga de la imagen ha fallado." -#: ../../Zotlabs/Module/Profile_photo.php:271 +#: ../../Zotlabs/Module/Profile_photo.php:279 #: ../../Zotlabs/Module/Cover_photo.php:214 msgid "Unable to process image." msgstr "No ha sido posible procesar la imagen." -#: ../../Zotlabs/Module/Profile_photo.php:332 -#: ../../Zotlabs/Module/Profile_photo.php:379 +#: ../../Zotlabs/Module/Profile_photo.php:343 +#: ../../Zotlabs/Module/Profile_photo.php:390 #: ../../Zotlabs/Module/Cover_photo.php:307 #: ../../Zotlabs/Module/Cover_photo.php:322 msgid "Photo not available." msgstr "Foto no disponible." -#: ../../Zotlabs/Module/Profile_photo.php:434 +#: ../../Zotlabs/Module/Profile_photo.php:455 #: ../../Zotlabs/Module/Cover_photo.php:358 msgid "Upload File:" msgstr "Subir fichero:" -#: ../../Zotlabs/Module/Profile_photo.php:435 +#: ../../Zotlabs/Module/Profile_photo.php:456 #: ../../Zotlabs/Module/Cover_photo.php:359 msgid "Select a profile:" msgstr "Seleccionar un perfil:" -#: ../../Zotlabs/Module/Profile_photo.php:436 +#: ../../Zotlabs/Module/Profile_photo.php:457 msgid "Use Photo for Profile" msgstr "Usar la fotografía para el perfil" -#: ../../Zotlabs/Module/Profile_photo.php:436 -msgid "Upload Profile Photo" -msgstr "Subir foto de perfil" +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Change Profile Photo" +msgstr "Cambiar la foto del perfil" -#: ../../Zotlabs/Module/Profile_photo.php:437 -#: ../../addon/openclipatar/openclipatar.php:182 -#: ../../addon/openclipatar/openclipatar.php:194 +#: ../../Zotlabs/Module/Profile_photo.php:458 msgid "Use" msgstr "Usar" -#: ../../Zotlabs/Module/Profile_photo.php:443 -#: ../../Zotlabs/Module/Cover_photo.php:365 -msgid "skip this step" -msgstr "Omitir este paso" - -#: ../../Zotlabs/Module/Profile_photo.php:443 -#: ../../Zotlabs/Module/Cover_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "Seleccione una foto de sus álbumes de fotos" - #: ../../Zotlabs/Module/Profile_photo.php:462 -#: ../../Zotlabs/Module/Cover_photo.php:381 +#: ../../Zotlabs/Module/Profile_photo.php:463 +#: ../../Zotlabs/Module/Cover_photo.php:363 +#: ../../Zotlabs/Module/Cover_photo.php:364 +msgid "Use a photo from your albums" +msgstr "Usar una foto de sus álbumes" + +#: ../../Zotlabs/Module/Profile_photo.php:467 +#: ../../Zotlabs/Module/Cover_photo.php:369 +msgid "Select existing photo" +msgstr "Seleccionar una foto existente" + +#: ../../Zotlabs/Module/Profile_photo.php:486 +#: ../../Zotlabs/Module/Cover_photo.php:386 msgid "Crop Image" msgstr "Recortar imagen" -#: ../../Zotlabs/Module/Profile_photo.php:463 -#: ../../Zotlabs/Module/Cover_photo.php:382 +#: ../../Zotlabs/Module/Profile_photo.php:487 +#: ../../Zotlabs/Module/Cover_photo.php:387 msgid "Please adjust the image cropping for optimum viewing." msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." -#: ../../Zotlabs/Module/Profile_photo.php:465 -#: ../../Zotlabs/Module/Cover_photo.php:384 +#: ../../Zotlabs/Module/Profile_photo.php:489 +#: ../../Zotlabs/Module/Cover_photo.php:389 msgid "Done Editing" msgstr "Edición completada" @@ -5215,65 +5288,65 @@ msgstr "Ausente" msgid "Online" msgstr "Conectado/a" -#: ../../Zotlabs/Module/Item.php:193 +#: ../../Zotlabs/Module/Item.php:194 msgid "Unable to locate original post." msgstr "No ha sido posible encontrar la entrada original." -#: ../../Zotlabs/Module/Item.php:475 +#: ../../Zotlabs/Module/Item.php:476 msgid "Empty post discarded." msgstr "La entrada vacía ha sido desechada." -#: ../../Zotlabs/Module/Item.php:853 +#: ../../Zotlabs/Module/Item.php:867 msgid "Duplicate post suppressed." msgstr "Se ha suprimido la entrada duplicada." -#: ../../Zotlabs/Module/Item.php:998 +#: ../../Zotlabs/Module/Item.php:1012 msgid "System error. Post not saved." msgstr "Error del sistema. La entrada no se ha podido salvar." -#: ../../Zotlabs/Module/Item.php:1034 +#: ../../Zotlabs/Module/Item.php:1048 msgid "Your comment is awaiting approval." msgstr "Su comentario está pendiente de aprobación." -#: ../../Zotlabs/Module/Item.php:1139 +#: ../../Zotlabs/Module/Item.php:1153 msgid "Unable to obtain post information from database." msgstr "No ha sido posible obtener información de la entrada en la base de datos." -#: ../../Zotlabs/Module/Item.php:1168 +#: ../../Zotlabs/Module/Item.php:1182 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." -#: ../../Zotlabs/Module/Item.php:1175 +#: ../../Zotlabs/Module/Item.php:1189 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Ha alcanzado su límite de %1$.0f páginas web." -#: ../../Zotlabs/Module/Ping.php:311 +#: ../../Zotlabs/Module/Ping.php:320 msgid "sent you a private message" msgstr "le ha enviado un mensaje privado" -#: ../../Zotlabs/Module/Ping.php:360 +#: ../../Zotlabs/Module/Ping.php:372 msgid "added your channel" msgstr "añadió este canal a sus conexiones" -#: ../../Zotlabs/Module/Ping.php:384 +#: ../../Zotlabs/Module/Ping.php:396 msgid "requires approval" msgstr "requiere aprobación" -#: ../../Zotlabs/Module/Ping.php:394 +#: ../../Zotlabs/Module/Ping.php:406 msgid "g A l F d" msgstr "g A l d F" -#: ../../Zotlabs/Module/Ping.php:412 +#: ../../Zotlabs/Module/Ping.php:424 msgid "[today]" msgstr "[hoy]" -#: ../../Zotlabs/Module/Ping.php:421 +#: ../../Zotlabs/Module/Ping.php:433 msgid "posted an event" msgstr "publicó un evento" -#: ../../Zotlabs/Module/Ping.php:454 +#: ../../Zotlabs/Module/Ping.php:466 msgid "shared a file with you" msgstr "compartió un archivo con usted" @@ -5283,7 +5356,7 @@ msgstr "Elemento no válido." #: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 #: ../../Zotlabs/Module/Display.php:133 -#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:168 +#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 #: ../../include/help.php:81 msgid "Page not found." msgstr "Página no encontrada." @@ -5336,9 +5409,9 @@ msgstr "No ha sido posible establecer los parámetros de la libreta de direccion msgid "Connection has been removed." msgstr "La conexión ha sido eliminada." -#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:241 +#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 #: ../../addon/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:1032 ../../include/nav.php:148 +#: ../../include/conversation.php:1032 ../../include/nav.php:114 msgid "View Profile" msgstr "Ver el perfil" @@ -5448,15 +5521,15 @@ msgstr "Afinidad" msgid "Open Set Affinity section by default" msgstr "Abrir por defecto la sección para definir la afinidad" -#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:26 +#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 msgid "Me" msgstr "Yo" -#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:27 +#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 msgid "Family" msgstr "Familia" -#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:29 +#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 msgid "Acquaintances" msgstr "Conocidos/as" @@ -5488,119 +5561,124 @@ msgstr "Ajustar el perfil" msgid "Set Affinity & Profile" msgstr "Ajustar la afinidad y el perfil" -#: ../../Zotlabs/Module/Connedit.php:855 +#: ../../Zotlabs/Module/Connedit.php:838 msgid "This connection is unreachable from this location." msgstr "No se puede acceder a la conexión desde este sitio." -#: ../../Zotlabs/Module/Connedit.php:856 +#: ../../Zotlabs/Module/Connedit.php:839 msgid "This connection may be unreachable from other channel locations." msgstr "Esta conexión puede ser inaccesible desde otras ubicaciones del canal." -#: ../../Zotlabs/Module/Connedit.php:858 +#: ../../Zotlabs/Module/Connedit.php:841 msgid "Location independence is not supported by their network." msgstr "La independencia de ubicación no es compatible con su red." -#: ../../Zotlabs/Module/Connedit.php:864 +#: ../../Zotlabs/Module/Connedit.php:847 msgid "" "This connection is unreachable from this location. Location independence is " "not supported by their network." msgstr "Esta conexión no es accesible desde este sitio. La independencia de ubicación no es compatible con su red." -#: ../../Zotlabs/Module/Connedit.php:867 ../../Zotlabs/Module/Defperms.php:238 +#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 #: ../../Zotlabs/Widget/Settings_menu.php:109 msgid "Connection Default Permissions" msgstr "Permisos predeterminados de conexión" -#: ../../Zotlabs/Module/Connedit.php:867 ../../include/items.php:4134 +#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4164 #, php-format msgid "Connection: %s" msgstr "Conexión: %s" -#: ../../Zotlabs/Module/Connedit.php:868 ../../Zotlabs/Module/Defperms.php:239 +#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 msgid "Apply these permissions automatically" msgstr "Aplicar estos permisos automaticamente" -#: ../../Zotlabs/Module/Connedit.php:868 +#: ../../Zotlabs/Module/Connedit.php:851 msgid "Connection requests will be approved without your interaction" msgstr "Las solicitudes de conexión serán aprobadas sin su intervención" -#: ../../Zotlabs/Module/Connedit.php:869 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 msgid "Permission role" msgstr "Rol de acceso" -#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Defperms.php:241 +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 +msgid "Loading" +msgstr "Cargando" + +#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 msgid "Add permission role" msgstr "Añadir un rol de acceso" -#: ../../Zotlabs/Module/Connedit.php:877 +#: ../../Zotlabs/Module/Connedit.php:860 msgid "This connection's primary address is" msgstr "La dirección primaria de esta conexión es" -#: ../../Zotlabs/Module/Connedit.php:878 +#: ../../Zotlabs/Module/Connedit.php:861 msgid "Available locations:" msgstr "Ubicaciones disponibles:" -#: ../../Zotlabs/Module/Connedit.php:883 ../../Zotlabs/Module/Defperms.php:245 +#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." -#: ../../Zotlabs/Module/Connedit.php:884 +#: ../../Zotlabs/Module/Connedit.php:867 msgid "Connection Tools" msgstr "Gestión de las conexiones" -#: ../../Zotlabs/Module/Connedit.php:886 +#: ../../Zotlabs/Module/Connedit.php:869 msgid "Slide to adjust your degree of friendship" msgstr "Deslizar para ajustar el grado de amistad" -#: ../../Zotlabs/Module/Connedit.php:887 ../../Zotlabs/Module/Rate.php:155 +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Valoración" -#: ../../Zotlabs/Module/Connedit.php:888 +#: ../../Zotlabs/Module/Connedit.php:871 msgid "Slide to adjust your rating" msgstr "Deslizar para ajustar su valoración" -#: ../../Zotlabs/Module/Connedit.php:889 ../../Zotlabs/Module/Connedit.php:894 +#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 msgid "Optionally explain your rating" msgstr "Opcionalmente, puede explicar su valoración" -#: ../../Zotlabs/Module/Connedit.php:891 +#: ../../Zotlabs/Module/Connedit.php:874 msgid "Custom Filter" msgstr "Filtro personalizado" -#: ../../Zotlabs/Module/Connedit.php:892 +#: ../../Zotlabs/Module/Connedit.php:875 msgid "Only import posts with this text" msgstr "Importar solo entradas que contengan este texto" -#: ../../Zotlabs/Module/Connedit.php:892 ../../Zotlabs/Module/Connedit.php:893 +#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo" -#: ../../Zotlabs/Module/Connedit.php:893 +#: ../../Zotlabs/Module/Connedit.php:876 msgid "Do not import posts with this text" msgstr "No importar entradas que contengan este texto" -#: ../../Zotlabs/Module/Connedit.php:895 +#: ../../Zotlabs/Module/Connedit.php:878 msgid "This information is public!" msgstr "¡Esta información es pública!" -#: ../../Zotlabs/Module/Connedit.php:900 +#: ../../Zotlabs/Module/Connedit.php:883 msgid "Connection Pending Approval" msgstr "Conexión pendiente de aprobación" -#: ../../Zotlabs/Module/Connedit.php:905 +#: ../../Zotlabs/Module/Connedit.php:888 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." -#: ../../Zotlabs/Module/Connedit.php:912 +#: ../../Zotlabs/Module/Connedit.php:895 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -5608,11 +5686,11 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." -#: ../../Zotlabs/Module/Connedit.php:913 +#: ../../Zotlabs/Module/Connedit.php:896 msgid "Last update:" msgstr "Última actualización:" -#: ../../Zotlabs/Module/Connedit.php:922 +#: ../../Zotlabs/Module/Connedit.php:904 msgid "Details" msgstr "Detalles" @@ -5646,7 +5724,7 @@ msgid "Please enter a link URL:" msgstr "Por favor, introduzca la dirección del enlace:" #: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:768 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:764 #: ../../include/conversation.php:1432 msgid "Encrypt text" msgstr "Cifrar texto" @@ -5680,14 +5758,14 @@ msgstr "Caducidad" msgid "min" msgstr "min" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:242 -#: ../../include/conversation.php:1831 ../../include/nav.php:433 +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 +#: ../../include/conversation.php:1831 ../../include/nav.php:401 msgid "Photos" msgstr "Fotos" -#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:237 -#: ../../Zotlabs/Storage/Browser.php:269 ../../include/conversation.php:1839 -#: ../../include/nav.php:441 +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1839 +#: ../../include/nav.php:409 msgid "Files" msgstr "Ficheros" @@ -5727,7 +5805,7 @@ msgstr "El menú se puede usar para guardar marcadores" msgid "Submit and proceed" msgstr "Enviar y proceder" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2289 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2403 msgid "Menus" msgstr "Menús" @@ -5779,12 +5857,12 @@ msgstr "El título del menú tal como será visto por los demás" msgid "Allow bookmarks" msgstr "Permitir marcadores" -#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2290 +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2404 msgid "Layouts" msgstr "Plantillas" -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:245 -#: ../../include/nav.php:208 ../../include/nav.php:312 +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 +#: ../../include/nav.php:176 ../../include/nav.php:280 #: ../../include/help.php:68 ../../include/help.php:74 msgid "Help" msgstr "Ayuda" @@ -5802,20 +5880,49 @@ msgid "Download PDL file" msgstr "Descargar el fichero PDL" #: ../../Zotlabs/Module/Cloud.php:114 +msgid "Please refresh page" +msgstr "Por favor, recargue la página" + +#: ../../Zotlabs/Module/Cloud.php:117 msgid "Unknown error" msgstr "Error desconocido" +#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." +msgstr "Ha fallado el token de verificación." + +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "Verificación obligatoria del correo electrónico" + +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "Se ha enviado un token de verificación a su dirección de correo electrónico [%s]. Ingrese ese símbolo aquí para completar el paso de verificación de cuenta. Por favor, espere unos minutos para el envío, y revise su carpeta de spam si no ve el mensaje." + +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "Reenvío de correo electrónico" + +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "Token de validación" + #: ../../Zotlabs/Module/Tagger.php:48 msgid "Post not found." msgstr "Mensaje no encontrado." #: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 -#: ../../include/bbcode.php:335 +#: ../../include/bbcode.php:339 msgid "post" msgstr "la entrada" #: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 -#: ../../include/text.php:1946 +#: ../../include/text.php:2012 msgid "comment" msgstr "el comentario" @@ -5863,7 +5970,7 @@ msgid "Could not create privacy group." msgstr "No se puede crear el grupo de canales" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 -#: ../../include/items.php:4101 +#: ../../include/items.php:4131 msgid "Privacy group not found." msgstr "Grupo de canales no encontrado." @@ -6038,7 +6145,8 @@ msgstr "Personales" msgid "Relation" msgstr "Relación" -#: ../../Zotlabs/Module/Profiles.php:739 ../../include/datetime.php:58 +#: ../../Zotlabs/Module/Profiles.php:739 ../../Zotlabs/Widget/Newmember.php:53 +#: ../../include/datetime.php:58 msgid "Miscellaneous" msgstr "Varios" @@ -6180,10 +6288,73 @@ msgid "Profile Image" msgstr "Imagen del perfil" #: ../../Zotlabs/Module/Profiles.php:833 ../../include/channel.php:1297 -#: ../../include/nav.php:151 +#: ../../include/nav.php:117 msgid "Edit Profiles" msgstr "Editar perfiles" +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "Esta página está disponible sólo para los miembros del sitio" + +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" +msgstr "Bienvenido/a" + +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" +msgstr "¿Qué le gustaría hacer?" + +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "Por favor añada esta página a sus marcadores si desea volver a ella en el futuro." + +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "Subir una foto de perfil" + +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" +msgstr "Subir una foto de portada del perfil" + +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "Editar su perfil por defecto" + +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:43 +msgid "View friend suggestions" +msgstr "Ver sugerencias de amistad" + +#: ../../Zotlabs/Module/Go.php:39 ../../Zotlabs/Widget/Newmember.php:42 +msgid "View the channel directory" +msgstr "Ver el directorio de canales" + +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "Ver o modificar los ajustes de su canal" + +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "Ver el sitio o la documentación del proyecto" + +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "Visitar la página principal de su canal" + +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "Vea sus conexiones y/o agregue a alguien cuya dirección ya conozca" + +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "Ver su \"stream\" personal (puede que esté vacío hasta que agregue algunas conexiones)" + +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "Ver el \"stream\" público. Advertencia: este contenido no está moderado" + #: ../../Zotlabs/Module/Editwebpage.php:139 msgid "Page link" msgstr "Enlace de la página" @@ -6196,8 +6367,8 @@ msgstr "Editar la página web" msgid "Create a new channel" msgstr "Crear un nuevo canal" -#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:234 -#: ../../include/nav.php:136 ../../include/nav.php:222 +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 +#: ../../include/nav.php:102 ../../include/nav.php:190 msgid "Channel Manager" msgstr "Administración de canales" @@ -6231,7 +6402,13 @@ msgstr "%d nuevas solicitudes de conexión" msgid "Delegated Channel" msgstr "Canal delegado" -#: ../../Zotlabs/Module/Cards.php:95 +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:181 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1890 +#: ../../include/features.php:114 ../../include/nav.php:458 +msgid "Cards" +msgstr "Fichas" + +#: ../../Zotlabs/Module/Cards.php:99 msgid "Add Card" msgstr "Añadir una ficha" @@ -6239,45 +6416,45 @@ msgstr "Añadir una ficha" msgid "This directory server requires an access token" msgstr "El servidor de este directorio necesita un \"token\" de acceso" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Siteinfo.php:18 msgid "About this site" msgstr "Acerca de este sitio" -#: ../../Zotlabs/Module/Siteinfo.php:20 +#: ../../Zotlabs/Module/Siteinfo.php:19 msgid "Site Name" msgstr "Nombre del sitio" -#: ../../Zotlabs/Module/Siteinfo.php:24 +#: ../../Zotlabs/Module/Siteinfo.php:23 msgid "Administrator" msgstr "Administrador" -#: ../../Zotlabs/Module/Siteinfo.php:26 ../../Zotlabs/Module/Register.php:229 +#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 msgid "Terms of Service" msgstr "Términos del servicio" -#: ../../Zotlabs/Module/Siteinfo.php:27 +#: ../../Zotlabs/Module/Siteinfo.php:26 msgid "Software and Project information" msgstr "Información sobre el software y el proyecto" -#: ../../Zotlabs/Module/Siteinfo.php:28 +#: ../../Zotlabs/Module/Siteinfo.php:27 msgid "This site is powered by $Projectname" msgstr "Este sitio funciona con $Projectname" -#: ../../Zotlabs/Module/Siteinfo.php:29 +#: ../../Zotlabs/Module/Siteinfo.php:28 msgid "" "Federated and decentralised networking and identity services provided by Zot" msgstr "Servicios federados y descentralizados de identidad y redes proporcionados por Zot" -#: ../../Zotlabs/Module/Siteinfo.php:31 +#: ../../Zotlabs/Module/Siteinfo.php:30 #, php-format msgid "Version %s" msgstr "Versión %s" -#: ../../Zotlabs/Module/Siteinfo.php:32 +#: ../../Zotlabs/Module/Siteinfo.php:31 msgid "Project homepage" msgstr "Página principal del proyecto" -#: ../../Zotlabs/Module/Siteinfo.php:33 +#: ../../Zotlabs/Module/Siteinfo.php:32 msgid "Developer homepage" msgstr "Página principal del desarrollador" @@ -6318,8 +6495,8 @@ msgstr "Exportar elementos de una página web" msgid "Export selected" msgstr "Exportar los elementos seleccionados" -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:238 -#: ../../include/conversation.php:1912 ../../include/nav.php:513 +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 +#: ../../include/conversation.php:1912 ../../include/nav.php:481 msgid "Webpages" msgstr "Páginas web" @@ -6479,7 +6656,7 @@ msgid "*" msgstr "*" #: ../../Zotlabs/Module/Sources.php:96 -#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:228 +#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:274 msgid "Channel Sources" msgstr "Orígenes de los contenidos del canal" @@ -6535,88 +6712,88 @@ msgstr "Fuente eliminada" msgid "Unable to remove source." msgstr "No se puede eliminar la fuente." -#: ../../Zotlabs/Module/Like.php:22 +#: ../../Zotlabs/Module/Like.php:54 msgid "Like/Dislike" msgstr "Me gusta/No me gusta" -#: ../../Zotlabs/Module/Like.php:27 +#: ../../Zotlabs/Module/Like.php:59 msgid "This action is restricted to members." msgstr "Esta acción está restringida solo para miembros." -#: ../../Zotlabs/Module/Like.php:28 +#: ../../Zotlabs/Module/Like.php:60 msgid "" "Please login with your $Projectname ID or register as a new $Projectname member to continue." msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." -#: ../../Zotlabs/Module/Like.php:108 ../../Zotlabs/Module/Like.php:134 -#: ../../Zotlabs/Module/Like.php:172 +#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 +#: ../../Zotlabs/Module/Like.php:173 msgid "Invalid request." msgstr "Solicitud incorrecta." -#: ../../Zotlabs/Module/Like.php:120 ../../include/conversation.php:122 +#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 msgid "channel" msgstr "el canal" -#: ../../Zotlabs/Module/Like.php:149 +#: ../../Zotlabs/Module/Like.php:150 msgid "thing" msgstr "elemento" -#: ../../Zotlabs/Module/Like.php:195 +#: ../../Zotlabs/Module/Like.php:196 msgid "Channel unavailable." msgstr "Canal no disponible." -#: ../../Zotlabs/Module/Like.php:243 +#: ../../Zotlabs/Module/Like.php:244 msgid "Previous action reversed." msgstr "Acción anterior revocada." -#: ../../Zotlabs/Module/Like.php:435 ../../addon/diaspora/Receiver.php:1462 -#: ../../addon/pubcrawl/as.php:1330 ../../include/conversation.php:160 +#: ../../Zotlabs/Module/Like.php:436 ../../addon/diaspora/Receiver.php:1547 +#: ../../addon/pubcrawl/as.php:1394 ../../include/conversation.php:160 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:437 ../../addon/pubcrawl/as.php:1332 +#: ../../Zotlabs/Module/Like.php:438 ../../addon/pubcrawl/as.php:1396 #: ../../include/conversation.php:163 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "A %1$s no le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:439 +#: ../../Zotlabs/Module/Like.php:440 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%3$s de %2$s: %1$s está de acuerdo" -#: ../../Zotlabs/Module/Like.php:441 +#: ../../Zotlabs/Module/Like.php:442 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%3$s de %2$s: %1$s no está de acuerdo" -#: ../../Zotlabs/Module/Like.php:443 +#: ../../Zotlabs/Module/Like.php:444 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "%3$s de %2$s: %1$s se abstiene" -#: ../../Zotlabs/Module/Like.php:445 +#: ../../Zotlabs/Module/Like.php:446 ../../addon/diaspora/Receiver.php:2031 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s participa" -#: ../../Zotlabs/Module/Like.php:447 +#: ../../Zotlabs/Module/Like.php:448 ../../addon/diaspora/Receiver.php:2033 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s no participa" -#: ../../Zotlabs/Module/Like.php:449 +#: ../../Zotlabs/Module/Like.php:450 ../../addon/diaspora/Receiver.php:2035 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%3$s de %2$s: %1$s quizá participe" -#: ../../Zotlabs/Module/Like.php:561 +#: ../../Zotlabs/Module/Like.php:562 msgid "Action completed." msgstr "Acción completada." -#: ../../Zotlabs/Module/Like.php:562 +#: ../../Zotlabs/Module/Like.php:563 msgid "Thank you." msgstr "Gracias." @@ -6639,12 +6816,12 @@ msgstr "Estado:" msgid "Homepage: " msgstr "Página personal:" -#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1564 +#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1565 msgid "Age:" msgstr "Edad:" #: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1392 -#: ../../include/event.php:53 ../../include/event.php:85 +#: ../../include/event.php:54 ../../include/event.php:86 msgid "Location:" msgstr "Ubicación:" @@ -6652,11 +6829,11 @@ msgstr "Ubicación:" msgid "Description:" msgstr "Descripción:" -#: ../../Zotlabs/Module/Directory.php:330 ../../include/channel.php:1580 +#: ../../Zotlabs/Module/Directory.php:330 ../../include/channel.php:1581 msgid "Hometown:" msgstr "Lugar de nacimiento:" -#: ../../Zotlabs/Module/Directory.php:332 ../../include/channel.php:1588 +#: ../../Zotlabs/Module/Directory.php:332 ../../include/channel.php:1589 msgid "About:" msgstr "Sobre mí:" @@ -6896,19 +7073,19 @@ msgstr "Software" msgid "Rate" msgstr "Valorar" -#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 msgid "webpage" msgstr "página web" -#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:269 +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:273 msgid "block" msgstr "bloque" -#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:266 +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 msgid "layout" msgstr "plantilla" -#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:272 +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 msgid "menu" msgstr "menú" @@ -6968,21 +7145,21 @@ msgstr "Por favor, confirme que acepta los Términos del servicio. El registro h msgid "Passwords do not match." msgstr "Las contraseñas no coinciden." -#: ../../Zotlabs/Module/Register.php:127 ../../Zotlabs/Module/Register.php:137 +#: ../../Zotlabs/Module/Register.php:132 +msgid "Registration successful. Continue to create your first channel..." +msgstr "Registro exitoso. Continúe creando tu primer canal..." + +#: ../../Zotlabs/Module/Register.php:135 msgid "" "Registration successful. Please check your email for validation " "instructions." msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." -#: ../../Zotlabs/Module/Register.php:135 -msgid "Registration successful. Continue to create your first channel..." -msgstr "Registro exitoso. Continúe creando tu primer canal..." - -#: ../../Zotlabs/Module/Register.php:144 +#: ../../Zotlabs/Module/Register.php:142 msgid "Your registration is pending approval by the site owner." msgstr "Su registro está pendiente de aprobación por el propietario del sitio." -#: ../../Zotlabs/Module/Register.php:147 +#: ../../Zotlabs/Module/Register.php:145 msgid "Your registration can not be processed." msgstr "Su registro no puede ser procesado." @@ -7004,97 +7181,97 @@ msgid "" "Please try again tomorrow." msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." -#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/Register.php:238 #, php-format msgid "I accept the %s for this website" msgstr "Acepto los %s de este sitio" -#: ../../Zotlabs/Module/Register.php:241 +#: ../../Zotlabs/Module/Register.php:245 #, php-format msgid "I am over %s years of age and accept the %s for this website" msgstr "Tengo más de %s años de edad y acepto los %s de este sitio web" -#: ../../Zotlabs/Module/Register.php:245 +#: ../../Zotlabs/Module/Register.php:250 msgid "Your email address" msgstr "Su dirección de correo electrónico" -#: ../../Zotlabs/Module/Register.php:246 +#: ../../Zotlabs/Module/Register.php:251 msgid "Choose a password" msgstr "Elija una contraseña" -#: ../../Zotlabs/Module/Register.php:247 +#: ../../Zotlabs/Module/Register.php:252 msgid "Please re-enter your password" msgstr "Por favor, vuelva a escribir su contraseña" -#: ../../Zotlabs/Module/Register.php:248 +#: ../../Zotlabs/Module/Register.php:253 msgid "Please enter your invitation code" msgstr "Por favor, introduzca el código de su invitación" -#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Register.php:258 msgid "no" msgstr "no" -#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Register.php:258 msgid "yes" msgstr "sí" -#: ../../Zotlabs/Module/Register.php:268 +#: ../../Zotlabs/Module/Register.php:274 msgid "Membership on this site is by invitation only." msgstr "Para registrarse en este sitio es necesaria una invitación." -#: ../../Zotlabs/Module/Register.php:280 ../../boot.php:1645 -#: ../../include/nav.php:196 +#: ../../Zotlabs/Module/Register.php:286 ../../boot.php:1563 +#: ../../include/nav.php:164 msgid "Register" msgstr "Registrarse" -#: ../../Zotlabs/Module/Register.php:281 +#: ../../Zotlabs/Module/Register.php:287 msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Este sitio puede requerir una verificación de correo electrónico después de enviar este formulario. Si es devuelto a una página de inicio de sesión, compruebe su email para recibir y leer las instrucciones." +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones." #: ../../Zotlabs/Module/Cover_photo.php:136 #: ../../Zotlabs/Module/Cover_photo.php:186 msgid "Cover Photos" msgstr "Imágenes de portada del perfil" -#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4478 +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4508 msgid "female" msgstr "mujer" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4479 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4509 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4480 +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4510 msgid "male" msgstr "hombre" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4481 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4511 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4483 +#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4513 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2053 +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2059 msgid "cover photo" msgstr "Imagen de portada del perfil" #: ../../Zotlabs/Module/Cover_photo.php:360 -msgid "Upload Cover Photo" -msgstr "Subir imagen de portada del perfil" +msgid "Change Cover Photo" +msgstr "Cambiar la foto de portada del perfil" #: ../../Zotlabs/Module/Help.php:23 msgid "Documentation Search" msgstr "Búsqueda de Documentación" #: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1821 -#: ../../include/nav.php:423 +#: ../../include/nav.php:391 msgid "About" msgstr "Mi perfil" @@ -7118,11 +7295,11 @@ msgstr "Documentación de $Projectname" msgid "Contents" msgstr "Contenidos" -#: ../../Zotlabs/Module/Display.php:349 +#: ../../Zotlabs/Module/Display.php:351 msgid "Article" msgstr "Artículo" -#: ../../Zotlabs/Module/Display.php:401 +#: ../../Zotlabs/Module/Display.php:403 msgid "Item has been removed." msgstr "Se ha eliminado el elemento." @@ -7138,44 +7315,44 @@ msgstr "Eliminar etiqueta del elemento." msgid "Select a tag to remove: " msgstr "Seleccionar una etiqueta para eliminar:" -#: ../../Zotlabs/Module/Network.php:97 +#: ../../Zotlabs/Module/Network.php:100 msgid "No such group" msgstr "No se encuentra el grupo" -#: ../../Zotlabs/Module/Network.php:137 +#: ../../Zotlabs/Module/Network.php:142 msgid "No such channel" msgstr "No se encuentra el canal" -#: ../../Zotlabs/Module/Network.php:142 +#: ../../Zotlabs/Module/Network.php:147 msgid "forum" msgstr "foro" -#: ../../Zotlabs/Module/Network.php:154 +#: ../../Zotlabs/Module/Network.php:159 msgid "Search Results For:" msgstr "Buscar resultados para:" -#: ../../Zotlabs/Module/Network.php:222 +#: ../../Zotlabs/Module/Network.php:230 msgid "Privacy group is empty" msgstr "El grupo de canales está vacío" -#: ../../Zotlabs/Module/Network.php:231 +#: ../../Zotlabs/Module/Network.php:240 msgid "Privacy group: " msgstr "Grupo de canales: " -#: ../../Zotlabs/Module/Network.php:257 +#: ../../Zotlabs/Module/Network.php:268 msgid "Invalid connection." msgstr "Conexión no válida." -#: ../../Zotlabs/Module/Network.php:276 ../../addon/redred/redred.php:65 +#: ../../Zotlabs/Module/Network.php:289 ../../addon/redred/redred.php:65 msgid "Invalid channel." msgstr "El canal no es válido." -#: ../../Zotlabs/Module/Acl.php:358 +#: ../../Zotlabs/Module/Acl.php:361 msgid "network" msgstr "red" #: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../addon/opensearch/opensearch.php:42 +#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 msgid "$Projectname" msgstr "$Projectname" @@ -7225,7 +7402,7 @@ msgid "Show URL to this file" msgstr "Mostrar la dirección de este fichero" #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 +#: ../../Zotlabs/Storage/Browser.php:397 msgid "Show in your contacts shared folder" msgstr "Mostrar en la carpeta compartida con sus contactos" @@ -7241,16 +7418,24 @@ msgstr "Ninguna conexión en común." msgid "View Common Connections" msgstr "Ver las conexiones comunes" +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "Reenvío del email de verificación" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "No se puede reenviar el mensaje de verificación por correo electrónico." + #: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "Sin conexiones." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:83 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visitar el perfil de %s [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:113 msgid "View Connections" msgstr "Ver conexiones" @@ -7359,7 +7544,7 @@ msgid "" "Password reset failed." msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1673 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1591 msgid "Password Reset" msgstr "Restablecer la contraseña" @@ -7433,143 +7618,143 @@ msgstr "4. Experto - Puedo escribir código informático" msgid "5. Wizard - I probably know more than you do" msgstr "5. Colaborador - probablemente sé más que tú" -#: ../../Zotlabs/Lib/Apps.php:225 +#: ../../Zotlabs/Lib/Apps.php:231 msgid "Site Admin" msgstr "Administrador del sitio" -#: ../../Zotlabs/Lib/Apps.php:226 ../../addon/buglink/buglink.php:16 +#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 msgid "Report Bug" msgstr "Informe de errores" -#: ../../Zotlabs/Lib/Apps.php:227 +#: ../../Zotlabs/Lib/Apps.php:233 msgid "View Bookmarks" msgstr "Ver los marcadores" -#: ../../Zotlabs/Lib/Apps.php:228 +#: ../../Zotlabs/Lib/Apps.php:234 msgid "My Chatrooms" msgstr "Mis salas de chat" -#: ../../Zotlabs/Lib/Apps.php:230 +#: ../../Zotlabs/Lib/Apps.php:236 msgid "Firefox Share" msgstr "Servicio de compartición de Firefox" -#: ../../Zotlabs/Lib/Apps.php:231 +#: ../../Zotlabs/Lib/Apps.php:237 msgid "Remote Diagnostics" msgstr "Diagnóstico remoto" -#: ../../Zotlabs/Lib/Apps.php:232 ../../include/features.php:352 +#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:390 msgid "Suggest Channels" msgstr "Sugerir canales" -#: ../../Zotlabs/Lib/Apps.php:233 ../../boot.php:1664 -#: ../../include/nav.php:160 ../../include/nav.php:164 +#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1582 +#: ../../include/nav.php:126 ../../include/nav.php:130 msgid "Login" msgstr "Iniciar sesión" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/nav.php:105 +#: ../../Zotlabs/Lib/Apps.php:241 msgid "Activity" msgstr "Actividad" -#: ../../Zotlabs/Lib/Apps.php:239 ../../include/conversation.php:1928 -#: ../../include/features.php:95 ../../include/nav.php:529 +#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1928 +#: ../../include/features.php:87 ../../include/nav.php:497 msgid "Wiki" msgstr "Wiki" -#: ../../Zotlabs/Lib/Apps.php:240 ../../include/nav.php:109 +#: ../../Zotlabs/Lib/Apps.php:246 msgid "Channel Home" msgstr "Mi canal" -#: ../../Zotlabs/Lib/Apps.php:243 ../../include/conversation.php:1850 -#: ../../include/conversation.php:1853 ../../include/nav.php:131 +#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1850 +#: ../../include/conversation.php:1853 msgid "Events" msgstr "Eventos" -#: ../../Zotlabs/Lib/Apps.php:244 +#: ../../Zotlabs/Lib/Apps.php:250 msgid "Directory" msgstr "Directorio" -#: ../../Zotlabs/Lib/Apps.php:246 ../../include/nav.php:123 +#: ../../Zotlabs/Lib/Apps.php:252 msgid "Mail" msgstr "Correo" -#: ../../Zotlabs/Lib/Apps.php:249 +#: ../../Zotlabs/Lib/Apps.php:255 msgid "Chat" msgstr "Chat" -#: ../../Zotlabs/Lib/Apps.php:251 +#: ../../Zotlabs/Lib/Apps.php:257 msgid "Probe" msgstr "Probar" -#: ../../Zotlabs/Lib/Apps.php:252 +#: ../../Zotlabs/Lib/Apps.php:258 msgid "Suggest" msgstr "Sugerir" -#: ../../Zotlabs/Lib/Apps.php:253 +#: ../../Zotlabs/Lib/Apps.php:259 msgid "Random Channel" msgstr "Canal aleatorio" -#: ../../Zotlabs/Lib/Apps.php:254 +#: ../../Zotlabs/Lib/Apps.php:260 msgid "Invite" msgstr "Invitar" -#: ../../Zotlabs/Lib/Apps.php:255 ../../Zotlabs/Widget/Admin.php:26 +#: ../../Zotlabs/Lib/Apps.php:261 ../../Zotlabs/Widget/Admin.php:26 msgid "Features" msgstr "Funcionalidades" -#: ../../Zotlabs/Lib/Apps.php:256 ../../addon/openid/MysqlProvider.php:69 +#: ../../Zotlabs/Lib/Apps.php:262 ../../addon/openid/MysqlProvider.php:69 msgid "Language" msgstr "Idioma" -#: ../../Zotlabs/Lib/Apps.php:257 +#: ../../Zotlabs/Lib/Apps.php:263 msgid "Post" msgstr "Publicación" -#: ../../Zotlabs/Lib/Apps.php:258 ../../addon/openid/MysqlProvider.php:58 +#: ../../Zotlabs/Lib/Apps.php:264 ../../addon/openid/MysqlProvider.php:58 #: ../../addon/openid/MysqlProvider.php:59 #: ../../addon/openid/MysqlProvider.php:60 msgid "Profile Photo" msgstr "Foto del perfil" -#: ../../Zotlabs/Lib/Apps.php:397 +#: ../../Zotlabs/Lib/Apps.php:407 msgid "Purchase" msgstr "Comprar" -#: ../../Zotlabs/Lib/Apps.php:401 +#: ../../Zotlabs/Lib/Apps.php:411 msgid "Undelete" msgstr "Recuperar" -#: ../../Zotlabs/Lib/Apps.php:409 +#: ../../Zotlabs/Lib/Apps.php:419 msgid "Add to app-tray" msgstr "Añadir a la bandeja de aplicaciones" -#: ../../Zotlabs/Lib/Apps.php:410 +#: ../../Zotlabs/Lib/Apps.php:420 msgid "Remove from app-tray" msgstr "Quitar de la bandeja de aplicaciones" -#: ../../Zotlabs/Lib/Apps.php:411 +#: ../../Zotlabs/Lib/Apps.php:421 msgid "Pin to navbar" msgstr "Fijar en la barra de navegación" -#: ../../Zotlabs/Lib/Apps.php:412 +#: ../../Zotlabs/Lib/Apps.php:422 msgid "Unpin from navbar" msgstr "Quitar de la barra de navegación" -#: ../../Zotlabs/Lib/Permcat.php:58 +#: ../../Zotlabs/Lib/Permcat.php:82 msgctxt "permcat" msgid "default" msgstr "por defecto" -#: ../../Zotlabs/Lib/Permcat.php:96 +#: ../../Zotlabs/Lib/Permcat.php:133 msgctxt "permcat" msgid "follower" msgstr "seguidor" -#: ../../Zotlabs/Lib/Permcat.php:100 +#: ../../Zotlabs/Lib/Permcat.php:137 msgctxt "permcat" msgid "contributor" msgstr "contribuidor" -#: ../../Zotlabs/Lib/Permcat.php:104 +#: ../../Zotlabs/Lib/Permcat.php:141 msgctxt "permcat" msgid "publisher" msgstr "editor" @@ -7638,18 +7823,18 @@ msgid "Message" msgstr "Mensaje" #: ../../Zotlabs/Lib/NativeWikiPage.php:597 -#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:674 -#: ../../include/bbcode.php:822 +#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:706 +#: ../../include/bbcode.php:865 msgid "Different viewers will see this text differently" msgstr "Visitantes diferentes verán este texto de forma distinta" #: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:128 +#: ../../include/acl_selectors.php:33 msgid "Visible to your default audience" msgstr "Visible para su público predeterminado." #: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:201 +#: ../../include/acl_selectors.php:106 msgid "Only me" msgstr "Sólo yo" @@ -7730,8 +7915,8 @@ msgstr "La sala está llena." msgid "$Projectname Notification" msgstr "Notificación de $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:283 -#: ../../addon/diaspora/util.php:296 ../../addon/diaspora/p.php:48 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 +#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 msgid "$projectname" msgstr "$projectname" @@ -7744,219 +7929,258 @@ msgstr "Gracias," msgid "%s Administrator" msgstr "%s Administrador" -#: ../../Zotlabs/Lib/Enotify.php:116 +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." +msgstr "Este email ha sido enviado por %1$s a %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "Para dejar de recibir estos mensajes, por favor ajuste la configuración de notificación en %s" + +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." +msgstr "Para dejar de recibir estos mensajes, por favor, ajuste su %s" + +#: ../../Zotlabs/Lib/Enotify.php:120 #, php-format msgid "%s " msgstr "%s " -#: ../../Zotlabs/Lib/Enotify.php:120 +#: ../../Zotlabs/Lib/Enotify.php:124 #, php-format msgid "[$Projectname:Notify] New mail received at %s" msgstr "[$Projectname:Aviso] Nuevo correo recibido en %s" -#: ../../Zotlabs/Lib/Enotify.php:122 +#: ../../Zotlabs/Lib/Enotify.php:126 #, php-format msgid "%1$s, %2$s sent you a new private message at %3$s." msgstr "%1$s, %2$s le ha enviado un nuevo mensaje privado en %3$s." -#: ../../Zotlabs/Lib/Enotify.php:123 +#: ../../Zotlabs/Lib/Enotify.php:127 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s le ha enviado %2$s." -#: ../../Zotlabs/Lib/Enotify.php:123 +#: ../../Zotlabs/Lib/Enotify.php:127 msgid "a private message" msgstr "un mensaje privado" -#: ../../Zotlabs/Lib/Enotify.php:124 +#: ../../Zotlabs/Lib/Enotify.php:128 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Por favor visite %s para ver y/o responder a su mensaje privado." -#: ../../Zotlabs/Lib/Enotify.php:184 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s[/zrl]" +#: ../../Zotlabs/Lib/Enotify.php:141 +msgid "commented on" +msgstr "ha comentado sobre" -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%5$s de %4$s[/zrl] " +#: ../../Zotlabs/Lib/Enotify.php:152 +msgid "liked" +msgstr "ha gustado de " -#: ../../Zotlabs/Lib/Enotify.php:201 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s creado por usted[/zrl]" +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "disliked" +msgstr "no ha gustado de " -#: ../../Zotlabs/Lib/Enotify.php:213 +#: ../../Zotlabs/Lib/Enotify.php:198 +#, php-format +msgid "%1$s, %2$s %3$s [zrl=%4$s]a %5$s[/zrl]" +msgstr "%1$s, %2$s %3$s[zrl=%4$s]un %5$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:207 +#, php-format +msgid "%1$s, %2$s %3$s [zrl=%4$s]%5$s's %6$s[/zrl]" +msgstr "%1$s, %2$s %3$s [zrl=%4$s] %6$sde %5$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:217 +#, php-format +msgid "%1$s, %2$s %3$s [zrl=%4$s]your %5$s[/zrl]" +msgstr "%1$s, %2$s %3$s [zrl=%4$s] ]su %5$s [/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:230 #, php-format msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" msgstr "[$Projectname:Aviso] Comentario moderado en la conversación #%1$d por %2$s" -#: ../../Zotlabs/Lib/Enotify.php:215 +#: ../../Zotlabs/Lib/Enotify.php:232 #, php-format msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" msgstr "[$Projectname:Aviso] Nuevo comentario de %2$s en la conversación #%1$d" -#: ../../Zotlabs/Lib/Enotify.php:216 +#: ../../Zotlabs/Lib/Enotify.php:233 #, php-format msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "%1$s, %2$s ha comentado un elemento/conversación que ha estado siguiendo." -#: ../../Zotlabs/Lib/Enotify.php:219 ../../Zotlabs/Lib/Enotify.php:301 -#: ../../Zotlabs/Lib/Enotify.php:318 ../../Zotlabs/Lib/Enotify.php:344 -#: ../../Zotlabs/Lib/Enotify.php:362 ../../Zotlabs/Lib/Enotify.php:376 +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:318 +#: ../../Zotlabs/Lib/Enotify.php:335 ../../Zotlabs/Lib/Enotify.php:361 +#: ../../Zotlabs/Lib/Enotify.php:379 ../../Zotlabs/Lib/Enotify.php:393 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Para ver o comentar la conversación, visite %s" -#: ../../Zotlabs/Lib/Enotify.php:223 ../../Zotlabs/Lib/Enotify.php:224 +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 #, php-format msgid "Please visit %s to approve or reject this comment." msgstr "Por favor, visite %spara aprobar o rechazar este comentario." -#: ../../Zotlabs/Lib/Enotify.php:282 +#: ../../Zotlabs/Lib/Enotify.php:299 #, php-format msgid "%1$s, %2$s liked [zrl=%3$s]your %4$s[/zrl]" msgstr "%1$s, %2$s ha mostrado su agrado por [zrl=%3$s]%4$s creado por usted[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:297 +#: ../../Zotlabs/Lib/Enotify.php:314 #, php-format msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" msgstr "[$Projectname:Aviso] \"Me gusta\" de %2$s en la conversación #%1$d" -#: ../../Zotlabs/Lib/Enotify.php:298 +#: ../../Zotlabs/Lib/Enotify.php:315 #, php-format msgid "%1$s, %2$s liked an item/conversation you created." msgstr "%1$s, %2$s ha mostrado su agrado por un elemento o conversación que ha creado usted." -#: ../../Zotlabs/Lib/Enotify.php:309 +#: ../../Zotlabs/Lib/Enotify.php:326 #, php-format msgid "[$Projectname:Notify] %s posted to your profile wall" msgstr "[$Projectname:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")" -#: ../../Zotlabs/Lib/Enotify.php:311 +#: ../../Zotlabs/Lib/Enotify.php:328 #, php-format msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "%1$s, %2$s ha publicado en su página del perfil en %3$s" -#: ../../Zotlabs/Lib/Enotify.php:313 +#: ../../Zotlabs/Lib/Enotify.php:330 #, php-format msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "%1$s, %2$s ha publicado en [zrl=%3$s]su página del perfil[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:337 +#: ../../Zotlabs/Lib/Enotify.php:354 #, php-format msgid "[$Projectname:Notify] %s tagged you" msgstr "[$Projectname:Aviso] %s le ha etiquetado" -#: ../../Zotlabs/Lib/Enotify.php:338 +#: ../../Zotlabs/Lib/Enotify.php:355 #, php-format msgid "%1$s, %2$s tagged you at %3$s" msgstr "%1$s, %2$s le ha etiquetado en %3$s" -#: ../../Zotlabs/Lib/Enotify.php:339 +#: ../../Zotlabs/Lib/Enotify.php:356 #, php-format msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "%1$s, %2$s [zrl=%3$s]le etiquetó[/zrl]." -#: ../../Zotlabs/Lib/Enotify.php:351 +#: ../../Zotlabs/Lib/Enotify.php:368 #, php-format msgid "[$Projectname:Notify] %1$s poked you" msgstr "[$Projectname:Aviso] %1$s le ha dado un toque" -#: ../../Zotlabs/Lib/Enotify.php:352 +#: ../../Zotlabs/Lib/Enotify.php:369 #, php-format msgid "%1$s, %2$s poked you at %3$s" msgstr "%1$s, %2$s le ha dado un toque en %3$s" -#: ../../Zotlabs/Lib/Enotify.php:353 +#: ../../Zotlabs/Lib/Enotify.php:370 #, php-format msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "%1$s, %2$s [zrl=%2$s]le ha dado un toque[/zrl]." -#: ../../Zotlabs/Lib/Enotify.php:369 +#: ../../Zotlabs/Lib/Enotify.php:386 #, php-format msgid "[$Projectname:Notify] %s tagged your post" msgstr "[$Projectname:Aviso] %s ha etiquetado su entrada" -#: ../../Zotlabs/Lib/Enotify.php:370 +#: ../../Zotlabs/Lib/Enotify.php:387 #, php-format msgid "%1$s, %2$s tagged your post at %3$s" msgstr "%1$s, %2$s ha etiquetado su publicación en %3$s" -#: ../../Zotlabs/Lib/Enotify.php:371 +#: ../../Zotlabs/Lib/Enotify.php:388 #, php-format msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "%1$s, %2$s ha etiquetado [zrl=%3$s]su publicación[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:383 +#: ../../Zotlabs/Lib/Enotify.php:400 msgid "[$Projectname:Notify] Introduction received" msgstr "[$Projectname:Aviso] Ha recibido una solicitud de conexión" -#: ../../Zotlabs/Lib/Enotify.php:384 +#: ../../Zotlabs/Lib/Enotify.php:401 #, php-format msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "%1$s, ha recibido una nueva solicitud de conexión de '%2$s' en %3$s" -#: ../../Zotlabs/Lib/Enotify.php:385 +#: ../../Zotlabs/Lib/Enotify.php:402 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." msgstr "%1$s, ha recibido [zrl=%2$s]una nueva solicitud de conexión[/zrl] de %3$s." -#: ../../Zotlabs/Lib/Enotify.php:389 ../../Zotlabs/Lib/Enotify.php:408 +#: ../../Zotlabs/Lib/Enotify.php:406 ../../Zotlabs/Lib/Enotify.php:425 #, php-format msgid "You may visit their profile at %s" msgstr "Puede visitar su perfil en %s" -#: ../../Zotlabs/Lib/Enotify.php:391 +#: ../../Zotlabs/Lib/Enotify.php:408 #, php-format msgid "Please visit %s to approve or reject the connection request." msgstr "Por favor, visite %s para permitir o rechazar la solicitad de conexión." -#: ../../Zotlabs/Lib/Enotify.php:398 +#: ../../Zotlabs/Lib/Enotify.php:415 msgid "[$Projectname:Notify] Friend suggestion received" msgstr "[$Projectname:Aviso] Ha recibido una sugerencia de conexión" -#: ../../Zotlabs/Lib/Enotify.php:399 +#: ../../Zotlabs/Lib/Enotify.php:416 #, php-format msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" msgstr "%1$s, ha recibido una sugerencia de conexión de '%2$s' en %3$s" -#: ../../Zotlabs/Lib/Enotify.php:400 +#: ../../Zotlabs/Lib/Enotify.php:417 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " "%4$s." msgstr "%1$s, ha recibido [zrl=%2$s]una sugerencia de conexión[/zrl] para %3$s de %4$s." -#: ../../Zotlabs/Lib/Enotify.php:406 +#: ../../Zotlabs/Lib/Enotify.php:423 msgid "Name:" msgstr "Nombre:" -#: ../../Zotlabs/Lib/Enotify.php:407 +#: ../../Zotlabs/Lib/Enotify.php:424 msgid "Photo:" msgstr "Foto:" -#: ../../Zotlabs/Lib/Enotify.php:410 +#: ../../Zotlabs/Lib/Enotify.php:427 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Por favor, visite %s para aprobar o rechazar la sugerencia." -#: ../../Zotlabs/Lib/Enotify.php:629 +#: ../../Zotlabs/Lib/Enotify.php:647 msgid "[$Projectname:Notify]" msgstr "[$Projectname:Aviso]" -#: ../../Zotlabs/Lib/Enotify.php:793 +#: ../../Zotlabs/Lib/Enotify.php:815 msgid "created a new post" msgstr "ha creado una nueva entrada" -#: ../../Zotlabs/Lib/Enotify.php:794 +#: ../../Zotlabs/Lib/Enotify.php:816 #, php-format msgid "commented on %s's post" msgstr "ha comentado la entrada de %s" +#: ../../Zotlabs/Lib/Enotify.php:823 +#, php-format +msgid "edited a post dated %s" +msgstr "ha editado una entrada fechada el%s" + +#: ../../Zotlabs/Lib/Enotify.php:827 +#, php-format +msgid "edited a comment dated %s" +msgstr "ha editado un comentario fechado el %s" + #: ../../Zotlabs/Lib/NativeWiki.php:151 msgid "Wiki updated successfully" msgstr "El wiki se ha actualizado con éxito" @@ -7965,12 +8189,12 @@ msgstr "El wiki se ha actualizado con éxito" msgid "Wiki files deleted successfully" msgstr "Se han borrado con éxito los ficheros del wiki" -#: ../../Zotlabs/Lib/DB_Upgrade.php:95 +#: ../../Zotlabs/Lib/DB_Upgrade.php:83 #, php-format msgid "Update Error at %s" msgstr "Error de actualización en %s" -#: ../../Zotlabs/Lib/DB_Upgrade.php:101 +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 #, php-format msgid "Update %s failed. See error logs." msgstr "La actualización %s ha fallado. Mire el informe de errores." @@ -8035,11 +8259,11 @@ msgstr "Firma de mensaje incorrecta" msgid "Add Tag" msgstr "Añadir etiqueta" -#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:506 +#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:510 msgid "like" msgstr "me gusta" -#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:507 +#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:511 msgid "dislike" msgstr "no me gusta" @@ -8132,51 +8356,51 @@ msgstr "Esta es una previsualización sin guardar" msgid "%s show all" msgstr "%s mostrar todo" -#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1377 +#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/conversation.php:1377 msgid "Bold" msgstr "Negrita" -#: ../../Zotlabs/Lib/ThreadItem.php:756 ../../include/conversation.php:1378 +#: ../../Zotlabs/Lib/ThreadItem.php:752 ../../include/conversation.php:1378 msgid "Italic" msgstr "Itálico " -#: ../../Zotlabs/Lib/ThreadItem.php:757 ../../include/conversation.php:1379 +#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1379 msgid "Underline" msgstr "Subrayar" -#: ../../Zotlabs/Lib/ThreadItem.php:758 ../../include/conversation.php:1380 +#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1380 msgid "Quote" msgstr "Citar" -#: ../../Zotlabs/Lib/ThreadItem.php:759 ../../include/conversation.php:1381 +#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1381 msgid "Code" msgstr "Código" -#: ../../Zotlabs/Lib/ThreadItem.php:760 +#: ../../Zotlabs/Lib/ThreadItem.php:756 msgid "Image" msgstr "Imagen" -#: ../../Zotlabs/Lib/ThreadItem.php:761 +#: ../../Zotlabs/Lib/ThreadItem.php:757 msgid "Attach File" msgstr "Fichero adjunto" -#: ../../Zotlabs/Lib/ThreadItem.php:762 +#: ../../Zotlabs/Lib/ThreadItem.php:758 msgid "Insert Link" msgstr "Insertar enlace" -#: ../../Zotlabs/Lib/ThreadItem.php:763 +#: ../../Zotlabs/Lib/ThreadItem.php:759 msgid "Video" msgstr "Vídeo" -#: ../../Zotlabs/Lib/ThreadItem.php:773 +#: ../../Zotlabs/Lib/ThreadItem.php:769 msgid "Your full name (required)" msgstr "Su nombre completo (requerido)" -#: ../../Zotlabs/Lib/ThreadItem.php:774 +#: ../../Zotlabs/Lib/ThreadItem.php:770 msgid "Your email address (required)" msgstr "Su dirección de correo electrónico (requerido)" -#: ../../Zotlabs/Lib/ThreadItem.php:775 +#: ../../Zotlabs/Lib/ThreadItem.php:771 msgid "Your website URL (optional)" msgstr "La URL de su sitio web (opcional)" @@ -8192,11 +8416,11 @@ msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión msgid "Welcome %s. Remote authentication successful." msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:284 +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 msgid "parent" msgstr "padre" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2707 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2821 msgid "Collection" msgstr "Colección" @@ -8208,8 +8432,8 @@ msgstr "Principal" msgid "Addressbook" msgstr "Libreta de direcciones" -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:452 -#: ../../include/nav.php:455 +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 +#: ../../include/nav.php:423 msgid "Calendar" msgstr "Calendario" @@ -8221,41 +8445,41 @@ msgstr "Programar bandeja de entrada" msgid "Schedule Outbox" msgstr "Programar bandeja de salida" -#: ../../Zotlabs/Storage/Browser.php:270 +#: ../../Zotlabs/Storage/Browser.php:273 msgid "Total" msgstr "Total" -#: ../../Zotlabs/Storage/Browser.php:272 +#: ../../Zotlabs/Storage/Browser.php:275 msgid "Shared" msgstr "Compartido" -#: ../../Zotlabs/Storage/Browser.php:350 +#: ../../Zotlabs/Storage/Browser.php:353 #, php-format msgid "You are using %1$s of your available file storage." msgstr "Está usando %1$s de su espacio disponible para ficheros." -#: ../../Zotlabs/Storage/Browser.php:355 +#: ../../Zotlabs/Storage/Browser.php:358 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "Está usando %1$s de %2$s que tiene a su disposición para ficheros. (%3$s%)" -#: ../../Zotlabs/Storage/Browser.php:366 +#: ../../Zotlabs/Storage/Browser.php:369 msgid "WARNING:" msgstr "ATENCIÓN: " -#: ../../Zotlabs/Storage/Browser.php:378 +#: ../../Zotlabs/Storage/Browser.php:381 msgid "Create new folder" msgstr "Crear nueva carpeta" -#: ../../Zotlabs/Storage/Browser.php:380 +#: ../../Zotlabs/Storage/Browser.php:383 msgid "Upload file" msgstr "Subir fichero" -#: ../../Zotlabs/Storage/Browser.php:393 +#: ../../Zotlabs/Storage/Browser.php:396 msgid "Drop files here to immediately upload" msgstr "Arrastre los ficheros aquí para subirlos de forma inmediata" -#: ../../Zotlabs/Widget/Forums.php:99 +#: ../../Zotlabs/Widget/Forums.php:100 msgid "Forums" msgstr "Foros" @@ -8338,8 +8562,8 @@ msgstr "Seleccionar una agenda para importarla" #: ../../Zotlabs/Widget/Appcategories.php:40 #: ../../Zotlabs/Widget/Tagcloud.php:25 ../../include/contact_widgets.php:97 #: ../../include/contact_widgets.php:141 ../../include/contact_widgets.php:186 -#: ../../include/taxonomy.php:337 ../../include/taxonomy.php:419 -#: ../../include/taxonomy.php:439 ../../include/taxonomy.php:460 +#: ../../include/taxonomy.php:344 ../../include/taxonomy.php:426 +#: ../../include/taxonomy.php:446 ../../include/taxonomy.php:467 msgid "Categories" msgstr "Temas" @@ -8381,21 +8605,21 @@ msgstr "Menú de correo privado" msgid "Combined View" msgstr "Vista combinada" -#: ../../Zotlabs/Widget/Mailmenu.php:20 ../../include/nav.php:126 +#: ../../Zotlabs/Widget/Mailmenu.php:20 msgid "Inbox" msgstr "Bandeja de entrada" -#: ../../Zotlabs/Widget/Mailmenu.php:25 ../../include/nav.php:127 +#: ../../Zotlabs/Widget/Mailmenu.php:25 msgid "Outbox" msgstr "Bandeja de salida" -#: ../../Zotlabs/Widget/Mailmenu.php:30 ../../include/nav.php:128 +#: ../../Zotlabs/Widget/Mailmenu.php:30 msgid "New Message" msgstr "Nuevo mensaje" #: ../../Zotlabs/Widget/Chatroom_list.php:16 #: ../../include/conversation.php:1864 ../../include/conversation.php:1867 -#: ../../include/nav.php:466 ../../include/nav.php:469 +#: ../../include/nav.php:434 ../../include/nav.php:437 msgid "Chatrooms" msgstr "Salas de chat" @@ -8477,7 +8701,7 @@ msgstr "foto/imagen" msgid "Remove term" msgstr "Eliminar término" -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:316 +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:354 msgid "Saved Searches" msgstr "Búsquedas guardadas" @@ -8502,7 +8726,7 @@ msgstr "Páginas del wiki" msgid "Page name" msgstr "Nombre de la página" -#: ../../Zotlabs/Widget/Affinity.php:49 +#: ../../Zotlabs/Widget/Affinity.php:45 msgid "Refresh" msgstr "Recargar" @@ -8519,7 +8743,7 @@ msgid "See more..." msgstr "Ver más..." #: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:414 +#: ../../include/features.php:443 msgid "Saved Folders" msgstr "Carpetas guardadas" @@ -8527,6 +8751,54 @@ msgstr "Carpetas guardadas" msgid "Click to show more" msgstr "Hacer clic para ver más" +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "Profile Creation" +msgstr "Creación de perfiles" + +#: ../../Zotlabs/Widget/Newmember.php:35 +msgid "Upload profile photo" +msgstr "Cargar la foto del perfil" + +#: ../../Zotlabs/Widget/Newmember.php:36 +msgid "Upload cover photo" +msgstr "Cargar la foto de portada del perfil" + +#: ../../Zotlabs/Widget/Newmember.php:37 ../../include/nav.php:119 +msgid "Edit your profile" +msgstr "Editar su perfil" + +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "Find and Connect with others" +msgstr "Encontrar y conectarse con otros" + +#: ../../Zotlabs/Widget/Newmember.php:44 +msgid "Manage your connections" +msgstr "Gestionar sus conexiones" + +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "Communicate" +msgstr "Comunicarse" + +#: ../../Zotlabs/Widget/Newmember.php:49 +msgid "View your channel homepage" +msgstr "Ver la página principal de su canal" + +#: ../../Zotlabs/Widget/Newmember.php:50 +msgid "View your network stream" +msgstr "Ver el \"stream\" de su red" + +#: ../../Zotlabs/Widget/Newmember.php:56 +msgid "Documentation" +msgstr "Documentación" + +#: ../../Zotlabs/Widget/Newmember.php:67 +msgid "View public stream. Warning: not moderated" +msgstr "Ver el \"stream\" público. Advertencia: no está moderado" + +#: ../../Zotlabs/Widget/Newmember.php:71 +msgid "New Member Links" +msgstr "Enlaces para nuevos miembros" + #: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 msgid "Member registrations waiting for confirmation" msgstr "Inscripciones de nuevos miembros pendientes de aprobación" @@ -8539,7 +8811,7 @@ msgstr "Examinar la cola" msgid "DB updates" msgstr "Actualizaciones de la base de datos" -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:231 +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 msgid "Admin" msgstr "Administrador" @@ -8560,8 +8832,8 @@ msgid "Additional features" msgstr "Funcionalidades" #: ../../Zotlabs/Widget/Settings_menu.php:57 -msgid "Feature/Addon settings" -msgstr "Complementos" +msgid "Addon settings" +msgstr "Ajustes de los complementos" #: ../../Zotlabs/Widget/Settings_menu.php:63 msgid "Display settings" @@ -8579,7 +8851,7 @@ msgstr "Exportar canal" msgid "Connected apps" msgstr "Aplicaciones (apps) conectadas" -#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:168 +#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:231 msgid "Permission Groups" msgstr "Grupos de permisos" @@ -8599,7 +8871,7 @@ msgstr "Nueva actividad en la red" msgid "New Network Activity Notifications" msgstr "Avisos de nueva actividad en la red" -#: ../../Zotlabs/Widget/Notifications.php:20 ../../include/nav.php:106 +#: ../../Zotlabs/Widget/Notifications.php:20 msgid "View your network activity" msgstr "Ver su actividad en la red" @@ -8608,161 +8880,163 @@ msgid "Mark all notifications read" msgstr "Marcar todas las notificaciones como leídas" #: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:44 -#: ../../Zotlabs/Widget/Notifications.php:139 +#: ../../Zotlabs/Widget/Notifications.php:45 +#: ../../Zotlabs/Widget/Notifications.php:141 msgid "Show new posts only" msgstr "Mostrar solo las entradas nuevas" -#: ../../Zotlabs/Widget/Notifications.php:34 +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:142 +msgid "Filter by name" +msgstr "Filtrar por nombre" + +#: ../../Zotlabs/Widget/Notifications.php:35 msgid "New Home Activity" msgstr "Nueva actividad en su página principal" -#: ../../Zotlabs/Widget/Notifications.php:35 +#: ../../Zotlabs/Widget/Notifications.php:36 msgid "New Home Activity Notifications" msgstr "Avisos de nueva actividad en su página principal" -#: ../../Zotlabs/Widget/Notifications.php:38 +#: ../../Zotlabs/Widget/Notifications.php:39 msgid "View your home activity" msgstr "Ver su actividad en su página principal" -#: ../../Zotlabs/Widget/Notifications.php:41 -#: ../../Zotlabs/Widget/Notifications.php:136 +#: ../../Zotlabs/Widget/Notifications.php:42 +#: ../../Zotlabs/Widget/Notifications.php:138 msgid "Mark all notifications seen" msgstr "Marcar todas las notificaciones como vistas" -#: ../../Zotlabs/Widget/Notifications.php:52 +#: ../../Zotlabs/Widget/Notifications.php:54 msgid "New Mails" msgstr "Nuevos mensajes de correo" -#: ../../Zotlabs/Widget/Notifications.php:53 +#: ../../Zotlabs/Widget/Notifications.php:55 msgid "New Mails Notifications" msgstr "Avisos de nuevos mensajes de correo" -#: ../../Zotlabs/Widget/Notifications.php:56 +#: ../../Zotlabs/Widget/Notifications.php:58 msgid "View your private mails" msgstr "Ver sus correos privados" -#: ../../Zotlabs/Widget/Notifications.php:59 +#: ../../Zotlabs/Widget/Notifications.php:61 msgid "Mark all messages seen" msgstr "Marcar todos los mensajes como vistos" -#: ../../Zotlabs/Widget/Notifications.php:67 +#: ../../Zotlabs/Widget/Notifications.php:69 msgid "New Events" msgstr "Eventos nuevos" -#: ../../Zotlabs/Widget/Notifications.php:68 +#: ../../Zotlabs/Widget/Notifications.php:70 msgid "New Events Notifications" msgstr "Avisos de nuevos eventos" -#: ../../Zotlabs/Widget/Notifications.php:71 ../../include/nav.php:132 +#: ../../Zotlabs/Widget/Notifications.php:73 msgid "View events" msgstr "Ver los eventos" -#: ../../Zotlabs/Widget/Notifications.php:74 ../../include/nav.php:133 +#: ../../Zotlabs/Widget/Notifications.php:76 msgid "Mark all events seen" msgstr "Marcar todos los eventos como leidos" -#: ../../Zotlabs/Widget/Notifications.php:83 +#: ../../Zotlabs/Widget/Notifications.php:85 msgid "New Connections Notifications" msgstr "Avisos de nuevas conexiones" -#: ../../Zotlabs/Widget/Notifications.php:86 +#: ../../Zotlabs/Widget/Notifications.php:88 msgid "View all connections" msgstr "Ver todas las conexiones" -#: ../../Zotlabs/Widget/Notifications.php:94 +#: ../../Zotlabs/Widget/Notifications.php:96 msgid "New Files" msgstr "Ficheros nuevos" -#: ../../Zotlabs/Widget/Notifications.php:95 +#: ../../Zotlabs/Widget/Notifications.php:97 msgid "New Files Notifications" msgstr "Avisos de nuevos ficheros" -#: ../../Zotlabs/Widget/Notifications.php:102 -#: ../../Zotlabs/Widget/Notifications.php:103 ../../include/nav.php:119 +#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Widget/Notifications.php:105 msgid "Notices" msgstr "Avisos" -#: ../../Zotlabs/Widget/Notifications.php:106 +#: ../../Zotlabs/Widget/Notifications.php:108 msgid "View all notices" msgstr "Ver todos los avisos" -#: ../../Zotlabs/Widget/Notifications.php:109 +#: ../../Zotlabs/Widget/Notifications.php:111 msgid "Mark all notices seen" msgstr "Marcar como leídos todos los avisos" -#: ../../Zotlabs/Widget/Notifications.php:119 +#: ../../Zotlabs/Widget/Notifications.php:121 msgid "New Registrations" msgstr "Registros nuevos" -#: ../../Zotlabs/Widget/Notifications.php:120 +#: ../../Zotlabs/Widget/Notifications.php:122 msgid "New Registrations Notifications" msgstr "Notificaciones de nuevos registros" -#: ../../Zotlabs/Widget/Notifications.php:130 +#: ../../Zotlabs/Widget/Notifications.php:132 msgid "Public Stream Notifications" msgstr "Avisos del \"stream\" público" -#: ../../Zotlabs/Widget/Notifications.php:133 +#: ../../Zotlabs/Widget/Notifications.php:135 msgid "View the public stream" msgstr "Ver el \"stream\" público" -#: ../../Zotlabs/Widget/Notifications.php:147 ../../include/nav.php:316 -msgid "Loading" -msgstr "Cargando" +#: ../../Zotlabs/Widget/Notifications.php:150 +msgid "Sorry, you have got no notifications at the moment" +msgstr "Lo sentimos, por el momento no ha recibido ninguna notificación" #: ../../util/nconfig.php:34 msgid "Source channel not found." msgstr "No se ha encontrado el canal de origen." -#: ../../boot.php:1644 +#: ../../boot.php:1562 msgid "Create an account to access services and applications" msgstr "Crear una cuenta para acceder a los servicios y aplicaciones" -#: ../../boot.php:1663 ../../include/nav.php:145 ../../include/nav.php:174 -#: ../../include/nav.php:191 +#: ../../boot.php:1581 ../../include/nav.php:111 ../../include/nav.php:140 +#: ../../include/nav.php:159 msgid "Logout" msgstr "Finalizar sesión" -#: ../../boot.php:1667 +#: ../../boot.php:1585 msgid "Login/Email" msgstr "Inicio de sesión / Correo electrónico" -#: ../../boot.php:1668 +#: ../../boot.php:1586 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1669 +#: ../../boot.php:1587 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1672 +#: ../../boot.php:1590 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2257 -msgid "toggle mobile" -msgstr "cambiar a modo móvil" - -#: ../../boot.php:2419 +#: ../../boot.php:2347 #, php-format msgid "[$Projectname] Website SSL error for %s" msgstr "[$Projectname] Error SSL del sitio web en %s" -#: ../../boot.php:2424 +#: ../../boot.php:2352 msgid "Website SSL certificate is not valid. Please correct." msgstr "El certificado SSL del sitio web no es válido. Por favor, solucione el problema." -#: ../../boot.php:2540 +#: ../../boot.php:2468 #, php-format msgid "[$Projectname] Cron tasks not running on %s" msgstr "[$Projectname] Las tareas de Cron no están funcionando en %s" -#: ../../boot.php:2545 +#: ../../boot.php:2473 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." -#: ../../boot.php:2546 ../../include/datetime.php:292 +#: ../../boot.php:2474 ../../include/datetime.php:232 msgid "never" msgstr "nunca" @@ -8887,7 +9161,7 @@ msgid "Errors encountered deleting database table " msgstr "Errores encontrados al eliminar la tabla de la base de datos" #: ../../addon/rendezvous/rendezvous.php:95 -#: ../../addon/twitter/twitter.php:773 +#: ../../addon/twitter/twitter.php:779 msgid "Submit Settings" msgstr "Enviar los ajustes" @@ -9090,7 +9364,7 @@ msgid "Page to load after image selection." msgstr "Página para cargar después de la selección de imágenes." #: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1301 -#: ../../include/nav.php:153 +#: ../../include/nav.php:119 msgid "Edit Profile" msgstr "Editar el perfil" @@ -9147,6 +9421,11 @@ msgstr "Subida por: " msgid "Drawn by: " msgstr "Creada por: " +#: ../../addon/openclipatar/openclipatar.php:182 +#: ../../addon/openclipatar/openclipatar.php:194 +msgid "Use this image" +msgstr "Usar esta imagen" + #: ../../addon/openclipatar/openclipatar.php:192 msgid "Or select from a free OpenClipart.org image:" msgstr "O seleccionar una imagen gratuita de OpenClipart.org: " @@ -9163,10 +9442,6 @@ msgstr "Error desconocido. Por favor, inténtelo otra vez." msgid "Profile photo updated successfully." msgstr "Se ha actualizado con éxito la foto de perfil." -#: ../../addon/zotvi/zot6.php:25 ../../include/zot.php:4051 -msgid "invalid target signature" -msgstr "La firma recibida no es válida" - #: ../../addon/adultphotoflag/adultphotoflag.php:24 msgid "Flag Adult Photos" msgstr "Indicador (\"flag\") de fotos de adultos" @@ -9263,7 +9538,7 @@ msgstr "Se han guardado los ajustes de NSFW." msgid "Possible adult content" msgstr "Posible contenido para adultos" -#: ../../addon/nsfw/nsfw.php:211 +#: ../../addon/nsfw/nsfw.php:222 #, php-format msgid "%s - view" msgstr "ver - %s" @@ -9320,6 +9595,15 @@ msgstr "Publicar en Dreamwidth de forma predeterminada" msgid "Dreamwidth Post Settings" msgstr "Ajustes de publicación en Dreamwidth" +#: ../../addon/notifyadmin/notifyadmin.php:34 +msgid "New registration" +msgstr "Nuevo registro" + +#: ../../addon/notifyadmin/notifyadmin.php:42 +#, php-format +msgid "Message sent to %s. New account registration: %s" +msgstr "Mensaje enviado a %s. Registro de una nueva cuenta: %s" + #: ../../addon/dirstats/dirstats.php:94 msgid "Hubzilla Directory Stats" msgstr "Estadísticas de directorio de Hubzilla" @@ -9568,17 +9852,17 @@ msgstr "Fecha de nacimiento" msgid "OpenID protocol error. No ID returned." msgstr "Error de protocolo OpenID. No se recuperó ninguna ID." -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:289 +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:290 msgid "Login failed." msgstr "El acceso ha fallado." #: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1480 +#: ../../include/selectors.php:66 ../../include/channel.php:1481 msgid "Male" msgstr "Hombre" #: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1478 +#: ../../include/selectors.php:66 ../../include/channel.php:1479 msgid "Female" msgstr "Mujer" @@ -9765,39 +10049,39 @@ msgstr "una declaración de amor eterno" msgid "declared undying love for" msgstr "ha declarado amor eterno a" -#: ../../addon/diaspora/diaspora.php:772 +#: ../../addon/diaspora/diaspora.php:778 msgid "Diaspora Protocol Settings updated." msgstr "Los ajustes del protocolo de Diaspora se han actualizado." -#: ../../addon/diaspora/diaspora.php:791 +#: ../../addon/diaspora/diaspora.php:797 msgid "" "The Diaspora protocol does not support location independence. Connections " "you make within that network may be unreachable from alternate channel " "locations." msgstr "El protocolo de Diaspora no admite la independencia de la ubicación. Las conexiones que realice dentro de esa red pueden ser inaccesibles desde ubicaciones de canales alternativos." -#: ../../addon/diaspora/diaspora.php:794 +#: ../../addon/diaspora/diaspora.php:800 msgid "Enable the Diaspora protocol for this channel" msgstr "Activar el protocolo de Diaspora para este canal" -#: ../../addon/diaspora/diaspora.php:798 +#: ../../addon/diaspora/diaspora.php:804 msgid "Allow any Diaspora member to comment on your public posts" msgstr "Permitir a cualquier miembro de Diaspora comentar sus entradas públicas" -#: ../../addon/diaspora/diaspora.php:802 +#: ../../addon/diaspora/diaspora.php:808 msgid "Prevent your hashtags from being redirected to other sites" msgstr "Impedir que sus \"hashtags\" sean redirigidos a otros sitios " -#: ../../addon/diaspora/diaspora.php:806 +#: ../../addon/diaspora/diaspora.php:812 msgid "" "Sign and forward posts and comments with no existing Diaspora signature" msgstr "Firmar y enviar entradas y comentarios sin firma de Diaspora" -#: ../../addon/diaspora/diaspora.php:811 +#: ../../addon/diaspora/diaspora.php:817 msgid "Followed hashtags (comma separated, do not include the #)" msgstr "\"Hashtags\" seguidos (separados por comas, sin incluir #)" -#: ../../addon/diaspora/diaspora.php:816 +#: ../../addon/diaspora/diaspora.php:822 msgid "Diaspora Protocol Settings" msgstr "Ajustes del protocolo de Diaspora" @@ -9991,6 +10275,10 @@ msgstr "Prueba de correo" msgid "Message subject" msgstr "Asunto del mensaje" +#: ../../addon/mdpost/mdpost.php:41 +msgid "Use markdown for editing posts" +msgstr "Usar markdown para editar las entradas" + #: ../../addon/openstreetmap/openstreetmap.php:146 msgid "View Larger" msgstr "Ver más grande" @@ -10073,7 +10361,7 @@ msgid "Hubzilla to Friendica Post Settings" msgstr "Ajustes de publicación de Hubzilla a Friendica" #: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1397 -#: ../../include/channel.php:1567 +#: ../../include/channel.php:1568 msgid "Status:" msgstr "Estado:" @@ -10238,31 +10526,31 @@ msgstr "Nombre de inicio de sesión en Friendica" msgid "Friendica Login Password" msgstr "Contraseña de inicio de sesión en Friendica" -#: ../../addon/pubcrawl/as.php:1077 ../../addon/pubcrawl/as.php:1164 -#: ../../addon/pubcrawl/as.php:1339 ../../include/network.php:1768 +#: ../../addon/pubcrawl/as.php:1101 ../../addon/pubcrawl/as.php:1228 +#: ../../addon/pubcrawl/as.php:1403 ../../include/network.php:1774 msgid "ActivityPub" msgstr "ActivityPub" -#: ../../addon/pubcrawl/pubcrawl.php:1033 +#: ../../addon/pubcrawl/pubcrawl.php:1034 msgid "ActivityPub Protocol Settings updated." msgstr "Se han actualizado los ajustes del protocolo ActivityPub." -#: ../../addon/pubcrawl/pubcrawl.php:1042 +#: ../../addon/pubcrawl/pubcrawl.php:1043 msgid "" "The ActivityPub protocol does not support location independence. Connections" " you make within that network may be unreachable from alternate channel " "locations." msgstr "El protocolo ActivityPub no soporta la independencia de ubicación. Las conexiones que realice dentro de esa red pueden no ser accesibles desde ubicaciones de canales alternativos." -#: ../../addon/pubcrawl/pubcrawl.php:1045 +#: ../../addon/pubcrawl/pubcrawl.php:1046 msgid "Enable the ActivityPub protocol for this channel" msgstr "Activar el protocolo ActivityPub para este canal" -#: ../../addon/pubcrawl/pubcrawl.php:1048 +#: ../../addon/pubcrawl/pubcrawl.php:1049 msgid "Send multi-media HTML articles" msgstr "Enviar artículos multimedia en HTML" -#: ../../addon/pubcrawl/pubcrawl.php:1048 +#: ../../addon/pubcrawl/pubcrawl.php:1049 msgid "Not supported by some microblog services such as Mastodon" msgstr "No soportado por algunos servicios de microblog como Mastodon" @@ -10572,7 +10860,7 @@ msgstr "La API actual de GNU social es " msgid "Cancel GNU social Connection" msgstr "Cancelar la conexión de GNU social" -#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:232 +#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 msgid "Currently connected to: " msgstr "Actualmente está conectado a: " @@ -10604,7 +10892,7 @@ msgid "" "account by default" msgstr "Si está activado, sus entradas públicas se publicarán en la cuenta GNU-social asociada de forma predeterminada" -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 msgid "Clear OAuth configuration" msgstr "Limpiar la configuración de OAuth" @@ -10632,39 +10920,39 @@ msgstr "Generador QR" msgid "Enter some text" msgstr "Escribir algún texto" -#: ../../addon/chess/chess.php:278 ../../addon/chess/chess.php:465 +#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 msgid "Invalid game." msgstr "Juego no válido." -#: ../../addon/chess/chess.php:284 ../../addon/chess/chess.php:471 +#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 msgid "You are not a player in this game." msgstr "Usted no participa en este juego." -#: ../../addon/chess/chess.php:340 +#: ../../addon/chess/chess.php:415 msgid "You must be a local channel to create a game." msgstr "Debe ser un canal local para crear un juego" -#: ../../addon/chess/chess.php:358 +#: ../../addon/chess/chess.php:433 msgid "You must select one opponent that is not yourself." msgstr "Debe seleccionar un oponente que no sea usted mismo." -#: ../../addon/chess/chess.php:367 -msgid "You must select white or black." -msgstr "Debe elegir blancas o negras." +#: ../../addon/chess/chess.php:444 +msgid "Random color chosen." +msgstr "Elegido un color aleatorio." -#: ../../addon/chess/chess.php:375 +#: ../../addon/chess/chess.php:452 msgid "Error creating new game." msgstr "Error al crear un nuevo juego." -#: ../../addon/chess/chess.php:409 ../../include/channel.php:1152 +#: ../../addon/chess/chess.php:486 ../../include/channel.php:1152 msgid "Requested channel is not available." msgstr "El canal solicitado no está disponible." -#: ../../addon/chess/chess.php:423 +#: ../../addon/chess/chess.php:500 msgid "You must select a local channel /chess/channelname" msgstr "Debe seleccionar un canal local /chess/nombredelcanal" -#: ../../addon/chess/chess.php:969 +#: ../../addon/chess/chess.php:1066 msgid "Enable notifications" msgstr "Habilitar notificaciones" @@ -10672,17 +10960,17 @@ msgstr "Habilitar notificaciones" msgid "Post to Twitter" msgstr "Publicar en Twitter" -#: ../../addon/twitter/twitter.php:154 +#: ../../addon/twitter/twitter.php:155 msgid "Twitter settings updated." msgstr "Se han actualizado los ajustes de Twitter." -#: ../../addon/twitter/twitter.php:183 +#: ../../addon/twitter/twitter.php:184 msgid "" "No consumer key pair for Twitter found. Please contact your site " "administrator." msgstr "No se encontró ningún par de \"consumer key\" para Twitter. Póngase en contacto con el administrador del sitio." -#: ../../addon/twitter/twitter.php:205 +#: ../../addon/twitter/twitter.php:206 msgid "" "At this Hubzilla instance the Twitter plugin was enabled but you have not " "yet connected your account to your Twitter account. To do so click the " @@ -10691,15 +10979,15 @@ msgid "" " be posted to Twitter." msgstr "En esta instancia de Hubzilla, el complemento de Twitter estaba habilitado pero aún no ha conectado su cuenta a la cuenta de Twitter. Para ello, haga clic en el botón de abajo, para obtener un PIN de Twitter que debe copiar en el cuadro de entrada a continuación y enviar el formulario. Solo sus entradas públicas se publicarán en Twitter." -#: ../../addon/twitter/twitter.php:207 +#: ../../addon/twitter/twitter.php:208 msgid "Log in with Twitter" msgstr "Iniciar sesión en Twitter" -#: ../../addon/twitter/twitter.php:210 +#: ../../addon/twitter/twitter.php:211 msgid "Copy the PIN from Twitter here" msgstr "Copiar aquí el PIN de Twitter" -#: ../../addon/twitter/twitter.php:237 +#: ../../addon/twitter/twitter.php:238 msgid "" "Note: Due your privacy settings (Hide your profile " "details from unknown viewers?) the link potentially included in public " @@ -10707,27 +10995,35 @@ msgid "" "the visitor that the access to your profile has been restricted." msgstr "Aviso: Debido a su configuración de privacidad (Ocultar los detalles de su perfil a los visitantes desconocidos?), el enlace potencialmente incluido en las entradas públicas retransmitidas a Twitter llevará al visitante a una página en blanco informándolo de que el acceso a su perfil ha sido restringido." -#: ../../addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:243 msgid "Allow posting to Twitter" msgstr "Permitir la publicación en Twitter" -#: ../../addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:243 msgid "" "If enabled your public postings can be posted to the associated Twitter " "account" msgstr "Si está activado, sus entradas públicas se pueden publicar en la cuenta de Twitter asociada" -#: ../../addon/twitter/twitter.php:246 +#: ../../addon/twitter/twitter.php:247 +msgid "Twitter post length" +msgstr "Longitud del mensaje en Twitter" + +#: ../../addon/twitter/twitter.php:247 +msgid "Maximum tweet length" +msgstr "Longitud máxima del tweet" + +#: ../../addon/twitter/twitter.php:252 msgid "Send public postings to Twitter by default" msgstr "Enviar mensajes públicos a Twitter de forma predeterminada" -#: ../../addon/twitter/twitter.php:246 +#: ../../addon/twitter/twitter.php:252 msgid "" "If enabled your public postings will be posted to the associated Twitter " "account by default" msgstr "Si está activado, sus entradas públicas se publicarán en la cuenta de Twitter asociada de forma predeterminada." -#: ../../addon/twitter/twitter.php:264 +#: ../../addon/twitter/twitter.php:270 msgid "Twitter Post Settings" msgstr "Ajustes de publicación en Twitter" @@ -10951,8 +11247,8 @@ msgstr "Compartir identidad extendida" #: ../../addon/sendzid/sendzid.php:26 msgid "" "Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Compartir su identidad con todos los sitios web en Internet. Cuando se inhabilita, la identidad sólo se comparte con los sitios de la matriz." +"identity is only shared with $Projectname sites." +msgstr "Compartir su identidad con todos los sitios web en Internet. Cuando está deshabilitado, la identidad sólo se comparte con sitios de $Projectname." #: ../../addon/tictac/tictac.php:21 msgid "Three Dimensional Tic-Tac-Toe" @@ -11335,11 +11631,11 @@ msgstr "Transexual" msgid "Hermaphrodite" msgstr "Hermafrodita" -#: ../../include/selectors.php:49 ../../include/channel.php:1484 +#: ../../include/selectors.php:49 ../../include/channel.php:1485 msgid "Neuter" msgstr "Neutral" -#: ../../include/selectors.php:49 ../../include/channel.php:1486 +#: ../../include/selectors.php:49 ../../include/channel.php:1487 msgid "Non-specific" msgstr "No especificado" @@ -11539,8 +11835,8 @@ msgstr "%1$s ahora está conectado/a con %2$s" msgid "%1$s poked %2$s" msgstr "%1$s ha dado un toque a %2$s" -#: ../../include/conversation.php:251 ../../include/text.php:1104 -#: ../../include/text.php:1109 +#: ../../include/conversation.php:251 ../../include/text.php:1129 +#: ../../include/text.php:1133 msgid "poked" msgstr "ha dado un toque a" @@ -11742,32 +12038,32 @@ msgstr "Correo basura" msgid "Posts flagged as SPAM" msgstr "Publicaciones marcadas como basura" -#: ../../include/conversation.php:1811 ../../include/nav.php:413 +#: ../../include/conversation.php:1811 ../../include/nav.php:381 msgid "Status Messages and Posts" msgstr "Mensajes de estado y publicaciones" -#: ../../include/conversation.php:1824 ../../include/nav.php:426 +#: ../../include/conversation.php:1824 ../../include/nav.php:394 msgid "Profile Details" msgstr "Detalles del perfil" -#: ../../include/conversation.php:1834 ../../include/nav.php:436 +#: ../../include/conversation.php:1834 ../../include/nav.php:404 #: ../../include/photos.php:655 msgid "Photo Albums" msgstr "Álbumes de fotos" -#: ../../include/conversation.php:1842 ../../include/nav.php:444 +#: ../../include/conversation.php:1842 ../../include/nav.php:412 msgid "Files and Storage" msgstr "Ficheros y repositorio" -#: ../../include/conversation.php:1879 ../../include/nav.php:479 +#: ../../include/conversation.php:1879 ../../include/nav.php:447 msgid "Bookmarks" msgstr "Marcadores" -#: ../../include/conversation.php:1882 ../../include/nav.php:482 +#: ../../include/conversation.php:1882 ../../include/nav.php:450 msgid "Saved Bookmarks" msgstr "Marcadores guardados" -#: ../../include/conversation.php:1893 ../../include/nav.php:493 +#: ../../include/conversation.php:1893 ../../include/nav.php:461 msgid "View Cards" msgstr "Ver las fichas" @@ -11775,11 +12071,11 @@ msgstr "Ver las fichas" msgid "articles" msgstr "artículos" -#: ../../include/conversation.php:1904 ../../include/nav.php:504 +#: ../../include/conversation.php:1904 ../../include/nav.php:472 msgid "View Articles" msgstr "Ver los artículos" -#: ../../include/conversation.php:1915 ../../include/nav.php:516 +#: ../../include/conversation.php:1915 ../../include/nav.php:484 msgid "View Webpages" msgstr "Ver páginas web" @@ -11851,368 +12147,368 @@ msgid "" "Cannot create a duplicate channel identifier on this system. Import failed." msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." -#: ../../include/import.php:105 +#: ../../include/import.php:106 msgid "Cloned channel not found. Import failed." msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." -#: ../../include/text.php:478 +#: ../../include/text.php:492 msgid "prev" msgstr "anterior" -#: ../../include/text.php:480 +#: ../../include/text.php:494 msgid "first" msgstr "primera" -#: ../../include/text.php:509 +#: ../../include/text.php:523 msgid "last" msgstr "última" -#: ../../include/text.php:512 +#: ../../include/text.php:526 msgid "next" msgstr "próxima" -#: ../../include/text.php:523 +#: ../../include/text.php:537 msgid "older" msgstr "más antiguas" -#: ../../include/text.php:525 +#: ../../include/text.php:539 msgid "newer" msgstr "más recientes" -#: ../../include/text.php:947 +#: ../../include/text.php:961 msgid "No connections" msgstr "Sin conexiones" -#: ../../include/text.php:972 +#: ../../include/text.php:993 #, php-format msgid "View all %s connections" msgstr "Ver todas las %s conexiones" -#: ../../include/text.php:1104 ../../include/text.php:1109 +#: ../../include/text.php:1129 ../../include/text.php:1133 msgid "poke" msgstr "un toque" -#: ../../include/text.php:1110 +#: ../../include/text.php:1134 msgid "ping" msgstr "un \"ping\"" -#: ../../include/text.php:1110 +#: ../../include/text.php:1134 msgid "pinged" msgstr "ha enviado un \"ping\" a" -#: ../../include/text.php:1111 +#: ../../include/text.php:1135 msgid "prod" msgstr "una incitación " -#: ../../include/text.php:1111 +#: ../../include/text.php:1135 msgid "prodded" msgstr "ha incitado a " -#: ../../include/text.php:1112 +#: ../../include/text.php:1136 msgid "slap" msgstr "una bofetada " -#: ../../include/text.php:1112 +#: ../../include/text.php:1136 msgid "slapped" msgstr "ha abofeteado a " -#: ../../include/text.php:1113 +#: ../../include/text.php:1137 msgid "finger" msgstr "un \"finger\" " -#: ../../include/text.php:1113 +#: ../../include/text.php:1137 msgid "fingered" msgstr "envió un \"finger\" a" -#: ../../include/text.php:1114 +#: ../../include/text.php:1138 msgid "rebuff" msgstr "un reproche" -#: ../../include/text.php:1114 +#: ../../include/text.php:1138 msgid "rebuffed" msgstr "ha hecho un reproche a " -#: ../../include/text.php:1126 +#: ../../include/text.php:1161 msgid "happy" msgstr "feliz " -#: ../../include/text.php:1127 +#: ../../include/text.php:1162 msgid "sad" msgstr "triste " -#: ../../include/text.php:1128 +#: ../../include/text.php:1163 msgid "mellow" msgstr "tranquilo/a" -#: ../../include/text.php:1129 +#: ../../include/text.php:1164 msgid "tired" msgstr "cansado/a " -#: ../../include/text.php:1130 +#: ../../include/text.php:1165 msgid "perky" msgstr "vivaz" -#: ../../include/text.php:1131 +#: ../../include/text.php:1166 msgid "angry" msgstr "enfadado/a" -#: ../../include/text.php:1132 +#: ../../include/text.php:1167 msgid "stupefied" msgstr "asombrado/a" -#: ../../include/text.php:1133 +#: ../../include/text.php:1168 msgid "puzzled" msgstr "perplejo/a" -#: ../../include/text.php:1134 +#: ../../include/text.php:1169 msgid "interested" msgstr "interesado/a" -#: ../../include/text.php:1135 +#: ../../include/text.php:1170 msgid "bitter" msgstr "amargado/a" -#: ../../include/text.php:1136 +#: ../../include/text.php:1171 msgid "cheerful" msgstr "alegre" -#: ../../include/text.php:1137 +#: ../../include/text.php:1172 msgid "alive" msgstr "animado/a" -#: ../../include/text.php:1138 +#: ../../include/text.php:1173 msgid "annoyed" msgstr "molesto/a" -#: ../../include/text.php:1139 +#: ../../include/text.php:1174 msgid "anxious" msgstr "ansioso/a" -#: ../../include/text.php:1140 +#: ../../include/text.php:1175 msgid "cranky" msgstr "de mal humor" -#: ../../include/text.php:1141 +#: ../../include/text.php:1176 msgid "disturbed" msgstr "perturbado/a" -#: ../../include/text.php:1142 +#: ../../include/text.php:1177 msgid "frustrated" msgstr "frustrado/a" -#: ../../include/text.php:1143 +#: ../../include/text.php:1178 msgid "depressed" msgstr "deprimido/a" -#: ../../include/text.php:1144 +#: ../../include/text.php:1179 msgid "motivated" msgstr "motivado/a" -#: ../../include/text.php:1145 +#: ../../include/text.php:1180 msgid "relaxed" msgstr "relajado/a" -#: ../../include/text.php:1146 +#: ../../include/text.php:1181 msgid "surprised" msgstr "sorprendido/a" -#: ../../include/text.php:1320 ../../include/js_strings.php:70 +#: ../../include/text.php:1360 ../../include/js_strings.php:76 msgid "Monday" msgstr "lunes" -#: ../../include/text.php:1320 ../../include/js_strings.php:71 +#: ../../include/text.php:1360 ../../include/js_strings.php:77 msgid "Tuesday" msgstr "martes" -#: ../../include/text.php:1320 ../../include/js_strings.php:72 +#: ../../include/text.php:1360 ../../include/js_strings.php:78 msgid "Wednesday" msgstr "miércoles" -#: ../../include/text.php:1320 ../../include/js_strings.php:73 +#: ../../include/text.php:1360 ../../include/js_strings.php:79 msgid "Thursday" msgstr "jueves" -#: ../../include/text.php:1320 ../../include/js_strings.php:74 +#: ../../include/text.php:1360 ../../include/js_strings.php:80 msgid "Friday" msgstr "viernes" -#: ../../include/text.php:1320 ../../include/js_strings.php:75 +#: ../../include/text.php:1360 ../../include/js_strings.php:81 msgid "Saturday" msgstr "sábado" -#: ../../include/text.php:1320 ../../include/js_strings.php:69 +#: ../../include/text.php:1360 ../../include/js_strings.php:75 msgid "Sunday" msgstr "domingo" -#: ../../include/text.php:1324 ../../include/js_strings.php:45 +#: ../../include/text.php:1364 ../../include/js_strings.php:51 msgid "January" msgstr "enero" -#: ../../include/text.php:1324 ../../include/js_strings.php:46 +#: ../../include/text.php:1364 ../../include/js_strings.php:52 msgid "February" msgstr "febrero" -#: ../../include/text.php:1324 ../../include/js_strings.php:47 +#: ../../include/text.php:1364 ../../include/js_strings.php:53 msgid "March" msgstr "marzo" -#: ../../include/text.php:1324 ../../include/js_strings.php:48 +#: ../../include/text.php:1364 ../../include/js_strings.php:54 msgid "April" msgstr "abril" -#: ../../include/text.php:1324 +#: ../../include/text.php:1364 msgid "May" msgstr "mayo" -#: ../../include/text.php:1324 ../../include/js_strings.php:50 +#: ../../include/text.php:1364 ../../include/js_strings.php:56 msgid "June" msgstr "junio" -#: ../../include/text.php:1324 ../../include/js_strings.php:51 +#: ../../include/text.php:1364 ../../include/js_strings.php:57 msgid "July" msgstr "julio" -#: ../../include/text.php:1324 ../../include/js_strings.php:52 +#: ../../include/text.php:1364 ../../include/js_strings.php:58 msgid "August" msgstr "agosto" -#: ../../include/text.php:1324 ../../include/js_strings.php:53 +#: ../../include/text.php:1364 ../../include/js_strings.php:59 msgid "September" msgstr "septiembre" -#: ../../include/text.php:1324 ../../include/js_strings.php:54 +#: ../../include/text.php:1364 ../../include/js_strings.php:60 msgid "October" msgstr "octubre" -#: ../../include/text.php:1324 ../../include/js_strings.php:55 +#: ../../include/text.php:1364 ../../include/js_strings.php:61 msgid "November" msgstr "noviembre" -#: ../../include/text.php:1324 ../../include/js_strings.php:56 +#: ../../include/text.php:1364 ../../include/js_strings.php:62 msgid "December" msgstr "diciembre" -#: ../../include/text.php:1388 ../../include/text.php:1392 +#: ../../include/text.php:1428 ../../include/text.php:1432 msgid "Unknown Attachment" msgstr "Adjunto no reconocido" -#: ../../include/text.php:1394 ../../include/feedutils.php:825 +#: ../../include/text.php:1434 ../../include/feedutils.php:852 msgid "unknown" msgstr "desconocido" -#: ../../include/text.php:1430 +#: ../../include/text.php:1470 msgid "remove category" msgstr "eliminar el tema" -#: ../../include/text.php:1504 +#: ../../include/text.php:1544 msgid "remove from file" msgstr "eliminar del fichero" -#: ../../include/text.php:1623 ../../include/message.php:12 +#: ../../include/text.php:1686 ../../include/message.php:12 msgid "Download binary/encrypted content" msgstr "Descargar contenido binario o cifrado" -#: ../../include/text.php:1782 ../../include/language.php:364 +#: ../../include/text.php:1848 ../../include/language.php:397 msgid "default" msgstr "por defecto" -#: ../../include/text.php:1790 +#: ../../include/text.php:1856 msgid "Page layout" msgstr "Plantilla de la página" -#: ../../include/text.php:1790 +#: ../../include/text.php:1856 msgid "You can create your own with the layouts tool" msgstr "Puede crear su propia disposición gráfica con la herramienta de plantillas" -#: ../../include/text.php:1801 +#: ../../include/text.php:1867 msgid "HTML" msgstr "HTML" -#: ../../include/text.php:1804 +#: ../../include/text.php:1870 msgid "Comanche Layout" msgstr "Plantilla de Comanche" -#: ../../include/text.php:1809 +#: ../../include/text.php:1875 msgid "PHP" msgstr "PHP" -#: ../../include/text.php:1818 +#: ../../include/text.php:1884 msgid "Page content type" msgstr "Tipo de contenido de la página" -#: ../../include/text.php:1951 +#: ../../include/text.php:2017 msgid "activity" msgstr "la actividad" -#: ../../include/text.php:2014 +#: ../../include/text.php:2099 msgid "a-z, 0-9, -, and _ only" msgstr "a-z, 0-9, -, and _ only" -#: ../../include/text.php:2285 +#: ../../include/text.php:2399 msgid "Design Tools" msgstr "Herramientas de diseño web" -#: ../../include/text.php:2291 +#: ../../include/text.php:2405 msgid "Pages" msgstr "Páginas" -#: ../../include/text.php:2313 +#: ../../include/text.php:2427 msgid "Import website..." msgstr "Importar un sitio web..." -#: ../../include/text.php:2314 +#: ../../include/text.php:2428 msgid "Select folder to import" msgstr "Seleccionar la carpeta que se va a importar" -#: ../../include/text.php:2315 +#: ../../include/text.php:2429 msgid "Import from a zipped folder:" msgstr "Importar desde una carpeta comprimida: " -#: ../../include/text.php:2316 +#: ../../include/text.php:2430 msgid "Import from cloud files:" msgstr "Importar desde los ficheros en la nube: " -#: ../../include/text.php:2317 +#: ../../include/text.php:2431 msgid "/cloud/channel/path/to/folder" msgstr "/cloud/canal/ruta/a la/carpeta" -#: ../../include/text.php:2318 +#: ../../include/text.php:2432 msgid "Enter path to website files" msgstr "Ruta a los ficheros del sitio web" -#: ../../include/text.php:2319 +#: ../../include/text.php:2433 msgid "Select folder" msgstr "Seleccionar la carpeta" -#: ../../include/text.php:2320 +#: ../../include/text.php:2434 msgid "Export website..." msgstr "Exportar un sitio web..." -#: ../../include/text.php:2321 +#: ../../include/text.php:2435 msgid "Export to a zip file" msgstr "Exportar a un fichero comprimido .zip" -#: ../../include/text.php:2322 +#: ../../include/text.php:2436 msgid "website.zip" msgstr "sitio_web.zip" -#: ../../include/text.php:2323 +#: ../../include/text.php:2437 msgid "Enter a name for the zip file." msgstr "Escriba un nombre para el fichero zip." -#: ../../include/text.php:2324 +#: ../../include/text.php:2438 msgid "Export to cloud files" msgstr "Exportar a la nube de ficheros" -#: ../../include/text.php:2325 +#: ../../include/text.php:2439 msgid "/path/to/export/folder" msgstr "/ruta/para/exportar/carpeta" -#: ../../include/text.php:2326 +#: ../../include/text.php:2440 msgid "Enter a path to a cloud files destination." msgstr "Escriba una ruta de destino a la nube de ficheros." -#: ../../include/text.php:2327 +#: ../../include/text.php:2441 msgid "Specify folder" msgstr "Especificar una carpeta" @@ -12260,7 +12556,7 @@ msgstr "Conexiones comunes" msgid "View all %d common connections" msgstr "Ver todas las %d conexiones comunes" -#: ../../include/markdown.php:158 ../../include/bbcode.php:339 +#: ../../include/markdown.php:158 ../../include/bbcode.php:343 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s escribió %2$s siguiente %3$s" @@ -12364,182 +12660,182 @@ msgstr "Por favor, introduzca una dirección de enlace" msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:31 msgid "timeago.prefixAgo" msgstr "timeago.prefixAgo" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:32 msgid "timeago.prefixFromNow" msgstr "timeago.prefixFromNow" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "antes" +#: ../../include/js_strings.php:33 +msgid "timeago.suffixAgo" +msgstr "timeago.suffixAgo" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "desde ahora" +#: ../../include/js_strings.php:34 +msgid "timeago.suffixFromNow" +msgstr "timeago.suffixFromNow" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:37 msgid "less than a minute" msgstr "menos de un minuto" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:38 msgid "about a minute" msgstr "alrededor de un minuto" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:39 #, php-format msgid "%d minutes" msgstr "%d minutos" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:40 msgid "about an hour" msgstr "alrededor de una hora" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:41 #, php-format msgid "about %d hours" msgstr "alrededor de %d horas" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:42 msgid "a day" msgstr "un día" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:43 #, php-format msgid "%d days" msgstr "%d días" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:44 msgid "about a month" msgstr "alrededor de un mes" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:45 #, php-format msgid "%d months" msgstr "%d meses" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:46 msgid "about a year" msgstr "alrededor de un año" -#: ../../include/js_strings.php:41 +#: ../../include/js_strings.php:47 #, php-format msgid "%d years" msgstr "%d años" -#: ../../include/js_strings.php:42 +#: ../../include/js_strings.php:48 msgid " " msgstr " " -#: ../../include/js_strings.php:43 +#: ../../include/js_strings.php:49 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/js_strings.php:49 +#: ../../include/js_strings.php:55 msgctxt "long" msgid "May" msgstr "mayo" -#: ../../include/js_strings.php:57 +#: ../../include/js_strings.php:63 msgid "Jan" msgstr "ene" -#: ../../include/js_strings.php:58 +#: ../../include/js_strings.php:64 msgid "Feb" msgstr "feb" -#: ../../include/js_strings.php:59 +#: ../../include/js_strings.php:65 msgid "Mar" msgstr "mar" -#: ../../include/js_strings.php:60 +#: ../../include/js_strings.php:66 msgid "Apr" msgstr "abr" -#: ../../include/js_strings.php:61 +#: ../../include/js_strings.php:67 msgctxt "short" msgid "May" msgstr "may" -#: ../../include/js_strings.php:62 +#: ../../include/js_strings.php:68 msgid "Jun" msgstr "jun" -#: ../../include/js_strings.php:63 +#: ../../include/js_strings.php:69 msgid "Jul" msgstr "jul" -#: ../../include/js_strings.php:64 +#: ../../include/js_strings.php:70 msgid "Aug" msgstr "ago" -#: ../../include/js_strings.php:65 +#: ../../include/js_strings.php:71 msgid "Sep" msgstr "sep" -#: ../../include/js_strings.php:66 +#: ../../include/js_strings.php:72 msgid "Oct" msgstr "oct" -#: ../../include/js_strings.php:67 +#: ../../include/js_strings.php:73 msgid "Nov" msgstr "nov" -#: ../../include/js_strings.php:68 +#: ../../include/js_strings.php:74 msgid "Dec" msgstr "dic" -#: ../../include/js_strings.php:76 +#: ../../include/js_strings.php:82 msgid "Sun" msgstr "dom" -#: ../../include/js_strings.php:77 +#: ../../include/js_strings.php:83 msgid "Mon" msgstr "lun" -#: ../../include/js_strings.php:78 +#: ../../include/js_strings.php:84 msgid "Tue" msgstr "mar" -#: ../../include/js_strings.php:79 +#: ../../include/js_strings.php:85 msgid "Wed" msgstr "mié" -#: ../../include/js_strings.php:80 +#: ../../include/js_strings.php:86 msgid "Thu" msgstr "jue" -#: ../../include/js_strings.php:81 +#: ../../include/js_strings.php:87 msgid "Fri" msgstr "vie" -#: ../../include/js_strings.php:82 +#: ../../include/js_strings.php:88 msgid "Sat" msgstr "sáb" -#: ../../include/js_strings.php:83 +#: ../../include/js_strings.php:89 msgctxt "calendar" msgid "today" msgstr "hoy" -#: ../../include/js_strings.php:84 +#: ../../include/js_strings.php:90 msgctxt "calendar" msgid "month" msgstr "mes" -#: ../../include/js_strings.php:85 +#: ../../include/js_strings.php:91 msgctxt "calendar" msgid "week" msgstr "semana" -#: ../../include/js_strings.php:86 +#: ../../include/js_strings.php:92 msgctxt "calendar" msgid "day" msgstr "día" -#: ../../include/js_strings.php:87 +#: ../../include/js_strings.php:93 msgctxt "calendar" msgid "All day" msgstr "Todos los días" @@ -12587,61 +12883,61 @@ msgstr "%1$s ha actualizado %2$s, cambiando %3$s." msgid "Item was not found." msgstr "Elemento no encontrado." -#: ../../include/attach.php:553 +#: ../../include/attach.php:554 msgid "No source file." msgstr "Ningún fichero de origen" -#: ../../include/attach.php:575 +#: ../../include/attach.php:576 msgid "Cannot locate file to replace" msgstr "No se puede localizar el fichero que va a ser sustituido." -#: ../../include/attach.php:593 +#: ../../include/attach.php:595 msgid "Cannot locate file to revise/update" msgstr "No se puede localizar el fichero para revisar/actualizar" -#: ../../include/attach.php:734 +#: ../../include/attach.php:737 #, php-format msgid "File exceeds size limit of %d" msgstr "El fichero supera el limite de tamaño de %d" -#: ../../include/attach.php:754 +#: ../../include/attach.php:758 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." -#: ../../include/attach.php:929 +#: ../../include/attach.php:940 msgid "File upload failed. Possible system limit or action terminated." msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." -#: ../../include/attach.php:948 +#: ../../include/attach.php:959 msgid "Stored file could not be verified. Upload failed." msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." -#: ../../include/attach.php:1022 ../../include/attach.php:1038 +#: ../../include/attach.php:1033 ../../include/attach.php:1049 msgid "Path not available." msgstr "Ruta no disponible." -#: ../../include/attach.php:1087 ../../include/attach.php:1252 +#: ../../include/attach.php:1098 ../../include/attach.php:1263 msgid "Empty pathname" msgstr "Ruta vacía" -#: ../../include/attach.php:1113 +#: ../../include/attach.php:1124 msgid "duplicate filename or path" msgstr "Nombre duplicado de ruta o fichero" -#: ../../include/attach.php:1138 +#: ../../include/attach.php:1149 msgid "Path not found." msgstr "Ruta no encontrada" -#: ../../include/attach.php:1206 +#: ../../include/attach.php:1217 msgid "mkdir failed." msgstr "mkdir ha fallado." -#: ../../include/attach.php:1210 +#: ../../include/attach.php:1221 msgid "database storage failed." msgstr "el almacenamiento en la base de datos ha fallado." -#: ../../include/attach.php:1258 +#: ../../include/attach.php:1269 msgid "Empty path" msgstr "Ruta vacía" @@ -12688,34 +12984,34 @@ msgstr "Visible para las conexiones permitidas." msgid "Visible to specific connections." msgstr "Visible para conexiones específicas." -#: ../../include/items.php:4117 +#: ../../include/items.php:4147 msgid "Privacy group is empty." msgstr "El grupo de canales está vacío." -#: ../../include/items.php:4124 +#: ../../include/items.php:4154 #, php-format msgid "Privacy group: %s" msgstr "Grupo de canales: %s" -#: ../../include/items.php:4136 +#: ../../include/items.php:4166 msgid "Connection not found." msgstr "Conexión no encontrada" -#: ../../include/items.php:4485 +#: ../../include/items.php:4515 msgid "profile photo" msgstr "foto del perfil" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 #, php-format msgid "[Edited %s]" msgstr "[se ha editado %s]" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 msgctxt "edit_activity" msgid "Post" msgstr "Publicar" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 msgctxt "edit_activity" msgid "Comment" msgstr "Comentar" @@ -12760,11 +13056,11 @@ msgstr "Crear un nuevo perfil" msgid "Visible to everybody" msgstr "Visible para todos" -#: ../../include/channel.php:1396 ../../include/channel.php:1523 +#: ../../include/channel.php:1396 ../../include/channel.php:1524 msgid "Gender:" msgstr "Género:" -#: ../../include/channel.php:1398 ../../include/channel.php:1578 +#: ../../include/channel.php:1398 ../../include/channel.php:1579 msgid "Homepage:" msgstr "Página personal:" @@ -12772,108 +13068,112 @@ msgstr "Página personal:" msgid "Online Now" msgstr "Ahora en línea" -#: ../../include/channel.php:1482 +#: ../../include/channel.php:1452 +msgid "Change your profile photo" +msgstr "Cambiar su foto del perfil" + +#: ../../include/channel.php:1483 msgid "Trans" msgstr "Trans" -#: ../../include/channel.php:1528 +#: ../../include/channel.php:1529 msgid "Like this channel" msgstr "Me gusta este canal" -#: ../../include/channel.php:1552 +#: ../../include/channel.php:1553 msgid "j F, Y" msgstr "j F Y" -#: ../../include/channel.php:1553 +#: ../../include/channel.php:1554 msgid "j F" msgstr "j F" -#: ../../include/channel.php:1560 +#: ../../include/channel.php:1561 msgid "Birthday:" msgstr "Cumpleaños:" -#: ../../include/channel.php:1573 +#: ../../include/channel.php:1574 #, php-format msgid "for %1$d %2$s" msgstr "por %1$d %2$s" -#: ../../include/channel.php:1576 +#: ../../include/channel.php:1577 msgid "Sexual Preference:" msgstr "Orientación sexual:" -#: ../../include/channel.php:1582 +#: ../../include/channel.php:1583 msgid "Tags:" msgstr "Etiquetas:" -#: ../../include/channel.php:1584 +#: ../../include/channel.php:1585 msgid "Political Views:" msgstr "Posición política:" -#: ../../include/channel.php:1586 +#: ../../include/channel.php:1587 msgid "Religion:" msgstr "Religión:" -#: ../../include/channel.php:1590 +#: ../../include/channel.php:1591 msgid "Hobbies/Interests:" msgstr "Aficciones o intereses:" -#: ../../include/channel.php:1592 +#: ../../include/channel.php:1593 msgid "Likes:" msgstr "Me gusta:" -#: ../../include/channel.php:1594 +#: ../../include/channel.php:1595 msgid "Dislikes:" msgstr "No me gusta:" -#: ../../include/channel.php:1596 +#: ../../include/channel.php:1597 msgid "Contact information and Social Networks:" msgstr "Información de contacto y redes sociales:" -#: ../../include/channel.php:1598 +#: ../../include/channel.php:1599 msgid "My other channels:" msgstr "Mis otros canales:" -#: ../../include/channel.php:1600 +#: ../../include/channel.php:1601 msgid "Musical interests:" msgstr "Preferencias musicales:" -#: ../../include/channel.php:1602 +#: ../../include/channel.php:1603 msgid "Books, literature:" msgstr "Libros, literatura:" -#: ../../include/channel.php:1604 +#: ../../include/channel.php:1605 msgid "Television:" msgstr "Televisión:" -#: ../../include/channel.php:1606 +#: ../../include/channel.php:1607 msgid "Film/dance/culture/entertainment:" msgstr "Cine, danza, cultura, entretenimiento:" -#: ../../include/channel.php:1608 +#: ../../include/channel.php:1609 msgid "Love/Romance:" msgstr "Vida sentimental o amorosa:" -#: ../../include/channel.php:1610 +#: ../../include/channel.php:1611 msgid "Work/employment:" msgstr "Trabajo:" -#: ../../include/channel.php:1612 +#: ../../include/channel.php:1613 msgid "School/education:" msgstr "Estudios:" -#: ../../include/channel.php:1635 +#: ../../include/channel.php:1636 msgid "Like this thing" msgstr "Me gusta esto" -#: ../../include/event.php:23 ../../include/event.php:70 +#: ../../include/event.php:24 ../../include/event.php:71 msgid "l F d, Y \\@ g:i A" msgstr "l d de F, Y \\@ G:i" -#: ../../include/event.php:31 ../../include/event.php:74 +#: ../../include/event.php:32 ../../include/event.php:75 msgid "Starts:" msgstr "Comienza:" -#: ../../include/event.php:41 ../../include/event.php:78 +#: ../../include/event.php:42 ../../include/event.php:79 msgid "Finishes:" msgstr "Finaliza:" @@ -12881,167 +13181,175 @@ msgstr "Finaliza:" msgid "This event has been added to your calendar." msgstr "Este evento ha sido añadido a su calendario." -#: ../../include/event.php:1220 +#: ../../include/event.php:1227 msgid "Not specified" msgstr "Sin especificar" -#: ../../include/event.php:1221 +#: ../../include/event.php:1228 msgid "Needs Action" msgstr "Necesita de una intervención" -#: ../../include/event.php:1222 +#: ../../include/event.php:1229 msgid "Completed" msgstr "Completado/a" -#: ../../include/event.php:1223 +#: ../../include/event.php:1230 msgid "In Process" msgstr "En proceso" -#: ../../include/event.php:1224 +#: ../../include/event.php:1231 msgid "Cancelled" msgstr "Cancelado/a" -#: ../../include/event.php:1303 ../../include/connections.php:684 +#: ../../include/event.php:1310 ../../include/connections.php:684 msgid "Home, Voice" msgstr "Llamadas particulares" -#: ../../include/event.php:1304 ../../include/connections.php:685 +#: ../../include/event.php:1311 ../../include/connections.php:685 msgid "Home, Fax" msgstr "Fax particular" -#: ../../include/event.php:1306 ../../include/connections.php:687 +#: ../../include/event.php:1313 ../../include/connections.php:687 msgid "Work, Voice" msgstr "Llamadas de trabajo" -#: ../../include/event.php:1307 ../../include/connections.php:688 +#: ../../include/event.php:1314 ../../include/connections.php:688 msgid "Work, Fax" msgstr "Fax de trabajo" -#: ../../include/network.php:761 +#: ../../include/network.php:762 msgid "view full size" msgstr "Ver en el tamaño original" -#: ../../include/network.php:1763 ../../include/network.php:1764 +#: ../../include/network.php:1769 ../../include/network.php:1770 msgid "Friendica" msgstr "Friendica" -#: ../../include/network.php:1765 +#: ../../include/network.php:1771 msgid "OStatus" msgstr "OStatus" -#: ../../include/network.php:1766 +#: ../../include/network.php:1772 msgid "GNU-Social" msgstr "GNU Social" -#: ../../include/network.php:1767 +#: ../../include/network.php:1773 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/network.php:1770 +#: ../../include/network.php:1776 msgid "Diaspora" msgstr "Diaspora" -#: ../../include/network.php:1771 +#: ../../include/network.php:1777 msgid "Facebook" msgstr "Facebook" -#: ../../include/network.php:1772 +#: ../../include/network.php:1778 msgid "Zot" msgstr "Zot" -#: ../../include/network.php:1773 +#: ../../include/network.php:1779 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/network.php:1774 +#: ../../include/network.php:1780 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/network.php:1775 +#: ../../include/network.php:1781 msgid "MySpace" msgstr "MySpace" -#: ../../include/language.php:377 +#: ../../include/language.php:410 msgid "Select an alternate language" msgstr "Seleccionar un idioma alternativo" -#: ../../include/acl_selectors.php:208 +#: ../../include/acl_selectors.php:113 msgid "Who can see this?" msgstr "¿Quién puede ver esto?" -#: ../../include/acl_selectors.php:209 +#: ../../include/acl_selectors.php:114 msgid "Custom selection" msgstr "Selección personalizada" -#: ../../include/acl_selectors.php:210 +#: ../../include/acl_selectors.php:115 msgid "" "Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" " the scope of \"Show\"." msgstr "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"." -#: ../../include/acl_selectors.php:211 +#: ../../include/acl_selectors.php:116 msgid "Show" msgstr "Mostrar" -#: ../../include/acl_selectors.php:212 +#: ../../include/acl_selectors.php:117 msgid "Don't show" msgstr "No mostrar" -#: ../../include/acl_selectors.php:245 +#: ../../include/acl_selectors.php:150 #, php-format msgid "" "Post permissions %s cannot be changed %s after a post is shared.
    These" " permissions set who is allowed to view the post." msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
    Estos permisos establecen quién está autorizado para ver el mensaje." -#: ../../include/dba/dba_driver.php:190 +#: ../../include/dba/dba_driver.php:178 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" -#: ../../include/bbcode.php:194 ../../include/bbcode.php:1106 -#: ../../include/bbcode.php:1109 ../../include/bbcode.php:1114 -#: ../../include/bbcode.php:1117 ../../include/bbcode.php:1120 -#: ../../include/bbcode.php:1123 ../../include/bbcode.php:1128 -#: ../../include/bbcode.php:1131 ../../include/bbcode.php:1136 -#: ../../include/bbcode.php:1139 ../../include/bbcode.php:1142 -#: ../../include/bbcode.php:1145 +#: ../../include/bbcode.php:198 ../../include/bbcode.php:1151 +#: ../../include/bbcode.php:1154 ../../include/bbcode.php:1159 +#: ../../include/bbcode.php:1162 ../../include/bbcode.php:1165 +#: ../../include/bbcode.php:1168 ../../include/bbcode.php:1173 +#: ../../include/bbcode.php:1176 ../../include/bbcode.php:1181 +#: ../../include/bbcode.php:1184 ../../include/bbcode.php:1187 +#: ../../include/bbcode.php:1190 msgid "Image/photo" msgstr "Imagen/foto" -#: ../../include/bbcode.php:233 ../../include/bbcode.php:1156 +#: ../../include/bbcode.php:237 ../../include/bbcode.php:1201 msgid "Encrypted content" msgstr "Contenido cifrado" -#: ../../include/bbcode.php:249 +#: ../../include/bbcode.php:253 #, php-format msgid "Install %1$s element %2$s" msgstr "Instalar el elemento de%1$s%2$s" -#: ../../include/bbcode.php:253 +#: ../../include/bbcode.php:257 #, php-format msgid "" "This post contains an installable %s element, however you lack permissions " "to install it on this site." msgstr "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio." -#: ../../include/bbcode.php:331 +#: ../../include/bbcode.php:335 msgid "card" msgstr "ficha" -#: ../../include/bbcode.php:333 +#: ../../include/bbcode.php:337 msgid "article" -msgstr "artículo" +msgstr "el artículo" -#: ../../include/bbcode.php:416 ../../include/bbcode.php:424 +#: ../../include/bbcode.php:420 ../../include/bbcode.php:428 msgid "Click to open/close" msgstr "Pulsar para abrir/cerrar" -#: ../../include/bbcode.php:424 +#: ../../include/bbcode.php:428 msgid "spoiler" msgstr "spoiler" -#: ../../include/bbcode.php:1094 +#: ../../include/bbcode.php:441 +msgid "View article" +msgstr "Ver el artículo" + +#: ../../include/bbcode.php:441 +msgid "View summary" +msgstr "Ver sumario" + +#: ../../include/bbcode.php:1139 msgid "$1 wrote:" msgstr "$1 escribió:" @@ -13061,7 +13369,7 @@ msgstr "Contenido incorporado" msgid "Embedding disabled" msgstr "Incrustación deshabilitada" -#: ../../include/zid.php:340 +#: ../../include/zid.php:346 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s da la bienvenida a %2$s" @@ -13070,344 +13378,364 @@ msgstr "OpenWebAuth: %1$s da la bienvenida a %2$s" msgid "General Features" msgstr "Funcionalidades básicas" -#: ../../include/features.php:59 -msgid "Multiple Profiles" -msgstr "Múltiples perfiles" - #: ../../include/features.php:60 -msgid "Ability to create multiple profiles" -msgstr "Capacidad de crear múltiples perfiles" - -#: ../../include/features.php:68 msgid "Advanced Profiles" msgstr "Perfiles avanzados" -#: ../../include/features.php:69 +#: ../../include/features.php:61 msgid "Additional profile sections and selections" msgstr "Secciones y selecciones de perfil adicionales" -#: ../../include/features.php:77 +#: ../../include/features.php:69 msgid "Profile Import/Export" msgstr "Importar/Exportar perfil" -#: ../../include/features.php:78 +#: ../../include/features.php:70 msgid "Save and load profile details across sites/channels" msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" -#: ../../include/features.php:86 +#: ../../include/features.php:78 msgid "Web Pages" msgstr "Páginas web" -#: ../../include/features.php:87 +#: ../../include/features.php:79 msgid "Provide managed web pages on your channel" msgstr "Proveer páginas web gestionadas en su canal" -#: ../../include/features.php:96 +#: ../../include/features.php:88 msgid "Provide a wiki for your channel" msgstr "Proporcionar un wiki para su canal" -#: ../../include/features.php:113 +#: ../../include/features.php:105 msgid "Private Notes" msgstr "Notas privadas" -#: ../../include/features.php:114 +#: ../../include/features.php:106 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" -#: ../../include/features.php:123 +#: ../../include/features.php:115 msgid "Create personal planning cards" msgstr "Crear fichas de planificación personal" -#: ../../include/features.php:141 +#: ../../include/features.php:125 +msgid "Create interactive articles" +msgstr "Crear artículos interactivos" + +#: ../../include/features.php:133 msgid "Navigation Channel Select" msgstr "Navegación por el selector de canales" -#: ../../include/features.php:142 +#: ../../include/features.php:134 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" -#: ../../include/features.php:150 +#: ../../include/features.php:142 msgid "Photo Location" msgstr "Ubicación de las fotos" -#: ../../include/features.php:151 +#: ../../include/features.php:143 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." -#: ../../include/features.php:159 +#: ../../include/features.php:151 msgid "Access Controlled Chatrooms" msgstr "Salas de chat moderadas" -#: ../../include/features.php:160 +#: ../../include/features.php:152 msgid "Provide chatrooms and chat services with access control." msgstr "Proporcionar salas y servicios de chat moderados." -#: ../../include/features.php:169 -msgid "Provide alternate connection permission roles." -msgstr "Proporcionar roles de acceso alternativos para esta conexión." - -#: ../../include/features.php:177 +#: ../../include/features.php:161 msgid "Smart Birthdays" msgstr "Cumpleaños inteligentes" -#: ../../include/features.php:178 +#: ../../include/features.php:162 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." -#: ../../include/features.php:186 +#: ../../include/features.php:170 msgid "Event Timezone Selection" msgstr "Selección del huso horario del evento" -#: ../../include/features.php:187 +#: ../../include/features.php:171 msgid "Allow event creation in timezones other than your own." msgstr "Permitir la creación de eventos en husos horarios distintos del suyo." -#: ../../include/features.php:195 -msgid "Advanced Directory Search" -msgstr "Búsqueda avanzada en el directorio" - -#: ../../include/features.php:196 -msgid "Allows creation of complex directory search queries" -msgstr "Permitir la creación de consultas complejas en las búsquedas en el directorio" - -#: ../../include/features.php:204 -msgid "Advanced Theme and Layout Settings" -msgstr "Ajustes avanzados de temas y esquemas" - -#: ../../include/features.php:205 -msgid "Allows fine tuning of themes and page layouts" -msgstr "Permitir el ajuste fino de temas y esquemas de páginas" - -#: ../../include/features.php:215 -msgid "Post Composition Features" -msgstr "Opciones para la redacción de entradas" - -#: ../../include/features.php:219 -msgid "Large Photos" -msgstr "Fotos de gran tamaño" - -#: ../../include/features.php:220 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" - -#: ../../include/features.php:229 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" - -#: ../../include/features.php:237 -msgid "Even More Encryption" -msgstr "Más cifrado todavía" - -#: ../../include/features.php:238 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." - -#: ../../include/features.php:246 -msgid "Enable Voting Tools" -msgstr "Permitir entradas con votación" - -#: ../../include/features.php:247 -msgid "Provide a class of post which others can vote on" -msgstr "Proveer una clase de publicación en la que otros puedan votar" - -#: ../../include/features.php:255 -msgid "Disable Comments" -msgstr "Deshabilitar comentarios" - -#: ../../include/features.php:256 -msgid "Provide the option to disable comments for a post" -msgstr "Proporcionar la opción de desactivar los comentarios para una entrada" - -#: ../../include/features.php:264 -msgid "Delayed Posting" -msgstr "Publicación aplazada" - -#: ../../include/features.php:265 -msgid "Allow posts to be published at a later date" -msgstr "Permitir mensajes que se publicarán en una fecha posterior" - -#: ../../include/features.php:273 -msgid "Content Expiration" -msgstr "Caducidad del contenido" - -#: ../../include/features.php:274 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" - -#: ../../include/features.php:282 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Prevenir entradas o comentarios duplicados" - -#: ../../include/features.php:283 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." - -#: ../../include/features.php:294 -msgid "Network and Stream Filtering" -msgstr "Filtrado del contenido" - -#: ../../include/features.php:298 -msgid "Search by Date" -msgstr "Buscar por fecha" - -#: ../../include/features.php:299 -msgid "Ability to select posts by date ranges" -msgstr "Capacidad de seleccionar entradas por rango de fechas" - -#: ../../include/features.php:307 ../../include/group.php:328 -msgid "Privacy Groups" -msgstr "Grupos de canales" - -#: ../../include/features.php:308 -msgid "Enable management and selection of privacy groups" -msgstr "Activar la gestión y selección de grupos de canales" - -#: ../../include/features.php:317 -msgid "Save search terms for re-use" -msgstr "Guardar términos de búsqueda para su reutilización" - -#: ../../include/features.php:325 -msgid "Network Personal Tab" -msgstr "Actividad personal" - -#: ../../include/features.php:326 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." - -#: ../../include/features.php:334 -msgid "Network New Tab" -msgstr "Contenido nuevo" - -#: ../../include/features.php:335 -msgid "Enable tab to display all new Network activity" -msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" - -#: ../../include/features.php:343 -msgid "Affinity Tool" -msgstr "Herramienta de afinidad" - -#: ../../include/features.php:344 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrar el contenido según la profundidad de las relaciones" - -#: ../../include/features.php:353 -msgid "Show friend and connection suggestions" -msgstr "Mostrar sugerencias de amigos y conexiones" - -#: ../../include/features.php:361 -msgid "Connection Filtering" -msgstr "Filtrado de conexiones" - -#: ../../include/features.php:362 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" - -#: ../../include/features.php:374 -msgid "Post/Comment Tools" -msgstr "Gestión de entradas y comentarios" - -#: ../../include/features.php:379 -msgid "Use markdown for editing posts" -msgstr "Usar markdown para editar las entradas" - -#: ../../include/features.php:387 -msgid "Community Tagging" -msgstr "Etiquetas de la comunidad" - -#: ../../include/features.php:388 -msgid "Ability to tag existing posts" -msgstr "Capacidad de etiquetar entradas existentes" - -#: ../../include/features.php:396 -msgid "Post Categories" -msgstr "Temas de las entradas" - -#: ../../include/features.php:397 -msgid "Add categories to your posts" -msgstr "Añadir temas a sus publicaciones" - -#: ../../include/features.php:405 -msgid "Emoji Reactions" -msgstr "Emoticonos \"emoji\"" - -#: ../../include/features.php:406 -msgid "Add emoji reaction ability to posts" -msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" - -#: ../../include/features.php:415 -msgid "Ability to file posts under folders" -msgstr "Capacidad de archivar entradas en carpetas" - -#: ../../include/features.php:423 -msgid "Dislike Posts" -msgstr "Desagrado de publicaciones" - -#: ../../include/features.php:424 -msgid "Ability to dislike posts/comments" -msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" - -#: ../../include/features.php:432 -msgid "Star Posts" -msgstr "Entradas destacadas" - -#: ../../include/features.php:433 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" - -#: ../../include/features.php:441 -msgid "Tag Cloud" -msgstr "Nube de etiquetas" - -#: ../../include/features.php:442 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Proveer nube de etiquetas personal en su página de canal" - -#: ../../include/features.php:453 +#: ../../include/features.php:180 msgid "Premium Channel" msgstr "Canal premium" -#: ../../include/features.php:454 +#: ../../include/features.php:181 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" -#: ../../include/taxonomy.php:377 ../../include/taxonomy.php:398 +#: ../../include/features.php:189 +msgid "Advanced Directory Search" +msgstr "Búsqueda avanzada en el directorio" + +#: ../../include/features.php:190 +msgid "Allows creation of complex directory search queries" +msgstr "Permitir la creación de consultas complejas en las búsquedas en el directorio" + +#: ../../include/features.php:198 +msgid "Advanced Theme and Layout Settings" +msgstr "Ajustes avanzados de temas y esquemas" + +#: ../../include/features.php:199 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Permitir el ajuste fino de temas y esquemas de páginas" + +#: ../../include/features.php:208 +msgid "Access Control and Permissions" +msgstr "Control de acceso y permisos" + +#: ../../include/features.php:212 ../../include/group.php:328 +msgid "Privacy Groups" +msgstr "Grupos de canales" + +#: ../../include/features.php:213 +msgid "Enable management and selection of privacy groups" +msgstr "Activar la gestión y selección de grupos de canales" + +#: ../../include/features.php:221 +msgid "Multiple Profiles" +msgstr "Múltiples perfiles" + +#: ../../include/features.php:222 +msgid "Ability to create multiple profiles" +msgstr "Capacidad de crear múltiples perfiles" + +#: ../../include/features.php:232 +msgid "Provide alternate connection permission roles." +msgstr "Proporcionar roles de acceso alternativos para esta conexión." + +#: ../../include/features.php:240 +msgid "OAuth Clients" +msgstr "Clientes OAuth" + +#: ../../include/features.php:241 +msgid "Manage authenticatication tokens for mobile and remote apps." +msgstr "Administrar tokens de autenticación para aplicaciones móviles y remotas." + +#: ../../include/features.php:249 +msgid "Access Tokens" +msgstr "Tokens de acceso" + +#: ../../include/features.php:250 +msgid "Create access tokens so that non-members can access private content." +msgstr "Crear tokens de acceso para que los no miembros puedan acceder a contenido privado." + +#: ../../include/features.php:261 +msgid "Post Composition Features" +msgstr "Opciones para la redacción de entradas" + +#: ../../include/features.php:265 +msgid "Large Photos" +msgstr "Fotos de gran tamaño" + +#: ../../include/features.php:266 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" + +#: ../../include/features.php:275 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" + +#: ../../include/features.php:283 +msgid "Even More Encryption" +msgstr "Más cifrado todavía" + +#: ../../include/features.php:284 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." + +#: ../../include/features.php:292 +msgid "Enable Voting Tools" +msgstr "Permitir entradas con votación" + +#: ../../include/features.php:293 +msgid "Provide a class of post which others can vote on" +msgstr "Proveer una clase de publicación en la que otros puedan votar" + +#: ../../include/features.php:301 +msgid "Disable Comments" +msgstr "Deshabilitar comentarios" + +#: ../../include/features.php:302 +msgid "Provide the option to disable comments for a post" +msgstr "Proporcionar la opción de desactivar los comentarios para una entrada" + +#: ../../include/features.php:310 +msgid "Delayed Posting" +msgstr "Publicación aplazada" + +#: ../../include/features.php:311 +msgid "Allow posts to be published at a later date" +msgstr "Permitir mensajes que se publicarán en una fecha posterior" + +#: ../../include/features.php:319 +msgid "Content Expiration" +msgstr "Caducidad del contenido" + +#: ../../include/features.php:320 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" + +#: ../../include/features.php:328 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Prevenir entradas o comentarios duplicados" + +#: ../../include/features.php:329 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." + +#: ../../include/features.php:340 +msgid "Network and Stream Filtering" +msgstr "Filtrado del contenido" + +#: ../../include/features.php:344 +msgid "Search by Date" +msgstr "Buscar por fecha" + +#: ../../include/features.php:345 +msgid "Ability to select posts by date ranges" +msgstr "Capacidad de seleccionar entradas por rango de fechas" + +#: ../../include/features.php:355 +msgid "Save search terms for re-use" +msgstr "Guardar términos de búsqueda para su reutilización" + +#: ../../include/features.php:363 +msgid "Network Personal Tab" +msgstr "Actividad personal" + +#: ../../include/features.php:364 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." + +#: ../../include/features.php:372 +msgid "Network New Tab" +msgstr "Contenido nuevo" + +#: ../../include/features.php:373 +msgid "Enable tab to display all new Network activity" +msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" + +#: ../../include/features.php:381 +msgid "Affinity Tool" +msgstr "Herramienta de afinidad" + +#: ../../include/features.php:382 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrar el contenido según la profundidad de las relaciones" + +#: ../../include/features.php:391 +msgid "Show friend and connection suggestions" +msgstr "Mostrar sugerencias de amigos y conexiones" + +#: ../../include/features.php:399 +msgid "Connection Filtering" +msgstr "Filtrado de conexiones" + +#: ../../include/features.php:400 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" + +#: ../../include/features.php:412 +msgid "Post/Comment Tools" +msgstr "Gestión de entradas y comentarios" + +#: ../../include/features.php:416 +msgid "Community Tagging" +msgstr "Etiquetas de la comunidad" + +#: ../../include/features.php:417 +msgid "Ability to tag existing posts" +msgstr "Capacidad de etiquetar entradas existentes" + +#: ../../include/features.php:425 +msgid "Post Categories" +msgstr "Temas de las entradas" + +#: ../../include/features.php:426 +msgid "Add categories to your posts" +msgstr "Añadir temas a sus publicaciones" + +#: ../../include/features.php:434 +msgid "Emoji Reactions" +msgstr "Emoticonos \"emoji\"" + +#: ../../include/features.php:435 +msgid "Add emoji reaction ability to posts" +msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" + +#: ../../include/features.php:444 +msgid "Ability to file posts under folders" +msgstr "Capacidad de archivar entradas en carpetas" + +#: ../../include/features.php:452 +msgid "Dislike Posts" +msgstr "Desagrado de publicaciones" + +#: ../../include/features.php:453 +msgid "Ability to dislike posts/comments" +msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" + +#: ../../include/features.php:461 +msgid "Star Posts" +msgstr "Entradas destacadas" + +#: ../../include/features.php:462 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" + +#: ../../include/features.php:470 +msgid "Tag Cloud" +msgstr "Nube de etiquetas" + +#: ../../include/features.php:471 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Proveer nube de etiquetas personal en su página de canal" + +#: ../../include/taxonomy.php:384 ../../include/taxonomy.php:405 msgid "Tags" msgstr "Etiquetas" -#: ../../include/taxonomy.php:483 +#: ../../include/taxonomy.php:487 msgid "Keywords" msgstr "Palabras clave" -#: ../../include/taxonomy.php:504 +#: ../../include/taxonomy.php:508 msgid "have" msgstr "tener" -#: ../../include/taxonomy.php:504 +#: ../../include/taxonomy.php:508 msgid "has" msgstr "tiene" -#: ../../include/taxonomy.php:505 +#: ../../include/taxonomy.php:509 msgid "want" msgstr "quiero" -#: ../../include/taxonomy.php:505 +#: ../../include/taxonomy.php:509 msgid "wants" msgstr "quiere" -#: ../../include/taxonomy.php:506 +#: ../../include/taxonomy.php:510 msgid "likes" msgstr "gusta de" -#: ../../include/taxonomy.php:507 +#: ../../include/taxonomy.php:511 msgid "dislikes" msgstr "no gusta de" @@ -13439,256 +13767,200 @@ msgstr "Por favor introduzca la información requerida." msgid "Failed to store account information." msgstr "La información de la cuenta no se ha podido guardar." -#: ../../include/account.php:291 +#: ../../include/account.php:313 #, php-format msgid "Registration confirmation for %s" msgstr "Confirmación de registro para %s" -#: ../../include/account.php:360 +#: ../../include/account.php:382 #, php-format msgid "Registration request at %s" msgstr "Solicitud de registro en %s" -#: ../../include/account.php:382 +#: ../../include/account.php:404 msgid "your registration password" msgstr "su contraseña de registro" -#: ../../include/account.php:388 ../../include/account.php:450 +#: ../../include/account.php:410 ../../include/account.php:472 #, php-format msgid "Registration details for %s" msgstr "Detalles del registro de %s" -#: ../../include/account.php:461 +#: ../../include/account.php:483 msgid "Account approved." msgstr "Cuenta aprobada." -#: ../../include/account.php:501 +#: ../../include/account.php:523 #, php-format msgid "Registration revoked for %s" msgstr "Registro revocado para %s" -#: ../../include/account.php:780 ../../include/account.php:782 +#: ../../include/account.php:802 ../../include/account.php:804 msgid "Click here to upgrade." msgstr "Pulse aquí para actualizar" -#: ../../include/account.php:788 +#: ../../include/account.php:810 msgid "This action exceeds the limits set by your subscription plan." msgstr "Esta acción supera los límites establecidos por su plan de suscripción " -#: ../../include/account.php:793 +#: ../../include/account.php:815 msgid "This action is not available under your subscription plan." msgstr "Esta acción no está disponible en su plan de suscripción." -#: ../../include/datetime.php:150 +#: ../../include/datetime.php:134 msgid "Birthday" msgstr "Cumpleaños" -#: ../../include/datetime.php:152 +#: ../../include/datetime.php:134 msgid "Age: " msgstr "Edad:" -#: ../../include/datetime.php:154 +#: ../../include/datetime.php:134 msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-DD o MM-DD" -#: ../../include/datetime.php:298 +#: ../../include/datetime.php:238 msgid "less than a second ago" msgstr "hace un instante" -#: ../../include/datetime.php:316 +#: ../../include/datetime.php:256 #, php-format msgctxt "e.g. 22 hours ago, 1 minute ago" msgid "%1$d %2$s ago" msgstr "hace %1$d %2$s" -#: ../../include/datetime.php:327 +#: ../../include/datetime.php:267 msgctxt "relative_date" msgid "year" msgid_plural "years" msgstr[0] "año" msgstr[1] "años" -#: ../../include/datetime.php:330 +#: ../../include/datetime.php:270 msgctxt "relative_date" msgid "month" msgid_plural "months" msgstr[0] "mes" msgstr[1] "meses" -#: ../../include/datetime.php:333 +#: ../../include/datetime.php:273 msgctxt "relative_date" msgid "week" msgid_plural "weeks" msgstr[0] "semana" msgstr[1] "semanas" -#: ../../include/datetime.php:336 +#: ../../include/datetime.php:276 msgctxt "relative_date" msgid "day" msgid_plural "days" msgstr[0] "día" msgstr[1] "días" -#: ../../include/datetime.php:339 +#: ../../include/datetime.php:279 msgctxt "relative_date" msgid "hour" msgid_plural "hours" msgstr[0] "hora" msgstr[1] "horas" -#: ../../include/datetime.php:342 +#: ../../include/datetime.php:282 msgctxt "relative_date" msgid "minute" msgid_plural "minutes" msgstr[0] "minuto" msgstr[1] "minutos" -#: ../../include/datetime.php:345 +#: ../../include/datetime.php:285 msgctxt "relative_date" msgid "second" msgid_plural "seconds" msgstr[0] "segundo" msgstr[1] "segundos" -#: ../../include/datetime.php:579 +#: ../../include/datetime.php:514 #, php-format msgid "%1$s's birthday" msgstr "Cumpleaños de %1$s" -#: ../../include/datetime.php:580 +#: ../../include/datetime.php:515 #, php-format msgid "Happy Birthday %1$s" msgstr "Feliz cumpleaños %1$s" -#: ../../include/nav.php:98 +#: ../../include/nav.php:96 msgid "Remote authentication" msgstr "Acceder desde su servidor" -#: ../../include/nav.php:98 +#: ../../include/nav.php:96 msgid "Click to authenticate to your home hub" msgstr "Pulsar para identificarse en su servidor de inicio" -#: ../../include/nav.php:105 -msgid "Network Activity" -msgstr "Actividad de la red" - -#: ../../include/nav.php:107 -msgid "Mark all activity notifications seen" -msgstr "Marcar como vistas todas las notificaciones de actividad" - -#: ../../include/nav.php:109 -msgid "Channel home" -msgstr "Mi canal" - -#: ../../include/nav.php:110 -msgid "View your channel home" -msgstr "Ver su página principal del canal" - -#: ../../include/nav.php:111 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas las notificaciones del canal como leídas" - -#: ../../include/nav.php:116 -msgid "Registrations" -msgstr "Registros" - -#: ../../include/nav.php:119 -msgid "Notifications" -msgstr "Notificaciones" - -#: ../../include/nav.php:120 -msgid "View all notifications" -msgstr "Ver todas las notificaciones" - -#: ../../include/nav.php:121 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones del sistema como leídas" - -#: ../../include/nav.php:123 -msgid "Private mail" -msgstr "Correo privado" - -#: ../../include/nav.php:124 -msgid "View your private messages" -msgstr "Ver sus mensajes privados" - -#: ../../include/nav.php:125 -msgid "Mark all private messages seen" -msgstr "Marcar todos los mensajes privados como leídos" - -#: ../../include/nav.php:131 -msgid "Event Calendar" -msgstr "Calendario de eventos" - -#: ../../include/nav.php:136 ../../include/nav.php:222 +#: ../../include/nav.php:102 ../../include/nav.php:190 msgid "Manage Your Channels" msgstr "Gestionar sus canales" -#: ../../include/nav.php:139 ../../include/nav.php:224 +#: ../../include/nav.php:105 ../../include/nav.php:192 msgid "Account/Channel Settings" msgstr "Ajustes de cuenta/canales" -#: ../../include/nav.php:145 ../../include/nav.php:174 +#: ../../include/nav.php:111 ../../include/nav.php:140 msgid "End this session" msgstr "Finalizar esta sesión" -#: ../../include/nav.php:148 +#: ../../include/nav.php:114 msgid "Your profile page" msgstr "Su página del perfil" -#: ../../include/nav.php:151 +#: ../../include/nav.php:117 msgid "Manage/Edit profiles" msgstr "Administrar/editar perfiles" -#: ../../include/nav.php:153 -msgid "Edit your profile" -msgstr "Editar su perfil" - -#: ../../include/nav.php:160 ../../include/nav.php:164 +#: ../../include/nav.php:126 ../../include/nav.php:130 msgid "Sign in" msgstr "Acceder" -#: ../../include/nav.php:189 +#: ../../include/nav.php:157 msgid "Take me home" msgstr "Volver a la página principal" -#: ../../include/nav.php:191 +#: ../../include/nav.php:159 msgid "Log me out of this site" msgstr "Salir de este sitio" -#: ../../include/nav.php:196 +#: ../../include/nav.php:164 msgid "Create an account" msgstr "Crear una cuenta" -#: ../../include/nav.php:208 +#: ../../include/nav.php:176 msgid "Help and documentation" msgstr "Ayuda y documentación" -#: ../../include/nav.php:211 +#: ../../include/nav.php:179 msgid "Search site @name, #tag, ?docs, content" msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" -#: ../../include/nav.php:231 +#: ../../include/nav.php:199 msgid "Site Setup and Configuration" msgstr "Ajustes y configuración del sitio" -#: ../../include/nav.php:322 +#: ../../include/nav.php:290 msgid "@name, #tag, ?doc, content" msgstr "@nombre, #etiqueta, ?ayuda, contenido" -#: ../../include/nav.php:323 +#: ../../include/nav.php:291 msgid "Please wait..." msgstr "Espere por favor…" -#: ../../include/nav.php:329 +#: ../../include/nav.php:297 msgid "Add Apps" msgstr "Añadir aplicaciones" -#: ../../include/nav.php:330 +#: ../../include/nav.php:298 msgid "Arrange Apps" msgstr "Organizar aplicaciones" -#: ../../include/nav.php:331 +#: ../../include/nav.php:299 msgid "Toggle System Apps" msgstr "Alternar aplicaciones de sistema" @@ -13719,19 +13991,23 @@ msgstr "%1$s ha publicado %2$s en %3$s" msgid "Upload New Photos" msgstr "Subir nuevas fotos" -#: ../../include/zot.php:675 +#: ../../include/zot.php:767 msgid "Invalid data packet" msgstr "Paquete de datos no válido" -#: ../../include/zot.php:702 +#: ../../include/zot.php:794 msgid "Unable to verify channel signature" msgstr "No ha sido posible de verificar la firma del canal" -#: ../../include/zot.php:2409 +#: ../../include/zot.php:2529 #, php-format msgid "Unable to verify site signature for %s" msgstr "No ha sido posible de verificar la firma del sitio para %s" +#: ../../include/zot.php:4180 +msgid "invalid target signature" +msgstr "La firma recibida no es válida" + #: ../../include/group.php:22 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -13775,7 +14051,7 @@ msgstr "Desconectado/a." msgid "Email validation is incomplete. Please check your email." msgstr "La validación del correo electrónico está incompleta. Por favor, compruebe su correo electrónico." -#: ../../include/auth.php:278 +#: ../../include/auth.php:279 msgid "Failed authentication" msgstr "Autenticación fallida." diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index b3714d087..a28b0e3e9 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -71,9 +71,8 @@ App::$strings["2. Enter my \$Projectname network address into the site searchbar App::$strings["or visit"] = "o visitar"; App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; App::$strings["Submit"] = "Enviar"; -App::$strings["Cards"] = "Fichas"; -App::$strings["Add Article"] = "Añadir un artículo"; App::$strings["Articles"] = "Artículos"; +App::$strings["Add Article"] = "Añadir un artículo"; App::$strings["Item not found"] = "Elemento no encontrado"; App::$strings["Layout Name"] = "Nombre de la plantilla"; App::$strings["Layout Description (Optional)"] = "Descripción de la plantilla (opcional)"; @@ -151,7 +150,8 @@ App::$strings["You may also export your posts and conversations for a particular App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2\$s"; App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2\$s"; App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; -App::$strings["Welcome to hubzilla!"] = "¡Bienvenido o bienvenida a Hubzilla!"; +App::$strings["Welcome to Hubzilla!"] = "¡Bienvenido a Hubzilla!"; +App::$strings["You have got no unseen posts..."] = "No tiene ningún mensaje sin leer..."; App::$strings["Public access denied."] = "Acceso público denegado."; App::$strings["Search"] = "Buscar"; App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; @@ -282,6 +282,7 @@ App::$strings["Read more about roles"] = "Leer más sobre los roles"; App::$strings["Create Channel"] = "Crear un canal"; App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; +App::$strings["Validate"] = "Validar"; App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña."; App::$strings["Remove This Channel"] = "Eliminar este canal"; App::$strings["WARNING: "] = "ATENCIÓN:"; @@ -412,10 +413,10 @@ App::$strings["Executing %s failed. Check system logs."] = "La ejecución de %s App::$strings["Update %s was successfully applied."] = "La actualización de %s se ha realizado exitosamente."; App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito."; App::$strings["Update function %s could not be found."] = "No se encuentra la función de actualización de %s."; -App::$strings["No failed updates."] = "No ha fallado ninguna actualización."; App::$strings["Failed Updates"] = "Han fallado las actualizaciones"; App::$strings["Mark success (if update was manually applied)"] = "Marcar como exitosa (si la actualización se ha hecho manualmente)"; App::$strings["Attempt to execute this update step automatically"] = "Intentar ejecutar este paso de actualización automáticamente"; +App::$strings["No failed updates."] = "No ha fallado ninguna actualización."; App::$strings["Item not found."] = "Elemento no encontrado."; App::$strings["Plugin %s disabled."] = "Extensión %s desactivada."; App::$strings["Plugin %s enabled."] = "Extensión %s activada."; @@ -542,6 +543,7 @@ App::$strings["Used to provide a member experience matched to technical comfort App::$strings["Lock the technical skill level setting"] = "Bloquear el ajuste del nivel de habilidad técnica"; App::$strings["Members can set their own technical comfort level by default"] = "Los miembros pueden configurar su nivel de comodidad técnica por defecto"; App::$strings["Banner/Logo"] = "Banner/Logo"; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Se permite HTML/CSS/JS sin filtrar"; App::$strings["Administrator Information"] = "Información del Administrador"; App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode"; App::$strings["Site Information"] = "Información sobre el sitio"; @@ -558,6 +560,8 @@ App::$strings["Maximum size in bytes of uploaded images. Default is 0, which mea App::$strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; App::$strings["Invitation only"] = "Solo con una invitación"; App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"."; +App::$strings["Minimum age"] = "Edad mínima"; +App::$strings["Minimum age (in years) for who may register on this site."] = "Edad mínima (en años) para poder registrarse en este sitio."; App::$strings["Which best describes the types of account offered by this hub?"] = "¿Cómo describiría el tipo de servicio ofrecido por este servidor?"; App::$strings["Register text"] = "Texto del registro"; App::$strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro."; @@ -575,6 +579,10 @@ App::$strings["Force publish"] = "Forzar la publicación"; App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio."; App::$strings["Import Public Streams"] = "Importar contenido público"; App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas."; +App::$strings["Site only Public Streams"] = "Solo contenido público en este sitio"; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Permitir el acceso al contenido público originado sólo desde este sitio si los \"streams\" públicos Importados están deshabilitados."; +App::$strings["Allow anybody on the internet to access the Public streams"] = "Permitir que cualquiera en Internet pueda acceder a los \"streams\" públicos"; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Desactivar para requerir autenticación antes de la visualización. Advertencia: este contenido no está moderado."; App::$strings["Login on Homepage"] = "Iniciar sesión en la página personal"; App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido."; App::$strings["Enable context help"] = "Habilitar la ayuda contextual"; @@ -604,6 +612,12 @@ App::$strings["Maximum Load Average"] = "Carga media máxima"; App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50."; App::$strings["Expiration period in days for imported (grid/network) content"] = "Caducidad del contenido importado de otros sitios (en días)"; App::$strings["0 for no expiration of imported content"] = "0 para que no caduque el contenido importado"; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Servidores públicos: Página web de acogida (marketing) opcional para nuevos registros"; +App::$strings["Create this page first. Default is %s/register"] = "Crear esta página primero. Por defecto es %s/register"; +App::$strings["Page to display after creating a new channel"] = "Página a mostrar después de la creación de un nuevo canal"; +App::$strings["Recommend: profiles, go, or settings"] = "Recomendar: perfiles, ir, o ajustes"; +App::$strings["Optional: site location"] = "Opcional: ubicación del sitio"; +App::$strings["Region or country"] = "Región o país"; App::$strings["New Profile Field"] = "Nuevo campo en el perfil"; App::$strings["Field nickname"] = "Alias del campo"; App::$strings["System name of field"] = "Nombre del campo en el sistema"; @@ -790,16 +804,18 @@ App::$strings["Enter New Password"] = "Escribir una nueva contraseña"; App::$strings["Confirm New Password"] = "Confirmar la nueva contraseña"; App::$strings["Leave password fields blank unless changing"] = "Dejar en blanco la contraseña a menos que desee cambiarla."; App::$strings["Your technical skill level"] = "Su nivel de habilidad técnica"; -App::$strings["Used to provide a member experience matched to your comfort level"] = "Se utiliza para proporcionar la experiencia de los miembros adaptada a su nivel de comodidad"; +App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Utilizado para proporcionar un nivel de experiencia como miembro y características adicionales consistentes con su nivel de comodidad"; App::$strings["Remove Account"] = "Eliminar cuenta"; App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; App::$strings["Affinity Slider settings updated."] = "Se han actualizado los ajustes del controlador de afinidad."; App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos"; App::$strings["Default maximum affinity level"] = "Nivel máximo de afinidad por defecto"; +App::$strings["0-99 default 99"] = "0-99 por defecto 99"; App::$strings["Default minimum affinity level"] = "Nivel mínimo de afinidad por defecto"; +App::$strings["0-99 - default 0"] = "0-99 - por defecto 0"; App::$strings["Affinity Slider Settings"] = "Ajustes del controlador de afinidad"; -App::$strings["Feature/Addon Settings"] = "Ajustes de los complementos"; -App::$strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles"; +App::$strings["Addon Settings"] = "Ajustes de los complementos"; +App::$strings["Please save/submit changes to any panel before opening another."] = "Guarde o envíe los cambios a cualquier panel antes de abrir otro."; App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; App::$strings["Display Settings"] = "Ajustes de visualización"; App::$strings["Theme Settings"] = "Ajustes del tema"; @@ -807,7 +823,6 @@ App::$strings["Custom Theme Settings"] = "Ajustes personalizados del tema"; App::$strings["Content Settings"] = "Ajustes del contenido"; App::$strings["Display Theme:"] = "Tema gráfico del perfil:"; App::$strings["Select scheme"] = "Elegir un esquema"; -App::$strings["Mobile Theme:"] = "Tema para el móvil:"; App::$strings["Preload images before rendering the page"] = "Carga previa de las imágenes antes de generar la página"; App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre."; App::$strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles"; @@ -1082,10 +1097,10 @@ App::$strings["Photo not available."] = "Foto no disponible."; App::$strings["Upload File:"] = "Subir fichero:"; App::$strings["Select a profile:"] = "Seleccionar un perfil:"; App::$strings["Use Photo for Profile"] = "Usar la fotografía para el perfil"; -App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; +App::$strings["Change Profile Photo"] = "Cambiar la foto del perfil"; App::$strings["Use"] = "Usar"; -App::$strings["skip this step"] = "Omitir este paso"; -App::$strings["select a photo from your photo albums"] = "Seleccione una foto de sus álbumes de fotos"; +App::$strings["Use a photo from your albums"] = "Usar una foto de sus álbumes"; +App::$strings["Select existing photo"] = "Seleccionar una foto existente"; App::$strings["Crop Image"] = "Recortar imagen"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima."; App::$strings["Done Editing"] = "Edición completada"; @@ -1164,6 +1179,7 @@ App::$strings["Connection: %s"] = "Conexión: %s"; App::$strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; App::$strings["Connection requests will be approved without your interaction"] = "Las solicitudes de conexión serán aprobadas sin su intervención"; App::$strings["Permission role"] = "Rol de acceso"; +App::$strings["Loading"] = "Cargando"; App::$strings["Add permission role"] = "Añadir un rol de acceso"; App::$strings["This connection's primary address is"] = "La dirección primaria de esta conexión es"; App::$strings["Available locations:"] = "Ubicaciones disponibles:"; @@ -1227,7 +1243,13 @@ App::$strings["Help"] = "Ayuda"; App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; App::$strings["Layout Description"] = "Descripción de la plantilla"; App::$strings["Download PDL file"] = "Descargar el fichero PDL"; +App::$strings["Please refresh page"] = "Por favor, recargue la página"; App::$strings["Unknown error"] = "Error desconocido"; +App::$strings["Token verification failed."] = "Ha fallado el token de verificación."; +App::$strings["Email Verification Required"] = "Verificación obligatoria del correo electrónico"; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Se ha enviado un token de verificación a su dirección de correo electrónico [%s]. Ingrese ese símbolo aquí para completar el paso de verificación de cuenta. Por favor, espere unos minutos para el envío, y revise su carpeta de spam si no ve el mensaje."; +App::$strings["Resend Email"] = "Reenvío de correo electrónico"; +App::$strings["Validation token"] = "Token de validación"; App::$strings["Post not found."] = "Mensaje no encontrado."; App::$strings["post"] = "la entrada"; App::$strings["comment"] = "el comentario"; @@ -1319,6 +1341,21 @@ App::$strings["My other channels"] = "Mis otros canales"; App::$strings["Communications"] = "Comunicaciones"; App::$strings["Profile Image"] = "Imagen del perfil"; App::$strings["Edit Profiles"] = "Editar perfiles"; +App::$strings["This page is available only to site members"] = "Esta página está disponible sólo para los miembros del sitio"; +App::$strings["Welcome"] = "Bienvenido/a"; +App::$strings["What would you like to do?"] = "¿Qué le gustaría hacer?"; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Por favor añada esta página a sus marcadores si desea volver a ella en el futuro."; +App::$strings["Upload a profile photo"] = "Subir una foto de perfil"; +App::$strings["Upload a cover photo"] = "Subir una foto de portada del perfil"; +App::$strings["Edit your default profile"] = "Editar su perfil por defecto"; +App::$strings["View friend suggestions"] = "Ver sugerencias de amistad"; +App::$strings["View the channel directory"] = "Ver el directorio de canales"; +App::$strings["View/edit your channel settings"] = "Ver o modificar los ajustes de su canal"; +App::$strings["View the site or project documentation"] = "Ver el sitio o la documentación del proyecto"; +App::$strings["Visit your channel homepage"] = "Visitar la página principal de su canal"; +App::$strings["View your connections and/or add somebody whose address you already know"] = "Vea sus conexiones y/o agregue a alguien cuya dirección ya conozca"; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Ver su \"stream\" personal (puede que esté vacío hasta que agregue algunas conexiones)"; +App::$strings["View the public stream. Warning: this content is not moderated"] = "Ver el \"stream\" público. Advertencia: este contenido no está moderado"; App::$strings["Page link"] = "Enlace de la página"; App::$strings["Edit Webpage"] = "Editar la página web"; App::$strings["Create a new channel"] = "Crear un nuevo canal"; @@ -1330,6 +1367,7 @@ App::$strings["Make Default"] = "Convertir en predeterminado"; App::$strings["%d new messages"] = "%d mensajes nuevos"; App::$strings["%d new introductions"] = "%d nuevas solicitudes de conexión"; App::$strings["Delegated Channel"] = "Canal delegado"; +App::$strings["Cards"] = "Fichas"; App::$strings["Add Card"] = "Añadir una ficha"; App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; App::$strings["About this site"] = "Acerca de este sitio"; @@ -1504,8 +1542,8 @@ App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dir App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana."; App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado."; App::$strings["Passwords do not match."] = "Las contraseñas no coinciden."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo."; App::$strings["Registration successful. Continue to create your first channel..."] = "Registro exitoso. Continúe creando tu primer canal..."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo."; App::$strings["Your registration is pending approval by the site owner."] = "Su registro está pendiente de aprobación por el propietario del sitio."; App::$strings["Your registration can not be processed."] = "Su registro no puede ser procesado."; App::$strings["Registration on this hub is disabled."] = "El registro está deshabilitado en este sitio."; @@ -1522,7 +1560,7 @@ App::$strings["no"] = "no"; App::$strings["yes"] = "sí"; App::$strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; App::$strings["Register"] = "Registrarse"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Este sitio puede requerir una verificación de correo electrónico después de enviar este formulario. Si es devuelto a una página de inicio de sesión, compruebe su email para recibir y leer las instrucciones."; +App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones."; App::$strings["Cover Photos"] = "Imágenes de portada del perfil"; App::$strings["female"] = "mujer"; App::$strings["%1\$s updated her %2\$s"] = "%1\$s ha actualizado su %2\$s"; @@ -1530,7 +1568,7 @@ App::$strings["male"] = "hombre"; App::$strings["%1\$s updated his %2\$s"] = "%1\$s ha actualizado su %2\$s"; App::$strings["%1\$s updated their %2\$s"] = "%1\$s ha actualizado su %2\$s"; App::$strings["cover photo"] = "Imagen de portada del perfil"; -App::$strings["Upload Cover Photo"] = "Subir imagen de portada del perfil"; +App::$strings["Change Cover Photo"] = "Cambiar la foto de portada del perfil"; App::$strings["Documentation Search"] = "Búsqueda de Documentación"; App::$strings["About"] = "Mi perfil"; App::$strings["Administrators"] = "Administradores"; @@ -1568,6 +1606,8 @@ App::$strings["Show in your contacts shared folder"] = "Mostrar en la carpeta co App::$strings["No channel."] = "Ningún canal."; App::$strings["No connections in common."] = "Ninguna conexión en común."; App::$strings["View Common Connections"] = "Ver las conexiones comunes"; +App::$strings["Email verification resent"] = "Reenvío del email de verificación"; +App::$strings["Unable to resend email verification message."] = "No se puede reenviar el mensaje de verificación por correo electrónico."; App::$strings["No connections."] = "Sin conexiones."; App::$strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; App::$strings["View Connections"] = "Ver conexiones"; @@ -1684,15 +1724,21 @@ App::$strings["\$Projectname Notification"] = "Notificación de \$Projectname"; App::$strings["\$projectname"] = "\$projectname"; App::$strings["Thank You,"] = "Gracias,"; App::$strings["%s Administrator"] = "%s Administrador"; +App::$strings["This email was sent by %1\$s at %2\$s."] = "Este email ha sido enviado por %1\$s a %2\$s."; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Para dejar de recibir estos mensajes, por favor ajuste la configuración de notificación en %s"; +App::$strings["To stop receiving these messages, please adjust your %s."] = "Para dejar de recibir estos mensajes, por favor, ajuste su %s"; App::$strings["%s "] = "%s "; App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Aviso] Nuevo correo recibido en %s"; App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s."; App::$strings["%1\$s sent you %2\$s."] = "%1\$s le ha enviado %2\$s."; App::$strings["a private message"] = "un mensaje privado"; App::$strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%5\$s de %4\$s[/zrl] "; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s creado por usted[/zrl]"; +App::$strings["commented on"] = "ha comentado sobre"; +App::$strings["liked"] = "ha gustado de "; +App::$strings["disliked"] = "no ha gustado de "; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]a %5\$s[/zrl]"] = "%1\$s, %2\$s %3\$s[zrl=%4\$s]un %5\$s[/zrl]"; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]%5\$s's %6\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s] %6\$sde %5\$s[/zrl]"; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]your %5\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s] ]su %5\$s [/zrl]"; App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Aviso] Comentario moderado en la conversación #%1\$d por %2\$s"; App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Aviso] Nuevo comentario de %2\$s en la conversación #%1\$d"; App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha comentado un elemento/conversación que ha estado siguiendo."; @@ -1727,6 +1773,8 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Por fav App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Aviso]"; App::$strings["created a new post"] = "ha creado una nueva entrada"; App::$strings["commented on %s's post"] = "ha comentado la entrada de %s"; +App::$strings["edited a post dated %s"] = "ha editado una entrada fechada el%s"; +App::$strings["edited a comment dated %s"] = "ha editado un comentario fechado el %s"; App::$strings["Wiki updated successfully"] = "El wiki se ha actualizado con éxito"; App::$strings["Wiki files deleted successfully"] = "Se han borrado con éxito los ficheros del wiki"; App::$strings["Update Error at %s"] = "Error de actualización en %s"; @@ -1865,6 +1913,18 @@ App::$strings["Suggestions"] = "Sugerencias"; App::$strings["See more..."] = "Ver más..."; App::$strings["Saved Folders"] = "Carpetas guardadas"; App::$strings["Click to show more"] = "Hacer clic para ver más"; +App::$strings["Profile Creation"] = "Creación de perfiles"; +App::$strings["Upload profile photo"] = "Cargar la foto del perfil"; +App::$strings["Upload cover photo"] = "Cargar la foto de portada del perfil"; +App::$strings["Edit your profile"] = "Editar su perfil"; +App::$strings["Find and Connect with others"] = "Encontrar y conectarse con otros"; +App::$strings["Manage your connections"] = "Gestionar sus conexiones"; +App::$strings["Communicate"] = "Comunicarse"; +App::$strings["View your channel homepage"] = "Ver la página principal de su canal"; +App::$strings["View your network stream"] = "Ver el \"stream\" de su red"; +App::$strings["Documentation"] = "Documentación"; +App::$strings["View public stream. Warning: not moderated"] = "Ver el \"stream\" público. Advertencia: no está moderado"; +App::$strings["New Member Links"] = "Enlaces para nuevos miembros"; App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; App::$strings["Inspect queue"] = "Examinar la cola"; App::$strings["DB updates"] = "Actualizaciones de la base de datos"; @@ -1873,7 +1933,7 @@ App::$strings["Plugin Features"] = "Extensiones"; App::$strings["Account settings"] = "Configuración de la cuenta"; App::$strings["Channel settings"] = "Configuración del canal"; App::$strings["Additional features"] = "Funcionalidades"; -App::$strings["Feature/Addon settings"] = "Complementos"; +App::$strings["Addon settings"] = "Ajustes de los complementos"; App::$strings["Display settings"] = "Ajustes de visualización"; App::$strings["Manage locations"] = "Gestión de ubicaciones (clones) del canal"; App::$strings["Export channel"] = "Exportar canal"; @@ -1886,6 +1946,7 @@ App::$strings["New Network Activity Notifications"] = "Avisos de nueva actividad App::$strings["View your network activity"] = "Ver su actividad en la red"; App::$strings["Mark all notifications read"] = "Marcar todas las notificaciones como leídas"; App::$strings["Show new posts only"] = "Mostrar solo las entradas nuevas"; +App::$strings["Filter by name"] = "Filtrar por nombre"; App::$strings["New Home Activity"] = "Nueva actividad en su página principal"; App::$strings["New Home Activity Notifications"] = "Avisos de nueva actividad en su página principal"; App::$strings["View your home activity"] = "Ver su actividad en su página principal"; @@ -1909,7 +1970,7 @@ App::$strings["New Registrations"] = "Registros nuevos"; App::$strings["New Registrations Notifications"] = "Notificaciones de nuevos registros"; App::$strings["Public Stream Notifications"] = "Avisos del \"stream\" público"; App::$strings["View the public stream"] = "Ver el \"stream\" público"; -App::$strings["Loading"] = "Cargando"; +App::$strings["Sorry, you have got no notifications at the moment"] = "Lo sentimos, por el momento no ha recibido ninguna notificación"; App::$strings["Source channel not found."] = "No se ha encontrado el canal de origen."; App::$strings["Create an account to access services and applications"] = "Crear una cuenta para acceder a los servicios y aplicaciones"; App::$strings["Logout"] = "Finalizar sesión"; @@ -1917,7 +1978,6 @@ App::$strings["Login/Email"] = "Inicio de sesión / Correo electrónico"; App::$strings["Password"] = "Contraseña"; App::$strings["Remember me"] = "Recordarme"; App::$strings["Forgot your password?"] = "¿Olvidó su contraseña?"; -App::$strings["toggle mobile"] = "cambiar a modo móvil"; App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Error SSL del sitio web en %s"; App::$strings["Website SSL certificate is not valid. Please correct."] = "El certificado SSL del sitio web no es válido. Por favor, solucione el problema."; App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Las tareas de Cron no están funcionando en %s"; @@ -2005,11 +2065,11 @@ App::$strings["Preferred IDs Message"] = "Mensaje de IDs preferido"; App::$strings["Message to display above preferred results."] = "Mensaje para mostrar sobre los resultados preferidos."; App::$strings["Uploaded by: "] = "Subida por: "; App::$strings["Drawn by: "] = "Creada por: "; +App::$strings["Use this image"] = "Usar esta imagen"; App::$strings["Or select from a free OpenClipart.org image:"] = "O seleccionar una imagen gratuita de OpenClipart.org: "; App::$strings["Search Term"] = "Término de búsqueda"; App::$strings["Unknown error. Please try again later."] = "Error desconocido. Por favor, inténtelo otra vez."; App::$strings["Profile photo updated successfully."] = "Se ha actualizado con éxito la foto de perfil."; -App::$strings["invalid target signature"] = "La firma recibida no es válida"; App::$strings["Flag Adult Photos"] = "Indicador (\"flag\") de fotos de adultos"; App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Proporcionar una opción de edición de fotos para ocultar las fotos inapropiadas de la vista de álbum predeterminada"; App::$strings["Post to WordPress"] = "Publicar en WordPress"; @@ -2046,6 +2106,8 @@ App::$strings["Dreamwidth username"] = "Nombre de usuario en Dreamwidth"; App::$strings["Dreamwidth password"] = "Contraseña en Dreamwidth"; App::$strings["Post to Dreamwidth by default"] = "Publicar en Dreamwidth de forma predeterminada"; App::$strings["Dreamwidth Post Settings"] = "Ajustes de publicación en Dreamwidth"; +App::$strings["New registration"] = "Nuevo registro"; +App::$strings["Message sent to %s. New account registration: %s"] = "Mensaje enviado a %s. Registro de una nueva cuenta: %s"; App::$strings["Hubzilla Directory Stats"] = "Estadísticas de directorio de Hubzilla"; App::$strings["Total Hubs"] = "Número total de servidores"; App::$strings["Hubzilla Hubs"] = "Servidores (hubs) de Hubzilla"; @@ -2208,6 +2270,7 @@ App::$strings["Mail sent."] = "El correo electrónico ha sido enviado."; App::$strings["Sending of mail failed."] = "No se pudo enviar el correo."; App::$strings["Mail Test"] = "Prueba de correo"; App::$strings["Message subject"] = "Asunto del mensaje"; +App::$strings["Use markdown for editing posts"] = "Usar markdown para editar las entradas"; App::$strings["View Larger"] = "Ver más grande"; App::$strings["Tile Server URL"] = "URL del servidor de mosaicos de imágenes "; App::$strings["A list of public tile servers"] = "Una lista de servidores públicos de mosaicos de imágenes"; @@ -2357,7 +2420,7 @@ App::$strings["Invalid game."] = "Juego no válido."; App::$strings["You are not a player in this game."] = "Usted no participa en este juego."; App::$strings["You must be a local channel to create a game."] = "Debe ser un canal local para crear un juego"; App::$strings["You must select one opponent that is not yourself."] = "Debe seleccionar un oponente que no sea usted mismo."; -App::$strings["You must select white or black."] = "Debe elegir blancas o negras."; +App::$strings["Random color chosen."] = "Elegido un color aleatorio."; App::$strings["Error creating new game."] = "Error al crear un nuevo juego."; App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; App::$strings["You must select a local channel /chess/channelname"] = "Debe seleccionar un canal local /chess/nombredelcanal"; @@ -2371,6 +2434,8 @@ App::$strings["Copy the PIN from Twitter here"] = "Copiar aquí el PIN de Twitte App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Aviso: Debido a su configuración de privacidad (Ocultar los detalles de su perfil a los visitantes desconocidos?), el enlace potencialmente incluido en las entradas públicas retransmitidas a Twitter llevará al visitante a una página en blanco informándolo de que el acceso a su perfil ha sido restringido."; App::$strings["Allow posting to Twitter"] = "Permitir la publicación en Twitter"; App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Si está activado, sus entradas públicas se pueden publicar en la cuenta de Twitter asociada"; +App::$strings["Twitter post length"] = "Longitud del mensaje en Twitter"; +App::$strings["Maximum tweet length"] = "Longitud máxima del tweet"; App::$strings["Send public postings to Twitter by default"] = "Enviar mensajes públicos a Twitter de forma predeterminada"; App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Si está activado, sus entradas públicas se publicarán en la cuenta de Twitter asociada de forma predeterminada."; App::$strings["Twitter Post Settings"] = "Ajustes de publicación en Twitter"; @@ -2422,7 +2487,7 @@ App::$strings["If you see this icon you can be sure that the sender is who it sa App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "¡Peligro! ¡Parece que alguien intentó falsificar un mensaje! ¡Este mensaje no es necesariamente de quien dice que es!"; App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

    You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

    You can also advance by pressing the return key"] = "¡Bienvenido/a a Hubzilla! ¿Quiere hacer un recorrido por la interfaz de usuario?

    Puede detenerlo en cualquier momento y continuar donde lo dejó recargando la página o navegando a otra.

    También puede avanzar pulsando la tecla de retorno"; App::$strings["Extended Identity Sharing"] = "Compartir identidad extendida"; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Compartir su identidad con todos los sitios web en Internet. Cuando se inhabilita, la identidad sólo se comparte con los sitios de la matriz."; +App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Compartir su identidad con todos los sitios web en Internet. Cuando está deshabilitado, la identidad sólo se comparte con sitios de \$Projectname."; App::$strings["Three Dimensional Tic-Tac-Toe"] = "Juego en 3D Tic-Tac-Toe"; App::$strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; App::$strings["New game"] = "Nuevo juego"; @@ -2792,8 +2857,8 @@ App::$strings["Please enter a link URL"] = "Por favor, introduzca una dirección App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Cambios no guardados. ¿Está seguro de que desea abandonar la página?"; App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "antes"; -App::$strings["from now"] = "desde ahora"; +App::$strings["timeago.suffixAgo"] = "timeago.suffixAgo"; +App::$strings["timeago.suffixFromNow"] = "timeago.suffixFromNow"; App::$strings["less than a minute"] = "menos de un minuto"; App::$strings["about a minute"] = "alrededor de un minuto"; App::$strings["%d minutes"] = "%d minutos"; @@ -2886,6 +2951,7 @@ App::$strings["Visible to everybody"] = "Visible para todos"; App::$strings["Gender:"] = "Género:"; App::$strings["Homepage:"] = "Página personal:"; App::$strings["Online Now"] = "Ahora en línea"; +App::$strings["Change your profile photo"] = "Cambiar su foto del perfil"; App::$strings["Trans"] = "Trans"; App::$strings["Like this channel"] = "Me gusta este canal"; App::$strings["j F, Y"] = "j F Y"; @@ -2946,9 +3012,11 @@ App::$strings["Encrypted content"] = "Contenido cifrado"; App::$strings["Install %1\$s element %2\$s"] = "Instalar el elemento de%1\$s%2\$s"; App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; App::$strings["card"] = "ficha"; -App::$strings["article"] = "artículo"; +App::$strings["article"] = "el artículo"; App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; App::$strings["spoiler"] = "spoiler"; +App::$strings["View article"] = "Ver el artículo"; +App::$strings["View summary"] = "Ver sumario"; App::$strings["$1 wrote:"] = "$1 escribió:"; App::$strings[" by "] = "por"; App::$strings[" on "] = "en"; @@ -2956,8 +3024,6 @@ App::$strings["Embedded content"] = "Contenido incorporado"; App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s da la bienvenida a %2\$s"; App::$strings["General Features"] = "Funcionalidades básicas"; -App::$strings["Multiple Profiles"] = "Múltiples perfiles"; -App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; App::$strings["Advanced Profiles"] = "Perfiles avanzados"; App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; App::$strings["Profile Import/Export"] = "Importar/Exportar perfil"; @@ -2968,21 +3034,33 @@ App::$strings["Provide a wiki for your channel"] = "Proporcionar un wiki para su App::$strings["Private Notes"] = "Notas privadas"; App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"; App::$strings["Create personal planning cards"] = "Crear fichas de planificación personal"; +App::$strings["Create interactive articles"] = "Crear artículos interactivos"; App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales"; App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; App::$strings["Photo Location"] = "Ubicación de las fotos"; App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas"; App::$strings["Provide chatrooms and chat services with access control."] = "Proporcionar salas y servicios de chat moderados."; -App::$strings["Provide alternate connection permission roles."] = "Proporcionar roles de acceso alternativos para esta conexión."; App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes"; App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."; App::$strings["Event Timezone Selection"] = "Selección del huso horario del evento"; App::$strings["Allow event creation in timezones other than your own."] = "Permitir la creación de eventos en husos horarios distintos del suyo."; +App::$strings["Premium Channel"] = "Canal premium"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; App::$strings["Advanced Directory Search"] = "Búsqueda avanzada en el directorio"; App::$strings["Allows creation of complex directory search queries"] = "Permitir la creación de consultas complejas en las búsquedas en el directorio"; App::$strings["Advanced Theme and Layout Settings"] = "Ajustes avanzados de temas y esquemas"; App::$strings["Allows fine tuning of themes and page layouts"] = "Permitir el ajuste fino de temas y esquemas de páginas"; +App::$strings["Access Control and Permissions"] = "Control de acceso y permisos"; +App::$strings["Privacy Groups"] = "Grupos de canales"; +App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales"; +App::$strings["Multiple Profiles"] = "Múltiples perfiles"; +App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; +App::$strings["Provide alternate connection permission roles."] = "Proporcionar roles de acceso alternativos para esta conexión."; +App::$strings["OAuth Clients"] = "Clientes OAuth"; +App::$strings["Manage authenticatication tokens for mobile and remote apps."] = "Administrar tokens de autenticación para aplicaciones móviles y remotas."; +App::$strings["Access Tokens"] = "Tokens de acceso"; +App::$strings["Create access tokens so that non-members can access private content."] = "Crear tokens de acceso para que los no miembros puedan acceder a contenido privado."; App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas"; App::$strings["Large Photos"] = "Fotos de gran tamaño"; App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"; @@ -3002,8 +3080,6 @@ App::$strings["Prevent posts with identical content to be published with less th App::$strings["Network and Stream Filtering"] = "Filtrado del contenido"; App::$strings["Search by Date"] = "Buscar por fecha"; App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; -App::$strings["Privacy Groups"] = "Grupos de canales"; -App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales"; App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; App::$strings["Network Personal Tab"] = "Actividad personal"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; @@ -3015,7 +3091,6 @@ App::$strings["Show friend and connection suggestions"] = "Mostrar sugerencias d App::$strings["Connection Filtering"] = "Filtrado de conexiones"; App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; -App::$strings["Use markdown for editing posts"] = "Usar markdown para editar las entradas"; App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; App::$strings["Post Categories"] = "Temas de las entradas"; @@ -3029,8 +3104,6 @@ App::$strings["Star Posts"] = "Entradas destacadas"; App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; App::$strings["Tag Cloud"] = "Nube de etiquetas"; App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; -App::$strings["Premium Channel"] = "Canal premium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; App::$strings["Tags"] = "Etiquetas"; App::$strings["Keywords"] = "Palabras clave"; App::$strings["have"] = "tener"; @@ -3092,25 +3165,11 @@ App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; App::$strings["Remote authentication"] = "Acceder desde su servidor"; App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; -App::$strings["Network Activity"] = "Actividad de la red"; -App::$strings["Mark all activity notifications seen"] = "Marcar como vistas todas las notificaciones de actividad"; -App::$strings["Channel home"] = "Mi canal"; -App::$strings["View your channel home"] = "Ver su página principal del canal"; -App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; -App::$strings["Registrations"] = "Registros"; -App::$strings["Notifications"] = "Notificaciones"; -App::$strings["View all notifications"] = "Ver todas las notificaciones"; -App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones del sistema como leídas"; -App::$strings["Private mail"] = "Correo privado"; -App::$strings["View your private messages"] = "Ver sus mensajes privados"; -App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; -App::$strings["Event Calendar"] = "Calendario de eventos"; App::$strings["Manage Your Channels"] = "Gestionar sus canales"; App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; App::$strings["End this session"] = "Finalizar esta sesión"; App::$strings["Your profile page"] = "Su página del perfil"; App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; -App::$strings["Edit your profile"] = "Editar su perfil"; App::$strings["Sign in"] = "Acceder"; App::$strings["Take me home"] = "Volver a la página principal"; App::$strings["Log me out of this site"] = "Salir de este sitio"; @@ -3132,6 +3191,7 @@ App::$strings["Upload New Photos"] = "Subir nuevas fotos"; App::$strings["Invalid data packet"] = "Paquete de datos no válido"; App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; +App::$strings["invalid target signature"] = "La firma recibida no es válida"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; App::$strings["edit"] = "editar"; diff --git a/view/es-es/register_verify_member.tpl b/view/es-es/register_verify_member.tpl index f78a0353a..058c3a3c8 100644 --- a/view/es-es/register_verify_member.tpl +++ b/view/es-es/register_verify_member.tpl @@ -10,7 +10,7 @@ Inicie la sesión con la contraseña que eligió durante el registro. Necesitamos verificar su correo electrónico para poder darle pleno acceso. -Si registró esta cuenta, por favor, siga el enlace: +Si registró esta cuenta, por favor, siga el enlace: {{$siteurl}}/regver/allow/{{$hash}} diff --git a/view/js/acl.js b/view/js/acl.js index c8f7c7180..a5fae19bc 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -173,7 +173,7 @@ ACL.prototype.on_custom = function(event) { that.deny_cid = []; that.deny_gid = []; - datasrc2src('#acl-list-content .acl-list-item img[data-src]'); + datasrc2src('#acl-list-content .list-group-item img[data-src]'); that.update_view('custom'); that.on_submit(); @@ -399,7 +399,7 @@ ACL.prototype.get = function(start, count, search) { ACL.prototype.populate = function(data) { $(data.items).each(function(){ - html = "

    "+that.item_tpl+"
    "; + html = "
    "+that.item_tpl+"
    "; html = html.format(this.photo, this.name, this.type, this.xid, '', this.self, this.link, this.taggable); if (this.uids !== undefined) { that.group_uids[this.xid] = this.uids; diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index 01def9900..2d017db18 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -74,6 +74,10 @@ function bbco_format(item) { return ""; } +function tag_format(item) { + return ""; +} + function editor_replace(item) { if(typeof item.replace !== 'undefined') { return '$1$2' + item.replace; @@ -202,6 +206,16 @@ function string2bb(element) { }; + // Autocomplete hashtags + tags = { + match: /(^|\s)(\#)([^ \n]{2,})$/, + index: 3, + search: function(term, callback) { $.getJSON('/hashtags/' + '$f=&t=' + term).done(function(data) { callback($.map(data, function(entry) { return entry.text.indexOf(term) === 0 ? entry : null; })); }); }, + replace: function(item) { return "$1$2" + item.text + ' '; }, + template: tag_format + }; + + smilies = { match: /(^|\s)(:[a-z_:]{2,})$/, index: 2, @@ -211,7 +225,7 @@ function string2bb(element) { template: smiley_format }; this.attr('autocomplete','off'); - this.textcomplete([contacts,forums,smilies], {className:'acpopup', zIndex:1020}); + this.textcomplete([contacts,forums,smilies,tags], {className:'acpopup', zIndex:1020}); }; })( jQuery ); diff --git a/view/js/main.js b/view/js/main.js index f6fe475d8..98a756fff 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -304,6 +304,12 @@ function insertCommentURL(comment, id) { return true; } +function doFollowAuthor(url) { + $.get(url, function(data) { notificationsUpdate(); }); + return true; +} + + function viewsrc(id) { $.colorbox({href: 'viewsrc/' + id, maxWidth: '80%', maxHeight: '80%' }); } diff --git a/view/js/mod_new_channel.js b/view/js/mod_new_channel.js index 7ae59032a..e78de2596 100644 --- a/view/js/mod_new_channel.js +++ b/view/js/mod_new_channel.js @@ -11,6 +11,9 @@ $("#help_name").html(""); zFormError("#help_name",data.error); } + else { + $("#newchannel-submit-button").removeAttr('disabled'); + } $("#name-spinner").hide(); }); }); diff --git a/view/pdl/mod_admin.pdl b/view/pdl/mod_admin.pdl index deee4551b..1cf49750d 100644 --- a/view/pdl/mod_admin.pdl +++ b/view/pdl/mod_admin.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_appman.pdl b/view/pdl/mod_appman.pdl index d2b1379a5..8bd407372 100644 --- a/view/pdl/mod_appman.pdl +++ b/view/pdl/mod_appman.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_apps.pdl b/view/pdl/mod_apps.pdl index d2b1379a5..8bd407372 100644 --- a/view/pdl/mod_apps.pdl +++ b/view/pdl/mod_apps.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_articles.pdl b/view/pdl/mod_articles.pdl index c7599a008..b823787f4 100644 --- a/view/pdl/mod_articles.pdl +++ b/view/pdl/mod_articles.pdl @@ -5,4 +5,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_blocks.pdl b/view/pdl/mod_blocks.pdl index 6ef7993b5..4a90a4f36 100644 --- a/view/pdl/mod_blocks.pdl +++ b/view/pdl/mod_blocks.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_cal.pdl b/view/pdl/mod_cal.pdl index c34898dd5..7e15fc869 100644 --- a/view/pdl/mod_cal.pdl +++ b/view/pdl/mod_cal.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_cards.pdl b/view/pdl/mod_cards.pdl index f5606dcb8..f0403e380 100644 --- a/view/pdl/mod_cards.pdl +++ b/view/pdl/mod_cards.pdl @@ -5,4 +5,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_cdav.pdl b/view/pdl/mod_cdav.pdl index d31308d90..c0f9a511f 100644 --- a/view/pdl/mod_cdav.pdl +++ b/view/pdl/mod_cdav.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_channel.pdl b/view/pdl/mod_channel.pdl index f7ac0b4ef..5857fca95 100644 --- a/view/pdl/mod_channel.pdl +++ b/view/pdl/mod_channel.pdl @@ -10,4 +10,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_chanview.pdl b/view/pdl/mod_chanview.pdl index 5c8ca77d5..a5461df50 100644 --- a/view/pdl/mod_chanview.pdl +++ b/view/pdl/mod_chanview.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_chat.pdl b/view/pdl/mod_chat.pdl index 2f1f5c8d1..808ba3d5a 100644 --- a/view/pdl/mod_chat.pdl +++ b/view/pdl/mod_chat.pdl @@ -7,4 +7,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_cloud.pdl b/view/pdl/mod_cloud.pdl index 5c8ca77d5..a5461df50 100644 --- a/view/pdl/mod_cloud.pdl +++ b/view/pdl/mod_cloud.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_common.pdl b/view/pdl/mod_common.pdl index c34898dd5..7e15fc869 100644 --- a/view/pdl/mod_common.pdl +++ b/view/pdl/mod_common.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_connect.pdl b/view/pdl/mod_connect.pdl index 23b8d9f71..d7e5d29f3 100644 --- a/view/pdl/mod_connect.pdl +++ b/view/pdl/mod_connect.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_connections.pdl b/view/pdl/mod_connections.pdl index 7cead4fe8..b777cada5 100644 --- a/view/pdl/mod_connections.pdl +++ b/view/pdl/mod_connections.pdl @@ -6,4 +6,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_connedit.pdl b/view/pdl/mod_connedit.pdl index 3f57ed87b..4bdadb5e8 100644 --- a/view/pdl/mod_connedit.pdl +++ b/view/pdl/mod_connedit.pdl @@ -6,4 +6,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_defperms.pdl b/view/pdl/mod_defperms.pdl index 53a3ac9e5..37c85c765 100644 --- a/view/pdl/mod_defperms.pdl +++ b/view/pdl/mod_defperms.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_directory.pdl b/view/pdl/mod_directory.pdl index 7b430738b..2e408c29f 100644 --- a/view/pdl/mod_directory.pdl +++ b/view/pdl/mod_directory.pdl @@ -6,4 +6,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_display.pdl b/view/pdl/mod_display.pdl index e657fa88b..95f069031 100644 --- a/view/pdl/mod_display.pdl +++ b/view/pdl/mod_display.pdl @@ -1,3 +1,4 @@ [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_editblock.pdl b/view/pdl/mod_editblock.pdl index 6ef7993b5..4a90a4f36 100644 --- a/view/pdl/mod_editblock.pdl +++ b/view/pdl/mod_editblock.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_editlayout.pdl b/view/pdl/mod_editlayout.pdl index 6ef7993b5..4a90a4f36 100644 --- a/view/pdl/mod_editlayout.pdl +++ b/view/pdl/mod_editlayout.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_editwebpage.pdl b/view/pdl/mod_editwebpage.pdl index 6ef7993b5..4a90a4f36 100644 --- a/view/pdl/mod_editwebpage.pdl +++ b/view/pdl/mod_editwebpage.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_events.pdl b/view/pdl/mod_events.pdl index b26f3b0d0..e9a91e219 100644 --- a/view/pdl/mod_events.pdl +++ b/view/pdl/mod_events.pdl @@ -4,4 +4,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_go.pdl b/view/pdl/mod_go.pdl index c34898dd5..7e15fc869 100644 --- a/view/pdl/mod_go.pdl +++ b/view/pdl/mod_go.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_group.pdl b/view/pdl/mod_group.pdl index 0a31e17d9..34eb7ddd1 100644 --- a/view/pdl/mod_group.pdl +++ b/view/pdl/mod_group.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_help.pdl b/view/pdl/mod_help.pdl index 2eab7aa63..4bb380cc9 100644 --- a/view/pdl/mod_help.pdl +++ b/view/pdl/mod_help.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_hq.pdl b/view/pdl/mod_hq.pdl index 450fcb9a7..1bcdb2c65 100644 --- a/view/pdl/mod_hq.pdl +++ b/view/pdl/mod_hq.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_id.pdl b/view/pdl/mod_id.pdl index c34898dd5..7e15fc869 100644 --- a/view/pdl/mod_id.pdl +++ b/view/pdl/mod_id.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_layouts.pdl b/view/pdl/mod_layouts.pdl index 6ef7993b5..4a90a4f36 100644 --- a/view/pdl/mod_layouts.pdl +++ b/view/pdl/mod_layouts.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_locs.pdl b/view/pdl/mod_locs.pdl index 53a3ac9e5..37c85c765 100644 --- a/view/pdl/mod_locs.pdl +++ b/view/pdl/mod_locs.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_mail.pdl b/view/pdl/mod_mail.pdl index 52f908919..d572b7244 100644 --- a/view/pdl/mod_mail.pdl +++ b/view/pdl/mod_mail.pdl @@ -4,4 +4,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_menu.pdl b/view/pdl/mod_menu.pdl index 6ef7993b5..4a90a4f36 100644 --- a/view/pdl/mod_menu.pdl +++ b/view/pdl/mod_menu.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_message.pdl b/view/pdl/mod_message.pdl index f9dd8f623..3f1dd594f 100644 --- a/view/pdl/mod_message.pdl +++ b/view/pdl/mod_message.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_mitem.pdl b/view/pdl/mod_mitem.pdl index 4db06cb49..0cca7fd85 100644 --- a/view/pdl/mod_mitem.pdl +++ b/view/pdl/mod_mitem.pdl @@ -4,4 +4,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_moderate.pdl b/view/pdl/mod_moderate.pdl new file mode 100644 index 000000000..95f069031 --- /dev/null +++ b/view/pdl/mod_moderate.pdl @@ -0,0 +1,4 @@ +[region=right_aside] +[widget=notifications][/widget] +[widget=newmember][/widget] +[/region] diff --git a/view/pdl/mod_network.pdl b/view/pdl/mod_network.pdl index 44e29ffbd..09fdba573 100644 --- a/view/pdl/mod_network.pdl +++ b/view/pdl/mod_network.pdl @@ -14,4 +14,5 @@ $content [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_photos.pdl b/view/pdl/mod_photos.pdl index 4d1a5b2ea..6a3d30b1c 100644 --- a/view/pdl/mod_photos.pdl +++ b/view/pdl/mod_photos.pdl @@ -4,4 +4,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_profile.pdl b/view/pdl/mod_profile.pdl index c34898dd5..7e15fc869 100644 --- a/view/pdl/mod_profile.pdl +++ b/view/pdl/mod_profile.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_profile_photo.pdl b/view/pdl/mod_profile_photo.pdl index c34898dd5..7e15fc869 100644 --- a/view/pdl/mod_profile_photo.pdl +++ b/view/pdl/mod_profile_photo.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_profiles.pdl b/view/pdl/mod_profiles.pdl index c34898dd5..7e15fc869 100644 --- a/view/pdl/mod_profiles.pdl +++ b/view/pdl/mod_profiles.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_profperm.pdl b/view/pdl/mod_profperm.pdl index c34898dd5..7e15fc869 100644 --- a/view/pdl/mod_profperm.pdl +++ b/view/pdl/mod_profperm.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_pubstream.pdl b/view/pdl/mod_pubstream.pdl index e657fa88b..95f069031 100644 --- a/view/pdl/mod_pubstream.pdl +++ b/view/pdl/mod_pubstream.pdl @@ -1,3 +1,4 @@ [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_rate.pdl b/view/pdl/mod_rate.pdl index 5c8ca77d5..a5461df50 100644 --- a/view/pdl/mod_rate.pdl +++ b/view/pdl/mod_rate.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_ratings.pdl b/view/pdl/mod_ratings.pdl index cfa39e408..f6e87cb7c 100644 --- a/view/pdl/mod_ratings.pdl +++ b/view/pdl/mod_ratings.pdl @@ -7,4 +7,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_search.pdl b/view/pdl/mod_search.pdl index e69657dac..ed1f77c5a 100644 --- a/view/pdl/mod_search.pdl +++ b/view/pdl/mod_search.pdl @@ -2,4 +2,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_settings.pdl b/view/pdl/mod_settings.pdl index 53a3ac9e5..37c85c765 100644 --- a/view/pdl/mod_settings.pdl +++ b/view/pdl/mod_settings.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_sharedwithme.pdl b/view/pdl/mod_sharedwithme.pdl index e657fa88b..95f069031 100644 --- a/view/pdl/mod_sharedwithme.pdl +++ b/view/pdl/mod_sharedwithme.pdl @@ -1,3 +1,4 @@ [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_sources.pdl b/view/pdl/mod_sources.pdl index 53a3ac9e5..37c85c765 100644 --- a/view/pdl/mod_sources.pdl +++ b/view/pdl/mod_sources.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_suggest.pdl b/view/pdl/mod_suggest.pdl index 392a36dd6..b74391cba 100644 --- a/view/pdl/mod_suggest.pdl +++ b/view/pdl/mod_suggest.pdl @@ -4,4 +4,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_thing.pdl b/view/pdl/mod_thing.pdl new file mode 100644 index 000000000..7e15fc869 --- /dev/null +++ b/view/pdl/mod_thing.pdl @@ -0,0 +1,7 @@ +[region=aside] +[widget=fullprofile][/widget] +[/region] +[region=right_aside] +[widget=notifications][/widget] +[widget=newmember][/widget] +[/region] diff --git a/view/pdl/mod_uexport.pdl b/view/pdl/mod_uexport.pdl index 53a3ac9e5..37c85c765 100644 --- a/view/pdl/mod_uexport.pdl +++ b/view/pdl/mod_uexport.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_viewconnections.pdl b/view/pdl/mod_viewconnections.pdl index c34898dd5..7e15fc869 100644 --- a/view/pdl/mod_viewconnections.pdl +++ b/view/pdl/mod_viewconnections.pdl @@ -3,4 +3,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_webpages.pdl b/view/pdl/mod_webpages.pdl index 4e60dc2a7..d13bf8862 100644 --- a/view/pdl/mod_webpages.pdl +++ b/view/pdl/mod_webpages.pdl @@ -4,4 +4,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/pdl/mod_wiki.pdl b/view/pdl/mod_wiki.pdl index 1b98b6379..be86be7e3 100644 --- a/view/pdl/mod_wiki.pdl +++ b/view/pdl/mod_wiki.pdl @@ -4,4 +4,5 @@ [/region] [region=right_aside] [widget=notifications][/widget] +[widget=newmember][/widget] [/region] diff --git a/view/php/theme_init.php b/view/php/theme_init.php index 1e066c570..f2c46da28 100644 --- a/view/php/theme_init.php +++ b/view/php/theme_init.php @@ -15,7 +15,7 @@ head_add_js('jquery.js'); head_add_js('/library/justifiedGallery/jquery.justifiedGallery.min.js'); head_add_js('/library/sprintf.js/dist/sprintf.min.js'); -head_add_js('jquery.textinputs.js'); +//head_add_js('jquery.textinputs.js'); head_add_js('autocomplete.js'); head_add_js('/library/jquery-textcomplete/jquery.textcomplete.js'); diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 1611cda60..dfd03707f 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -604,14 +604,6 @@ footer { padding: .15rem .5rem; } -#nav-search-text::-webkit-input-placeholder { - font-family: FontAwesome, sans-serif; -} - -#nav-search-text::-moz-placeholder { - font-family: FontAwesome, sans-serif; -} - nav .acpopup { top: 46px !important; margin-left: -35px; @@ -842,21 +834,12 @@ div.jGrowl div.jGrowl-notification { #acl-search::-webkit-input-placeholder { /* non-fontawesome fonts set a fallback for text parts of the placeholder*/ - font-family: FontAwesome, sans-serif, arial, freesans; + font-family: ForkAwesome, sans-serif, arial, freesans; } #acl-search::-moz-placeholder { /* non-fontawesome fonts set a fallback for text parts of the placeholder*/ - font-family: FontAwesome, sans-serif, arial, freesans; -} - -.acl-list-item { - width: 100%; - padding: 0.5rem; - margin-bottom: 0.5rem; - border: 1px solid #ccc; - float: left; - border-radius: $radius; + font-family: ForkAwesome, sans-serif, arial, freesans; } .acl-item-header { @@ -865,10 +848,12 @@ div.jGrowl div.jGrowl-notification { .acl-list-item.grouphide { border: 1px solid red; + z-index: 2; } .acl-list-item.groupshow { border: 1px solid green; + z-index: 2; } .acl-list-item.taggable { @@ -1800,3 +1785,8 @@ dl.bb-dl > dd > li { .caption-visible { max-height: 75%; } + +.oneway-overlay { + position: absolute; + text-shadow: -2px 0 1px #fff, 0 2px 1px#fff, 2px 0 1px #fff, 0 -2px 1px #fff; +} diff --git a/view/theme/redbasic/img/screenshot.jpg b/view/theme/redbasic/img/screenshot.jpg deleted file mode 100644 index ac9258bd6..000000000 Binary files a/view/theme/redbasic/img/screenshot.jpg and /dev/null differ diff --git a/view/theme/redbasic/img/screenshot.png b/view/theme/redbasic/img/screenshot.png new file mode 100644 index 000000000..60d7e23f6 Binary files /dev/null and b/view/theme/redbasic/img/screenshot.png differ diff --git a/view/theme/redbasic/php/theme_init.php b/view/theme/redbasic/php/theme_init.php index 73ae8f6d2..d9750de42 100644 --- a/view/theme/redbasic/php/theme_init.php +++ b/view/theme/redbasic/php/theme_init.php @@ -1,6 +1,6 @@ input:hover, form#chat-destroy > input:focus { color: #FFF !important; - background-color: #C9302C !important; + background-color: #C9302C !important; border-color: #AC2925 !important; } @@ -278,7 +291,7 @@ nav .dropdown-menu { border-bottom:1px solid #333; } -.nav-tabs .nav-link.active { +.nav-tabs .nav-link.active { color: #fff; background-color: #111; border-color: #333; @@ -297,7 +310,7 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { background-color: #222; } -a, a:visited, a:link, .fakelink, .fakelink:visited, .fakelink:link { +a, a:visited, a:link, .fakelink, .fakelink:visited, .fakelink:link { font-weight: bold; } @@ -343,6 +356,10 @@ pre { border:1px solid #090909; } +#wiki-content-container code { + background: #000; +} + .notif-item a { color: #ccc; } @@ -352,23 +369,23 @@ pre { } .dropdown-menu { - background-color: #222; + background-color: #222; } .dropdown-menu >li > a { - color: #ccc; + color: #ccc; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { - color: #ddd; - background-color: #333; + color: #ddd; + background-color: #333; background-image: none; } .open .dropdown-toggle.btn-default, .open .dropdown-toggle.btn-default:focus { - color: #ccc; - background-color: #222; - border-color: #222; + color: #ccc; + background-color: #222; + border-color: #222; } .pmenu-item:hover a { @@ -444,7 +461,7 @@ pre { .profile-match-wrapper { - width: 150px; + width: 150px; height: 120px; border: none; } @@ -462,5 +479,3 @@ pre { .widget-nav-pills-checkbox:hover + a { background-color: #222; } - - diff --git a/view/tpl/acl_selector.tpl b/view/tpl/acl_selector.tpl index f4f851c8a..3d05cb455 100755 --- a/view/tpl/acl_selector.tpl +++ b/view/tpl/acl_selector.tpl @@ -31,15 +31,17 @@
    - + {{$showlimitedDesc}}
    -