Merge remote branch 'friendica/master'
4
boot.php
|
|
@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php');
|
|||
require_once('include/features.php');
|
||||
|
||||
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
||||
define ( 'FRIENDICA_VERSION', '3.1.1601' );
|
||||
define ( 'FRIENDICA_VERSION', '3.1.1612' );
|
||||
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
||||
define ( 'DB_UPDATE_VERSION', 1159 );
|
||||
|
||||
|
|
@ -1327,7 +1327,7 @@ if(! function_exists('profile_sidebar')) {
|
|||
}
|
||||
}
|
||||
|
||||
if(get_my_url() && $profile['unkmail'])
|
||||
if( get_my_url() && $profile['unkmail'] && ($profile['uid'] != local_user()) )
|
||||
$wallmessage = t('Message');
|
||||
else
|
||||
$wallmessage = false;
|
||||
|
|
|
|||
|
|
@ -219,7 +219,7 @@ function contact_photo_menu($contact) {
|
|||
|
||||
$poke_link = $a->get_baseurl() . '/poke/?f=&c=' . $contact['id'];
|
||||
$contact_url = $a->get_baseurl() . '/contacts/' . $contact['id'];
|
||||
$posts_link = $a->get_baseurl() . '/network/?cid=' . $contact['id'];
|
||||
$posts_link = $a->get_baseurl() . '/network/0?nets=all&cid=' . $contact['id'];
|
||||
|
||||
$menu = Array(
|
||||
'poke' => array(t("Poke"), $poke_link),
|
||||
|
|
|
|||
|
|
@ -239,7 +239,7 @@ function prune_deadguys($arr) {
|
|||
if($r) {
|
||||
$ret = array();
|
||||
foreach($r as $rr)
|
||||
$ret[] = $rr['id'];
|
||||
$ret[] = intval($rr['id']);
|
||||
return $ret;
|
||||
}
|
||||
return array();
|
||||
|
|
@ -339,7 +339,7 @@ function populate_acl($user = null,$celeb = false) {
|
|||
function construct_acl_data(&$a, $user) {
|
||||
|
||||
// Get group and contact information for html ACL selector
|
||||
$acl_data = acl_lookup(&$a, 'html');
|
||||
$acl_data = acl_lookup($a, 'html');
|
||||
|
||||
$user_defaults = get_acl_permissions($user);
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ function z_mime_content_type($filename) {
|
|||
|
||||
$mime_types = array(
|
||||
|
||||
'txt' => 'text/plain',
|
||||
/*'txt' => 'text/plain',
|
||||
'htm' => 'text/html',
|
||||
'html' => 'text/html',
|
||||
'php' => 'text/html',
|
||||
|
|
@ -56,14 +56,1008 @@ function z_mime_content_type($filename) {
|
|||
|
||||
// ms office
|
||||
'doc' => 'application/msword',
|
||||
'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
||||
'rtf' => 'application/rtf',
|
||||
'xls' => 'application/vnd.ms-excel',
|
||||
'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
|
||||
'ppt' => 'application/vnd.ms-powerpoint',
|
||||
'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
|
||||
|
||||
|
||||
// open office
|
||||
'odt' => 'application/vnd.oasis.opendocument.text',
|
||||
'ods' => 'application/vnd.oasis.opendocument.spreadsheet',*/
|
||||
|
||||
// Assembled from the original Friendica list and
|
||||
// lists from http://www.freeformatter.com/mime-types-list.html
|
||||
// and http://www.webmaster-toolkit.com/mime-types.shtml
|
||||
'123' => 'application/vnd.lotus-1-2-3',
|
||||
'3dm' => 'x-world/x-3dmf',
|
||||
'3dmf' => 'x-world/x-3dmf',
|
||||
'3dml' => 'text/vnd.in3d.3dml',
|
||||
'3g2' => 'video/3gpp2',
|
||||
'3gp' => 'video/3gpp',
|
||||
'7z' => 'application/x-7z-compressed',
|
||||
'a' => 'application/octet-stream',
|
||||
'aab' => 'application/x-authorware-bin',
|
||||
'aac' => 'audio/x-aac',
|
||||
'aam' => 'application/x-authorware-map',
|
||||
'aas' => 'application/x-authorware-seg',
|
||||
'abc' => 'text/vnd.abc',
|
||||
'abw' => 'application/x-abiword',
|
||||
'ac' => 'application/pkix-attr-cert',
|
||||
'acc' => 'application/vnd.americandynamics.acc',
|
||||
'ace' => 'application/x-ace-compressed',
|
||||
'acgi' => 'text/html',
|
||||
'acu' => 'application/vnd.acucobol',
|
||||
'adp' => 'audio/adpcm',
|
||||
'aep' => 'application/vnd.audiograph',
|
||||
'afl' => 'video/animaflex',
|
||||
'afp' => 'application/vnd.ibm.modcap',
|
||||
'ahead' => 'application/vnd.ahead.space',
|
||||
'ai' => 'application/postscript',
|
||||
'aif' => 'audio/x-aiff',
|
||||
'aifc' => 'audio/x-aiff',
|
||||
'aiff' => 'audio/x-aiff',
|
||||
'aim' => 'application/x-aim',
|
||||
'aip' => 'text/x-audiosoft-intra',
|
||||
'air' => 'application/vnd.adobe.air-application-installer-package+zip',
|
||||
'ait' => 'application/vnd.dvb.ait',
|
||||
'ami' => 'application/vnd.amiga.ami',
|
||||
'ani' => 'application/x-navi-animation',
|
||||
'aos' => 'application/x-nokia-9000-communicator-add-on-software',
|
||||
'apk' => 'application/vnd.android.package-archive',
|
||||
'application' => 'application/x-ms-application',
|
||||
'apr' => 'application/vnd.lotus-approach',
|
||||
'aps' => 'application/mime',
|
||||
'arc' => 'application/octet-stream',
|
||||
'arj' => 'application/octet-stream',
|
||||
'art' => 'image/x-jg',
|
||||
'asf' => 'video/x-ms-asf',
|
||||
'asm' => 'text/x-asm',
|
||||
'aso' => 'application/vnd.accpac.simply.aso',
|
||||
'asp' => 'text/asp',
|
||||
'asx' => 'video/x-ms-asf-plugin',
|
||||
'atc' => 'application/vnd.acucorp',
|
||||
'atom' => 'application/atom+xml',
|
||||
'atomcat' => 'application/atomcat+xml',
|
||||
'atomsvc' => 'application/atomsvc+xml',
|
||||
'atx' => 'application/vnd.antix.game-component',
|
||||
'au' => 'audio/basic',
|
||||
'avi' => 'video/x-msvideo',
|
||||
'avs' => 'video/avs-video',
|
||||
'aw' => 'application/applixware',
|
||||
'azf' => 'application/vnd.airzip.filesecure.azf',
|
||||
'azs' => 'application/vnd.airzip.filesecure.azs',
|
||||
'azw' => 'application/vnd.amazon.ebook',
|
||||
'bcpio' => 'application/x-bcpio',
|
||||
'bdf' => 'application/x-font-bdf',
|
||||
'bdm' => 'application/vnd.syncml.dm+wbxml',
|
||||
'bed' => 'application/vnd.realvnc.bed',
|
||||
'bh2' => 'application/vnd.fujitsu.oasysprs',
|
||||
'bin' => 'application/octet-stream',
|
||||
'bm' => 'image/bmp',
|
||||
'bmi' => 'application/vnd.bmi',
|
||||
'bmp' => 'image/bmp',
|
||||
'boo' => 'application/book',
|
||||
'book' => 'application/book',
|
||||
'box' => 'application/vnd.previewsystems.box',
|
||||
'boz' => 'application/x-bzip2',
|
||||
'bsh' => 'application/x-bsh',
|
||||
'btif' => 'image/prs.btif',
|
||||
'bz' => 'application/x-bzip',
|
||||
'bz2' => 'application/x-bzip2',
|
||||
'c' => 'text/x-c',
|
||||
'c++' => 'text/plain',
|
||||
'c11amc' => 'application/vnd.cluetrust.cartomobile-config',
|
||||
'c11amz' => 'application/vnd.cluetrust.cartomobile-config-pkg',
|
||||
'c4g' => 'application/vnd.clonk.c4group',
|
||||
'cab' => 'application/vnd.ms-cab-compressed',
|
||||
'car' => 'application/vnd.curl.car',
|
||||
'cat' => 'application/vnd.ms-pki.seccat',
|
||||
'cc' => 'text/x-c',
|
||||
'ccad' => 'application/clariscad',
|
||||
'cco' => 'application/x-cocoa',
|
||||
'ccxml' => 'application/ccxml+xml,',
|
||||
'cdbcmsg' => 'application/vnd.contact.cmsg',
|
||||
'cdf' => 'application/x-netcdf',
|
||||
'cdkey' => 'application/vnd.mediastation.cdkey',
|
||||
'cdmia' => 'application/cdmi-capability',
|
||||
'cdmic' => 'application/cdmi-container',
|
||||
'cdmid' => 'application/cdmi-domain',
|
||||
'cdmio' => 'application/cdmi-object',
|
||||
'cdmiq' => 'application/cdmi-queue',
|
||||
'cdx' => 'chemical/x-cdx',
|
||||
'cdxml' => 'application/vnd.chemdraw+xml',
|
||||
'cdy' => 'application/vnd.cinderella',
|
||||
'cer' => 'application/pkix-cert',
|
||||
'cgm' => 'image/cgm',
|
||||
'cha' => 'application/x-chat',
|
||||
'chat' => 'application/x-chat',
|
||||
'chm' => 'application/vnd.ms-htmlhelp',
|
||||
'chrt' => 'application/vnd.kde.kchart',
|
||||
'cif' => 'chemical/x-cif',
|
||||
'cii' => 'application/vnd.anser-web-certificate-issue-initiation',
|
||||
'cil' => 'application/vnd.ms-artgalry',
|
||||
'cla' => 'application/vnd.claymore',
|
||||
'class' => 'application/java-vm',
|
||||
'clkk' => 'application/vnd.crick.clicker.keyboard',
|
||||
'clkp' => 'application/vnd.crick.clicker.palette',
|
||||
'clkt' => 'application/vnd.crick.clicker.template',
|
||||
'clkw' => 'application/vnd.crick.clicker.wordbank',
|
||||
'clkx' => 'application/vnd.crick.clicker',
|
||||
'clp' => 'application/x-msclip',
|
||||
'cmc' => 'application/vnd.cosmocaller',
|
||||
'cmdf' => 'chemical/x-cmdf',
|
||||
'cml' => 'chemical/x-cml',
|
||||
'cmp' => 'application/vnd.yellowriver-custom-menu',
|
||||
'cmx' => 'image/x-cmx',
|
||||
'cod' => 'application/vnd.rim.cod',
|
||||
'com' => 'text/plain',
|
||||
'conf' => 'text/plain',
|
||||
'cpio' => 'application/x-cpio',
|
||||
'cpp' => 'text/x-c',
|
||||
'cpt' => 'application/mac-compactpro',
|
||||
'crd' => 'application/x-mscardfile',
|
||||
'crl' => 'application/pkix-crl',
|
||||
'crt' => 'application/x-x509-user-cert',
|
||||
'cryptonote' => 'application/vnd.rig.cryptonote',
|
||||
'csh' => 'application/x-csh',
|
||||
'csml' => 'chemical/x-csml',
|
||||
'csp' => 'application/vnd.commonspace',
|
||||
'css' => 'text/css',
|
||||
'csv' => 'text/csv',
|
||||
'cu' => 'application/cu-seeme',
|
||||
'curl' => 'text/vnd.curl',
|
||||
'cww' => 'application/prs.cww',
|
||||
'cxx' => 'text/plain',
|
||||
'dae' => 'model/vnd.collada+xml',
|
||||
'daf' => 'application/vnd.mobius.daf',
|
||||
'davmount' => 'application/davmount+xml',
|
||||
'dcr' => 'application/x-director',
|
||||
'dcurl' => 'text/vnd.curl.dcurl',
|
||||
'dd2' => 'application/vnd.oma.dd2+xml',
|
||||
'ddd' => 'application/vnd.fujixerox.ddd',
|
||||
'deb' => 'application/x-debian-package',
|
||||
'deepv' => 'application/x-deepv',
|
||||
'def' => 'text/plain',
|
||||
'der' => 'application/x-x509-ca-cert',
|
||||
'dfac' => 'application/vnd.dreamfactory',
|
||||
'dif' => 'video/x-dv',
|
||||
'dir' => 'application/x-director',
|
||||
'dis' => 'application/vnd.mobius.dis',
|
||||
'djvu' => 'image/vnd.djvu',
|
||||
'dl' => 'video/x-dl',
|
||||
'dna' => 'application/vnd.dna',
|
||||
'doc' => 'application/msword',
|
||||
'docm' => 'application/vnd.ms-word.document.macroenabled.12',
|
||||
'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
||||
'dot' => 'application/msword',
|
||||
'dotm' => 'application/vnd.ms-word.template.macroenabled.12',
|
||||
'dotx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template',
|
||||
'dp' => 'application/vnd.osgi.dp',
|
||||
'dpg' => 'application/vnd.dpgraph',
|
||||
'dra' => 'audio/vnd.dra',
|
||||
'drw' => 'application/drafting',
|
||||
'dsc' => 'text/prs.lines.tag',
|
||||
'dssc' => 'application/dssc+der',
|
||||
'dtb' => 'application/x-dtbook+xml',
|
||||
'dtd' => 'application/xml-dtd',
|
||||
'dts' => 'audio/vnd.dts',
|
||||
'dtshd' => 'audio/vnd.dts.hd',
|
||||
'dump' => 'application/octet-stream',
|
||||
'dv' => 'video/x-dv',
|
||||
'dvi' => 'application/x-dvi',
|
||||
'dwf' => 'model/vnd.dwf',
|
||||
'dwg' => 'image/vnd.dwg',
|
||||
'dxf' => 'image/vnd.dxf',
|
||||
'dxp' => 'application/vnd.spotfire.dxp',
|
||||
'dxr' => 'application/x-director',
|
||||
'ecelp4800' => 'audio/vnd.nuera.ecelp4800',
|
||||
'ecelp7470' => 'audio/vnd.nuera.ecelp7470',
|
||||
'ecelp9600' => 'audio/vnd.nuera.ecelp9600',
|
||||
'edm' => 'application/vnd.novadigm.edm',
|
||||
'edx' => 'application/vnd.novadigm.edx',
|
||||
'efif' => 'application/vnd.picsel',
|
||||
'ei6' => 'application/vnd.pg.osasli',
|
||||
'el' => 'text/x-script.elisp',
|
||||
'elc' => 'application/x-elc',
|
||||
'eml' => 'message/rfc822',
|
||||
'emma' => 'application/emma+xml',
|
||||
'env' => 'application/x-envoy',
|
||||
'eol' => 'audio/vnd.digital-winds',
|
||||
'eot' => 'application/vnd.ms-fontobject',
|
||||
'eps' => 'application/postscript',
|
||||
'epub' => 'application/epub+zip',
|
||||
'es' => 'application/ecmascript',
|
||||
'es3' => 'application/vnd.eszigno3+xml',
|
||||
'esf' => 'application/vnd.epson.esf',
|
||||
'etx' => 'text/x-setext',
|
||||
'evy' => 'application/x-envoy',
|
||||
'exe' => 'application/x-msdownload',
|
||||
'exi' => 'application/exi',
|
||||
'ext' => 'application/vnd.novadigm.ext',
|
||||
'ez2' => 'application/vnd.ezpix-album',
|
||||
'ez3' => 'application/vnd.ezpix-package',
|
||||
'f' => 'text/x-fortran',
|
||||
'f4v' => 'video/x-f4v',
|
||||
'f77' => 'text/x-fortran',
|
||||
'f90' => 'text/x-fortran',
|
||||
'fbs' => 'image/vnd.fastbidsheet',
|
||||
'fcs' => 'application/vnd.isac.fcs',
|
||||
'fdf' => 'application/vnd.fdf',
|
||||
'fe_launch' => 'application/vnd.denovo.fcselayout-link',
|
||||
'fg5' => 'application/vnd.fujitsu.oasysgp',
|
||||
'fh' => 'image/x-freehand',
|
||||
'fif' => 'image/fif',
|
||||
'fig' => 'application/x-xfig',
|
||||
'fli' => 'video/x-fli',
|
||||
'flo' => 'application/vnd.micrografx.flo',
|
||||
'flv' => 'video/x-flv',
|
||||
'flw' => 'application/vnd.kde.kivio',
|
||||
'flx' => 'text/vnd.fmi.flexstor',
|
||||
'fly' => 'text/vnd.fly',
|
||||
'fm' => 'application/vnd.framemaker',
|
||||
'fmf' => 'video/x-atomic3d-feature',
|
||||
'fnc' => 'application/vnd.frogans.fnc',
|
||||
'for' => 'text/x-fortran',
|
||||
'fpx' => 'image/vnd.fpx',
|
||||
'frl' => 'application/freeloader',
|
||||
'fsc' => 'application/vnd.fsc.weblaunch',
|
||||
'fst' => 'image/vnd.fst',
|
||||
'ftc' => 'application/vnd.fluxtime.clip',
|
||||
'fti' => 'application/vnd.anser-web-funds-transfer-initiation',
|
||||
'funk' => 'audio/make',
|
||||
'fvt' => 'video/vnd.fvt',
|
||||
'fxp' => 'application/vnd.adobe.fxp',
|
||||
'fzs' => 'application/vnd.fuzzysheet',
|
||||
'g' => 'text/plain',
|
||||
'g2w' => 'application/vnd.geoplan',
|
||||
'g3' => 'image/g3fax',
|
||||
'g3w' => 'application/vnd.geospace',
|
||||
'gac' => 'application/vnd.groove-account',
|
||||
'gdl' => 'model/vnd.gdl',
|
||||
'geo' => 'application/vnd.dynageo',
|
||||
'gex' => 'application/vnd.geometry-explorer',
|
||||
'ggb' => 'application/vnd.geogebra.file',
|
||||
'ggt' => 'application/vnd.geogebra.tool',
|
||||
'ghf' => 'application/vnd.groove-help',
|
||||
'gif' => 'image/gif',
|
||||
'gim' => 'application/vnd.groove-identity-message',
|
||||
'gl' => 'video/x-gl',
|
||||
'gmx' => 'application/vnd.gmx',
|
||||
'gnumeric' => 'application/x-gnumeric',
|
||||
'gph' => 'application/vnd.flographit',
|
||||
'gqf' => 'application/vnd.grafeq',
|
||||
'gram' => 'application/srgs',
|
||||
'grv' => 'application/vnd.groove-injector',
|
||||
'grxml' => 'application/srgs+xml',
|
||||
'gsd' => 'audio/x-gsm',
|
||||
'gsf' => 'application/x-font-ghostscript',
|
||||
'gsm' => 'audio/x-gsm',
|
||||
'gsp' => 'application/x-gsp',
|
||||
'gss' => 'application/x-gss',
|
||||
'gtar' => 'application/x-gtar',
|
||||
'gtm' => 'application/vnd.groove-tool-message',
|
||||
'gtw' => 'model/vnd.gtw',
|
||||
'gv' => 'text/vnd.graphviz',
|
||||
'gxt' => 'application/vnd.geonext',
|
||||
'gz' => 'application/x-gzip',
|
||||
'gzip' => 'multipart/x-gzip',
|
||||
'h' => 'text/x-h',
|
||||
'h261' => 'video/h261',
|
||||
'h263' => 'video/h263',
|
||||
'h264' => 'video/h264',
|
||||
'hal' => 'application/vnd.hal+xml',
|
||||
'hbci' => 'application/vnd.hbci',
|
||||
'hdf' => 'application/x-hdf',
|
||||
'help' => 'application/x-helpfile',
|
||||
'hgl' => 'application/vnd.hp-hpgl',
|
||||
'hh' => 'text/x-h',
|
||||
'hlb' => 'text/x-script',
|
||||
'hlp' => 'application/winhlp',
|
||||
'hpg' => 'application/vnd.hp-hpgl',
|
||||
'hpgl' => 'application/vnd.hp-hpgl',
|
||||
'hpid' => 'application/vnd.hp-hpid',
|
||||
'hps' => 'application/vnd.hp-hps',
|
||||
'hqx' => 'application/mac-binhex40',
|
||||
'hta' => 'application/hta',
|
||||
'htc' => 'text/x-component',
|
||||
'htke' => 'application/vnd.kenameaapp',
|
||||
'htm' => 'text/html',
|
||||
'html' => 'text/html',
|
||||
'htmls' => 'text/html',
|
||||
'htt' => 'text/webviewhtml',
|
||||
'htx' => 'text/html',
|
||||
'hvd' => 'application/vnd.yamaha.hv-dic',
|
||||
'hvp' => 'application/vnd.yamaha.hv-voice',
|
||||
'hvs' => 'application/vnd.yamaha.hv-script',
|
||||
'i2g' => 'application/vnd.intergeo',
|
||||
'icc' => 'application/vnd.iccprofile',
|
||||
'ice' => 'x-conference/x-cooltalk',
|
||||
'ico' => 'image/vnd.microsoft.icon',
|
||||
'ics' => 'text/calendar',
|
||||
'idc' => 'text/plain',
|
||||
'ief' => 'image/ief',
|
||||
'iefs' => 'image/ief',
|
||||
'ifm' => 'application/vnd.shana.informed.formdata',
|
||||
'iges' => 'model/iges',
|
||||
'igl' => 'application/vnd.igloader',
|
||||
'igm' => 'application/vnd.insors.igm',
|
||||
'igs' => 'model/iges',
|
||||
'igx' => 'application/vnd.micrografx.igx',
|
||||
'iif' => 'application/vnd.shana.informed.interchange',
|
||||
'ima' => 'application/x-ima',
|
||||
'imap' => 'application/x-httpd-imap',
|
||||
'imp' => 'application/vnd.accpac.simply.imp',
|
||||
'ims' => 'application/vnd.ms-ims',
|
||||
'inf' => 'application/inf',
|
||||
'ins' => 'application/x-internett-signup',
|
||||
'ip' => 'application/x-ip2',
|
||||
'ipfix' => 'application/ipfix',
|
||||
'ipk' => 'application/vnd.shana.informed.package',
|
||||
'irm' => 'application/vnd.ibm.rights-management',
|
||||
'irp' => 'application/vnd.irepository.package+xml',
|
||||
'isu' => 'video/x-isvideo',
|
||||
'it' => 'audio/it',
|
||||
'itp' => 'application/vnd.shana.informed.formtemplate',
|
||||
'iv' => 'application/x-inventor',
|
||||
'ivp' => 'application/vnd.immervision-ivp',
|
||||
'ivr' => 'i-world/i-vrml',
|
||||
'ivu' => 'application/vnd.immervision-ivu',
|
||||
'ivy' => 'application/x-livescreen',
|
||||
'jad' => 'text/vnd.sun.j2me.app-descriptor',
|
||||
'jam' => 'application/vnd.jam',
|
||||
'jar' => 'application/java-archive',
|
||||
'jav' => 'text/x-java-source',
|
||||
'java' => 'text/x-java-source,java',
|
||||
'jcm' => 'application/x-java-commerce',
|
||||
'jfif' => 'image/pjpeg',
|
||||
'jfif-tbnl' => 'image/jpeg',
|
||||
'jisp' => 'application/vnd.jisp',
|
||||
'jlt' => 'application/vnd.hp-jlyt',
|
||||
'jnlp' => 'application/x-java-jnlp-file',
|
||||
'joda' => 'application/vnd.joost.joda-archive',
|
||||
'jpe' => 'image/jpeg',
|
||||
'jpeg' => 'image/jpeg',
|
||||
'jpg' => 'image/jpeg',
|
||||
'jpgv' => 'video/jpeg',
|
||||
'jpm' => 'video/jpm',
|
||||
'jps' => 'image/x-jps',
|
||||
'js' => 'application/javascript',
|
||||
'json' => 'application/json',
|
||||
'jut' => 'image/jutvision',
|
||||
'kar' => 'music/x-karaoke',
|
||||
'karbon' => 'application/vnd.kde.karbon',
|
||||
'kfo' => 'application/vnd.kde.kformula',
|
||||
'kia' => 'application/vnd.kidspiration',
|
||||
'kml' => 'application/vnd.google-earth.kml+xml',
|
||||
'kmz' => 'application/vnd.google-earth.kmz',
|
||||
'kne' => 'application/vnd.kinar',
|
||||
'kon' => 'application/vnd.kde.kontour',
|
||||
'kpr' => 'application/vnd.kde.kpresenter',
|
||||
'ksh' => 'text/x-script.ksh',
|
||||
'ksp' => 'application/vnd.kde.kspread',
|
||||
'ktx' => 'image/ktx',
|
||||
'ktz' => 'application/vnd.kahootz',
|
||||
'kwd' => 'application/vnd.kde.kword',
|
||||
'la' => 'audio/x-nspaudio',
|
||||
'lam' => 'audio/x-liveaudio',
|
||||
'lasxml' => 'application/vnd.las.las+xml',
|
||||
'latex' => 'application/x-latex',
|
||||
'lbd' => 'application/vnd.llamagraphics.life-balance.desktop',
|
||||
'lbe' => 'application/vnd.llamagraphics.life-balance.exchange+xml',
|
||||
'les' => 'application/vnd.hhe.lesson-player',
|
||||
'lha' => 'application/x-lha',
|
||||
'lhx' => 'application/octet-stream',
|
||||
'link66' => 'application/vnd.route66.link66+xml',
|
||||
'list' => 'text/plain',
|
||||
'lma' => 'audio/x-nspaudio',
|
||||
'log' => 'text/plain',
|
||||
'lrm' => 'application/vnd.ms-lrm',
|
||||
'lsp' => 'text/x-script.lisp',
|
||||
'lst' => 'text/plain',
|
||||
'lsx' => 'text/x-la-asf',
|
||||
'ltf' => 'application/vnd.frogans.ltf',
|
||||
'ltx' => 'application/x-latex',
|
||||
'lvp' => 'audio/vnd.lucent.voice',
|
||||
'lwp' => 'application/vnd.lotus-wordpro',
|
||||
'lzh' => 'application/x-lzh',
|
||||
'lzx' => 'application/x-lzx',
|
||||
'm' => 'text/x-m',
|
||||
'm1v' => 'video/mpeg',
|
||||
'm21' => 'application/mp21',
|
||||
'm2a' => 'audio/mpeg',
|
||||
'm2v' => 'video/mpeg',
|
||||
'm3u' => 'audio/x-mpegurl',
|
||||
'm3u8' => 'application/vnd.apple.mpegurl',
|
||||
'm4v' => 'video/x-m4v',
|
||||
'ma' => 'application/mathematica',
|
||||
'mads' => 'application/mads+xml',
|
||||
'mag' => 'application/vnd.ecowin.chart',
|
||||
'man' => 'application/x-troff-man',
|
||||
'map' => 'application/x-navimap',
|
||||
'mar' => 'text/plain',
|
||||
'mathml' => 'application/mathml+xml',
|
||||
'mbd' => 'application/mbedlet',
|
||||
'mbk' => 'application/vnd.mobius.mbk',
|
||||
'mbox' => 'application/mbox',
|
||||
'mc$' => 'application/x-magic-cap-package-1.0',
|
||||
'mc1' => 'application/vnd.medcalcdata',
|
||||
'mcd' => 'application/vnd.mcd',
|
||||
'mcf' => 'text/mcf',
|
||||
'mcp' => 'application/netmc',
|
||||
'mcurl' => 'text/vnd.curl.mcurl',
|
||||
'mdb' => 'application/x-msaccess',
|
||||
'mdi' => 'image/vnd.ms-modi',
|
||||
'me' => 'application/x-troff-me',
|
||||
'meta4' => 'application/metalink4+xml',
|
||||
'mets' => 'application/mets+xml',
|
||||
'mfm' => 'application/vnd.mfmp',
|
||||
'mgp' => 'application/vnd.osgeo.mapguide.package',
|
||||
'mgz' => 'application/vnd.proteus.magazine',
|
||||
'mht' => 'message/rfc822',
|
||||
'mhtml' => 'message/rfc822',
|
||||
'mid' => 'audio/midi',
|
||||
'midi' => 'x-music/x-midi',
|
||||
'mif' => 'application/vnd.mif',
|
||||
'mime' => 'www/mime',
|
||||
'mj2' => 'video/mj2',
|
||||
'mjf' => 'audio/x-vnd.audioexplosion.mjuicemediafile',
|
||||
'mjpg' => 'video/x-motion-jpeg',
|
||||
'mlp' => 'application/vnd.dolby.mlp',
|
||||
'mm' => 'application/x-meme',
|
||||
'mmd' => 'application/vnd.chipnuts.karaoke-mmd',
|
||||
'mme' => 'application/base64',
|
||||
'mmf' => 'application/vnd.smaf',
|
||||
'mmr' => 'image/vnd.fujixerox.edmics-mmr',
|
||||
'mny' => 'application/x-msmoney',
|
||||
'mod' => 'audio/x-mod',
|
||||
'mods' => 'application/mods+xml',
|
||||
'moov' => 'video/quicktime',
|
||||
'mov' => 'video/quicktime',
|
||||
'movie' => 'video/x-sgi-movie',
|
||||
'mp2' => 'video/x-mpeq2a',
|
||||
'mp3' => 'audio/mpeg',
|
||||
'mp4' => 'video/mp4',
|
||||
'mp4a' => 'audio/mp4',
|
||||
'mpa' => 'video/mpeg',
|
||||
'mpc' => 'application/vnd.mophun.certificate',
|
||||
'mpe' => 'video/mpeg',
|
||||
'mpeg' => 'video/mpeg',
|
||||
'mpg' => 'video/mpeg',
|
||||
'mpga' => 'audio/mpeg',
|
||||
'mpkg' => 'application/vnd.apple.installer+xml',
|
||||
'mpm' => 'application/vnd.blueice.multipass',
|
||||
'mpn' => 'application/vnd.mophun.application',
|
||||
'mpp' => 'application/vnd.ms-project',
|
||||
'mpt' => 'application/x-project',
|
||||
'mpv' => 'application/x-project',
|
||||
'mpx' => 'application/x-project',
|
||||
'mpy' => 'application/vnd.ibm.minipay',
|
||||
'mqy' => 'application/vnd.mobius.mqy',
|
||||
'mrc' => 'application/marc',
|
||||
'mrcx' => 'application/marcxml+xml',
|
||||
'ms' => 'application/x-troff-ms',
|
||||
'mscml' => 'application/mediaservercontrol+xml',
|
||||
'mseq' => 'application/vnd.mseq',
|
||||
'msf' => 'application/vnd.epson.msf',
|
||||
'msh' => 'model/mesh',
|
||||
'msi' => 'application/x-msdownload',
|
||||
'msl' => 'application/vnd.mobius.msl',
|
||||
'msty' => 'application/vnd.muvee.style',
|
||||
'mts' => 'model/vnd.mts',
|
||||
'mus' => 'application/vnd.musician',
|
||||
'musicxml' => 'application/vnd.recordare.musicxml+xml',
|
||||
'mv' => 'video/x-sgi-movie',
|
||||
'mvb' => 'application/x-msmediaview',
|
||||
'mwf' => 'application/vnd.mfer',
|
||||
'mxf' => 'application/mxf',
|
||||
'mxl' => 'application/vnd.recordare.musicxml',
|
||||
'mxml' => 'application/xv+xml',
|
||||
'mxs' => 'application/vnd.triscape.mxs',
|
||||
'mxu' => 'video/vnd.mpegurl',
|
||||
'my' => 'audio/make',
|
||||
'mzz' => 'application/x-vnd.audioexplosion.mzz',
|
||||
'n-gage' => 'application/vnd.nokia.n-gage.symbian.install',
|
||||
'n3' => 'text/n3',
|
||||
'nap' => 'image/naplps',
|
||||
'naplps' => 'image/naplps',
|
||||
'nbp' => 'application/vnd.wolfram.player',
|
||||
'nc' => 'application/x-netcdf',
|
||||
'ncm' => 'application/vnd.nokia.configuration-message',
|
||||
'ncx' => 'application/x-dtbncx+xml',
|
||||
'ngdat' => 'application/vnd.nokia.n-gage.data',
|
||||
'nif' => 'image/x-niff',
|
||||
'niff' => 'image/x-niff',
|
||||
'nix' => 'application/x-mix-transfer',
|
||||
'nlu' => 'application/vnd.neurolanguage.nlu',
|
||||
'nml' => 'application/vnd.enliven',
|
||||
'nnd' => 'application/vnd.noblenet-directory',
|
||||
'nns' => 'application/vnd.noblenet-sealer',
|
||||
'nnw' => 'application/vnd.noblenet-web',
|
||||
'npx' => 'image/vnd.net-fpx',
|
||||
'nsc' => 'application/x-conference',
|
||||
'nsf' => 'application/vnd.lotus-notes',
|
||||
'nvd' => 'application/x-navidoc',
|
||||
'o' => 'application/octet-stream',
|
||||
'oa2' => 'application/vnd.fujitsu.oasys2',
|
||||
'oa3' => 'application/vnd.fujitsu.oasys3',
|
||||
'oas' => 'application/vnd.fujitsu.oasys',
|
||||
'obd' => 'application/x-msbinder',
|
||||
'oda' => 'application/oda',
|
||||
'odb' => 'application/vnd.oasis.opendocument.database',
|
||||
'odc' => 'application/vnd.oasis.opendocument.chart',
|
||||
'odf' => 'application/vnd.oasis.opendocument.formula',
|
||||
'odft' => 'application/vnd.oasis.opendocument.formula-template',
|
||||
'odg' => 'application/vnd.oasis.opendocument.graphics',
|
||||
'odi' => 'application/vnd.oasis.opendocument.image',
|
||||
'odm' => 'application/vnd.oasis.opendocument.text-master',
|
||||
'odp' => 'application/vnd.oasis.opendocument.presentation',
|
||||
'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
|
||||
'odt' => 'application/vnd.oasis.opendocument.text',
|
||||
'oga' => 'audio/ogg',
|
||||
'ogg' => 'application/ogg',
|
||||
'ogv' => 'video/ogg',
|
||||
'ogx' => 'application/ogg',
|
||||
'omc' => 'application/x-omc',
|
||||
'omcd' => 'application/x-omcdatamaker',
|
||||
'omcr' => 'application/x-omcregerator',
|
||||
'onetoc' => 'application/onenote',
|
||||
'opf' => 'application/oebps-package+xml',
|
||||
'org' => 'application/vnd.lotus-organizer',
|
||||
'osf' => 'application/vnd.yamaha.openscoreformat',
|
||||
'osfpvg' => 'application/vnd.yamaha.openscoreformat.osfpvg+xml',
|
||||
'otc' => 'application/vnd.oasis.opendocument.chart-template',
|
||||
'otf' => 'application/x-font-otf',
|
||||
'otg' => 'application/vnd.oasis.opendocument.graphics-template',
|
||||
'oth' => 'application/vnd.oasis.opendocument.text-web',
|
||||
'oti' => 'application/vnd.oasis.opendocument.image-template',
|
||||
'otp' => 'application/vnd.oasis.opendocument.presentation-template',
|
||||
'ots' => 'application/vnd.oasis.opendocument.spreadsheet-template',
|
||||
'ott' => 'application/vnd.oasis.opendocument.text-template',
|
||||
'oxt' => 'application/vnd.openofficeorg.extension',
|
||||
'p' => 'text/x-pascal',
|
||||
'p10' => 'application/pkcs10',
|
||||
'p12' => 'application/x-pkcs12',
|
||||
'p7a' => 'application/x-pkcs7-signature',
|
||||
'p7b' => 'application/x-pkcs7-certificates',
|
||||
'p7c' => 'application/x-pkcs7-mime',
|
||||
'p7m' => 'application/pkcs7-mime',
|
||||
'p7r' => 'application/x-pkcs7-certreqresp',
|
||||
'p7s' => 'application/pkcs7-signature',
|
||||
'p8' => 'application/pkcs8',
|
||||
'part' => 'application/pro_eng',
|
||||
'pas' => 'text/pascal',
|
||||
'paw' => 'application/vnd.pawaafile',
|
||||
'pbd' => 'application/vnd.powerbuilder6',
|
||||
'pbm' => 'image/x-portable-bitmap',
|
||||
'pcf' => 'application/x-font-pcf',
|
||||
'pcl' => 'application/vnd.hp-pcl',
|
||||
'pclxl' => 'application/vnd.hp-pclxl',
|
||||
'pct' => 'image/x-pict',
|
||||
'pcurl' => 'application/vnd.curl.pcurl',
|
||||
'pcx' => 'image/x-pcx',
|
||||
'pdb' => 'application/vnd.palm',
|
||||
'pdf' => 'application/pdf',
|
||||
'pfa' => 'application/x-font-type1',
|
||||
'pfr' => 'application/font-tdpfr',
|
||||
'pfunk' => 'audio/make.my.funk',
|
||||
'pgm' => 'image/x-portable-graymap',
|
||||
'pgn' => 'application/x-chess-pgn',
|
||||
'pgp' => 'application/pgp-signature',
|
||||
'php' => 'text/html',
|
||||
'pic' => 'image/x-pict',
|
||||
'pict' => 'image/pict',
|
||||
'pkg' => 'application/x-newton-compatible-pkg',
|
||||
'pki' => 'application/pkixcmp',
|
||||
'pkipath' => 'application/pkix-pkipath',
|
||||
'pko' => 'application/vnd.ms-pki.pko',
|
||||
'pl' => 'text/x-script.perl',
|
||||
'plb' => 'application/vnd.3gpp.pic-bw-large',
|
||||
'plc' => 'application/vnd.mobius.plc',
|
||||
'plf' => 'application/vnd.pocketlearn',
|
||||
'pls' => 'application/pls+xml',
|
||||
'plx' => 'application/x-pixclscript',
|
||||
'pm' => 'text/x-script.perl-module',
|
||||
'pm4' => 'application/x-pagemaker',
|
||||
'pm5' => 'application/x-pagemaker',
|
||||
'pml' => 'application/vnd.ctc-posml',
|
||||
'png' => 'image/png',
|
||||
'pnm' => 'image/x-portable-anymap',
|
||||
'portpkg' => 'application/vnd.macports.portpkg',
|
||||
'pot' => 'application/vnd.ms-powerpoint',
|
||||
'potm' => 'application/vnd.ms-powerpoint.template.macroenabled.12',
|
||||
'potx' => 'application/vnd.openxmlformats-officedocument.presentationml.template',
|
||||
'pov' => 'model/x-pov',
|
||||
'ppa' => 'application/vnd.ms-powerpoint',
|
||||
'ppam' => 'application/vnd.ms-powerpoint.addin.macroenabled.12',
|
||||
'ppd' => 'application/vnd.cups-ppd',
|
||||
'ppm' => 'image/x-portable-pixmap',
|
||||
'pps' => 'application/vnd.ms-powerpoint',
|
||||
'ppsm' => 'application/vnd.ms-powerpoint.slideshow.macroenabled.12',
|
||||
'ppsx' => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow',
|
||||
'ppt' => 'application/vnd.ms-powerpoint',
|
||||
'pptm' => 'application/vnd.ms-powerpoint.presentation.macroenabled.12',
|
||||
'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
|
||||
'ppz' => 'application/mspowerpoint',
|
||||
'prc' => 'application/x-mobipocket-ebook',
|
||||
'pre' => 'application/vnd.lotus-freelance',
|
||||
'prf' => 'application/pics-rules',
|
||||
'prt' => 'application/pro_eng',
|
||||
'ps' => 'application/postscript',
|
||||
'psb' => 'application/vnd.3gpp.pic-bw-small',
|
||||
'psd' => 'image/vnd.adobe.photoshop',
|
||||
'psf' => 'application/x-font-linux-psf',
|
||||
'pskcxml' => 'application/pskc+xml',
|
||||
'ptid' => 'application/vnd.pvi.ptid1',
|
||||
'pub' => 'application/x-mspublisher',
|
||||
'pvb' => 'application/vnd.3gpp.pic-bw-var',
|
||||
'pvu' => 'paleovu/x-pv',
|
||||
'pwn' => 'application/vnd.3m.post-it-notes',
|
||||
'pwz' => 'application/vnd.ms-powerpoint',
|
||||
'py' => 'text/x-script.phyton',
|
||||
'pya' => 'audio/vnd.ms-playready.media.pya',
|
||||
'pyc' => 'applicaiton/x-bytecode.python',
|
||||
'pyv' => 'video/vnd.ms-playready.media.pyv',
|
||||
'qam' => 'application/vnd.epson.quickanime',
|
||||
'qbo' => 'application/vnd.intu.qbo',
|
||||
'qcp' => 'audio/vnd.qcelp',
|
||||
'qd3' => 'x-world/x-3dmf',
|
||||
'qd3d' => 'x-world/x-3dmf',
|
||||
'qfx' => 'application/vnd.intu.qfx',
|
||||
'qif' => 'image/x-quicktime',
|
||||
'qps' => 'application/vnd.publishare-delta-tree',
|
||||
'qt' => 'video/quicktime',
|
||||
'qtc' => 'video/x-qtc',
|
||||
'qti' => 'image/x-quicktime',
|
||||
'qtif' => 'image/x-quicktime',
|
||||
'qxd' => 'application/vnd.quark.quarkxpress',
|
||||
'ra' => 'audio/x-realaudio',
|
||||
'ram' => 'audio/x-pn-realaudio',
|
||||
'rar' => 'application/x-rar-compressed',
|
||||
'ras' => 'image/x-cmu-raster',
|
||||
'rast' => 'image/cmu-raster',
|
||||
'rcprofile' => 'application/vnd.ipunplugged.rcprofile',
|
||||
'rdf' => 'application/rdf+xml',
|
||||
'rdz' => 'application/vnd.data-vision.rdz',
|
||||
'rep' => 'application/vnd.businessobjects',
|
||||
'res' => 'application/x-dtbresource+xml',
|
||||
'rexx' => 'text/x-script.rexx',
|
||||
'rf' => 'image/vnd.rn-realflash',
|
||||
'rgb' => 'image/x-rgb',
|
||||
'rif' => 'application/reginfo+xml',
|
||||
'rip' => 'audio/vnd.rip',
|
||||
'rl' => 'application/resource-lists+xml',
|
||||
'rlc' => 'image/vnd.fujixerox.edmics-rlc',
|
||||
'rld' => 'application/resource-lists-diff+xml',
|
||||
'rm' => 'application/vnd.rn-realmedia',
|
||||
'rmi' => 'audio/mid',
|
||||
'rmm' => 'audio/x-pn-realaudio',
|
||||
'rmp' => 'audio/x-pn-realaudio-plugin',
|
||||
'rms' => 'application/vnd.jcp.javame.midlet-rms',
|
||||
'rnc' => 'application/relax-ng-compact-syntax',
|
||||
'rng' => 'application/vnd.nokia.ringing-tone',
|
||||
'rnx' => 'application/vnd.rn-realplayer',
|
||||
'roff' => 'application/x-troff',
|
||||
'rp' => 'image/vnd.rn-realpix',
|
||||
'rp9' => 'application/vnd.cloanto.rp9',
|
||||
'rpm' => 'audio/x-pn-realaudio-plugin',
|
||||
'rpss' => 'application/vnd.nokia.radio-presets',
|
||||
'rpst' => 'application/vnd.nokia.radio-preset',
|
||||
'rq' => 'application/sparql-query',
|
||||
'rs' => 'application/rls-services+xml',
|
||||
'rsd' => 'application/rsd+xml',
|
||||
'rss' => 'application/rss+xml',
|
||||
'rt' => 'text/vnd.rn-realtext',
|
||||
'rtf' => 'application/rtf',
|
||||
'rtx' => 'text/richtext',
|
||||
'rv' => 'video/vnd.rn-realvideo',
|
||||
's' => 'text/x-asm',
|
||||
's3m' => 'audio/s3m',
|
||||
'saf' => 'application/vnd.yamaha.smaf-audio',
|
||||
'saveme' => 'application/octet-stream',
|
||||
'sbk' => 'application/x-tbook',
|
||||
'sbml' => 'application/sbml+xml',
|
||||
'sc' => 'application/vnd.ibm.secure-container',
|
||||
'scd' => 'application/x-msschedule',
|
||||
'scm' => 'application/vnd.lotus-screencam',
|
||||
'scq' => 'application/scvp-cv-request',
|
||||
'scs' => 'application/scvp-cv-response',
|
||||
'scurl' => 'text/vnd.curl.scurl',
|
||||
'sda' => 'application/vnd.stardivision.draw',
|
||||
'sdc' => 'application/vnd.stardivision.calc',
|
||||
'sdd' => 'application/vnd.stardivision.impress',
|
||||
'sdkm' => 'application/vnd.solent.sdkm+xml',
|
||||
'sdml' => 'text/plain',
|
||||
'sdp' => 'application/sdp',
|
||||
'sdr' => 'application/sounder',
|
||||
'sdw' => 'application/vnd.stardivision.writer',
|
||||
'sea' => 'application/x-sea',
|
||||
'see' => 'application/vnd.seemail',
|
||||
'seed' => 'application/vnd.fdsn.seed',
|
||||
'sema' => 'application/vnd.sema',
|
||||
'semd' => 'application/vnd.semd',
|
||||
'semf' => 'application/vnd.semf',
|
||||
'ser' => 'application/java-serialized-object',
|
||||
'set' => 'application/set',
|
||||
'setpay' => 'application/set-payment-initiation',
|
||||
'setreg' => 'application/set-registration-initiation',
|
||||
'sfd-hdstx' => 'application/vnd.hydrostatix.sof-data',
|
||||
'sfs' => 'application/vnd.spotfire.sfs',
|
||||
'sgl' => 'application/vnd.stardivision.writer-global',
|
||||
'sgm' => 'text/x-sgml',
|
||||
'sgml' => 'text/sgml',
|
||||
'sh' => 'application/x-sh',
|
||||
'shar' => 'application/x-shar',
|
||||
'shf' => 'application/shf+xml',
|
||||
'shtml' => 'text/x-server-parsed-html',
|
||||
'sid' => 'audio/x-psid',
|
||||
'sis' => 'application/vnd.symbian.install',
|
||||
'sit' => 'application/x-stuffit',
|
||||
'sitx' => 'application/x-stuffitx',
|
||||
'skd' => 'application/x-koan',
|
||||
'skm' => 'application/x-koan',
|
||||
'skp' => 'application/vnd.koan',
|
||||
'skt' => 'application/x-koan',
|
||||
'sl' => 'application/x-seelogo',
|
||||
'sldm' => 'application/vnd.ms-powerpoint.slide.macroenabled.12',
|
||||
'sldx' => 'application/vnd.openxmlformats-officedocument.presentationml.slide',
|
||||
'slt' => 'application/vnd.epson.salt',
|
||||
'sm' => 'application/vnd.stepmania.stepchart',
|
||||
'smf' => 'application/vnd.stardivision.math',
|
||||
'smi' => 'application/smil+xml',
|
||||
'smil' => 'application/smil',
|
||||
'snd' => 'audio/x-adpcm',
|
||||
'snf' => 'application/x-font-snf',
|
||||
'sol' => 'application/solids',
|
||||
'spc' => 'text/x-speech',
|
||||
'spf' => 'application/vnd.yamaha.smaf-phrase',
|
||||
'spl' => 'application/x-futuresplash',
|
||||
'spot' => 'text/vnd.in3d.spot',
|
||||
'spp' => 'application/scvp-vp-response',
|
||||
'spq' => 'application/scvp-vp-request',
|
||||
'spr' => 'application/x-sprite',
|
||||
'sprite' => 'application/x-sprite',
|
||||
'src' => 'application/x-wais-source',
|
||||
'sru' => 'application/sru+xml',
|
||||
'srx' => 'application/sparql-results+xml',
|
||||
'sse' => 'application/vnd.kodak-descriptor',
|
||||
'ssf' => 'application/vnd.epson.ssf',
|
||||
'ssi' => 'text/x-server-parsed-html',
|
||||
'ssm' => 'application/streamingmedia',
|
||||
'ssml' => 'application/ssml+xml',
|
||||
'sst' => 'application/vnd.ms-pki.certstore',
|
||||
'st' => 'application/vnd.sailingtracker.track',
|
||||
'stc' => 'application/vnd.sun.xml.calc.template',
|
||||
'std' => 'application/vnd.sun.xml.draw.template',
|
||||
'step' => 'application/step',
|
||||
'stf' => 'application/vnd.wt.stf',
|
||||
'sti' => 'application/vnd.sun.xml.impress.template',
|
||||
'stk' => 'application/hyperstudio',
|
||||
'stl' => 'application/vnd.ms-pki.stl',
|
||||
'stp' => 'application/step',
|
||||
'str' => 'application/vnd.pg.format',
|
||||
'stw' => 'application/vnd.sun.xml.writer.template',
|
||||
'sub' => 'image/vnd.dvb.subtitle',
|
||||
'sus' => 'application/vnd.sus-calendar',
|
||||
'sv4cpio' => 'application/x-sv4cpio',
|
||||
'sv4crc' => 'application/x-sv4crc',
|
||||
'svc' => 'application/vnd.dvb.service',
|
||||
'svd' => 'application/vnd.svd',
|
||||
'svf' => 'image/x-dwg',
|
||||
'svg' => 'image/svg+xml',
|
||||
'svgz' => 'image/svg+xml',
|
||||
'svr' => 'x-world/x-svr',
|
||||
'swf' => 'application/x-shockwave-flash',
|
||||
'swi' => 'application/vnd.aristanetworks.swi',
|
||||
'sxc' => 'application/vnd.sun.xml.calc',
|
||||
'sxd' => 'application/vnd.sun.xml.draw',
|
||||
'sxg' => 'application/vnd.sun.xml.writer.global',
|
||||
'sxi' => 'application/vnd.sun.xml.impress',
|
||||
'sxm' => 'application/vnd.sun.xml.math',
|
||||
'sxw' => 'application/vnd.sun.xml.writer',
|
||||
't' => 'text/troff',
|
||||
'talk' => 'text/x-speech',
|
||||
'tao' => 'application/vnd.tao.intent-module-archive',
|
||||
'tar' => 'application/x-tar',
|
||||
'tbk' => 'application/x-tbook',
|
||||
'tcap' => 'application/vnd.3gpp2.tcap',
|
||||
'tcl' => 'application/x-tcl',
|
||||
'tcsh' => 'text/x-script.tcsh',
|
||||
'teacher' => 'application/vnd.smart.teacher',
|
||||
'tei' => 'application/tei+xml',
|
||||
'tex' => 'application/x-tex',
|
||||
'texi' => 'application/x-texinfo',
|
||||
'texinfo' => 'application/x-texinfo',
|
||||
'text' => 'text/plain',
|
||||
'tfi' => 'application/thraud+xml',
|
||||
'tfm' => 'application/x-tex-tfm',
|
||||
'tgz' => 'application/x-compressed',
|
||||
'thmx' => 'application/vnd.ms-officetheme',
|
||||
'tif' => 'image/tiff',
|
||||
'tiff' => 'image/tiff',
|
||||
'tmo' => 'application/vnd.tmobile-livetv',
|
||||
'torrent' => 'application/x-bittorrent',
|
||||
'tpl' => 'application/vnd.groove-tool-template',
|
||||
'tpt' => 'application/vnd.trid.tpt',
|
||||
'tr' => 'application/x-troff',
|
||||
'tra' => 'application/vnd.trueapp',
|
||||
'trm' => 'application/x-msterminal',
|
||||
'tsd' => 'application/timestamped-data',
|
||||
'tsi' => 'audio/tsp-audio',
|
||||
'tsp' => 'audio/tsplayer',
|
||||
'tsv' => 'text/tab-separated-values',
|
||||
'ttf' => 'application/x-font-ttf',
|
||||
'ttl' => 'text/turtle',
|
||||
'turbot' => 'image/florian',
|
||||
'twd' => 'application/vnd.simtech-mindmapper',
|
||||
'txd' => 'application/vnd.genomatix.tuxedo',
|
||||
'txf' => 'application/vnd.mobius.txf',
|
||||
'txt' => 'text/plain',
|
||||
'ufd' => 'application/vnd.ufdl',
|
||||
'uil' => 'text/x-uil',
|
||||
'umj' => 'application/vnd.umajin',
|
||||
'uni' => 'text/uri-list',
|
||||
'unis' => 'text/uri-list',
|
||||
'unityweb' => 'application/vnd.unity',
|
||||
'unv' => 'application/i-deas',
|
||||
'uoml' => 'application/vnd.uoml+xml',
|
||||
'uri' => 'text/uri-list',
|
||||
'uris' => 'text/uri-list',
|
||||
'ustar' => 'application/x-ustar',
|
||||
'utz' => 'application/vnd.uiq.theme',
|
||||
'uu' => 'text/x-uuencode',
|
||||
'uue' => 'text/x-uuencode',
|
||||
'uva' => 'audio/vnd.dece.audio',
|
||||
'uvh' => 'video/vnd.dece.hd',
|
||||
'uvi' => 'image/vnd.dece.graphic',
|
||||
'uvm' => 'video/vnd.dece.mobile',
|
||||
'uvp' => 'video/vnd.dece.pd',
|
||||
'uvs' => 'video/vnd.dece.sd',
|
||||
'uvu' => 'video/vnd.uvvu.mp4',
|
||||
'uvv' => 'video/vnd.dece.video',
|
||||
'vcd' => 'application/x-cdlink',
|
||||
'vcf' => 'text/x-vcard',
|
||||
'vcg' => 'application/vnd.groove-vcard',
|
||||
'vcs' => 'text/x-vcalendar',
|
||||
'vcx' => 'application/vnd.vcx',
|
||||
'vda' => 'application/vda',
|
||||
'vdo' => 'video/vdo',
|
||||
'vew' => 'application/groupwise',
|
||||
'vis' => 'application/vnd.visionary',
|
||||
'viv' => 'video/vnd.vivo',
|
||||
'vivo' => 'video/vnd.vivo',
|
||||
'vmd' => 'application/vocaltec-media-desc',
|
||||
'vmf' => 'application/vocaltec-media-file',
|
||||
'voc' => 'audio/x-voc',
|
||||
'vos' => 'video/vosaic',
|
||||
'vox' => 'audio/voxware',
|
||||
'vqe' => 'audio/x-twinvq-plugin',
|
||||
'vqf' => 'audio/x-twinvq',
|
||||
'vql' => 'audio/x-twinvq-plugin',
|
||||
'vrml' => 'x-world/x-vrml',
|
||||
'vrt' => 'x-world/x-vrt',
|
||||
'vsd' => 'application/vnd.visio',
|
||||
'vsf' => 'application/vnd.vsf',
|
||||
'vst' => 'application/x-visio',
|
||||
'vsw' => 'application/x-visio',
|
||||
'vtu' => 'model/vnd.vtu',
|
||||
'vxml' => 'application/voicexml+xml',
|
||||
'w60' => 'application/wordperfect6.0',
|
||||
'w61' => 'application/wordperfect6.1',
|
||||
'w6w' => 'application/msword',
|
||||
'wad' => 'application/x-doom',
|
||||
'wav' => 'audio/wav',
|
||||
'wax' => 'audio/x-ms-wax',
|
||||
'wb1' => 'application/x-qpro',
|
||||
'wbmp' => 'image/vnd.wap.wbmp',
|
||||
'wbs' => 'application/vnd.criticaltools.wbs+xml',
|
||||
'wbxml' => 'application/vnd.wap.wbxml',
|
||||
'web' => 'application/vnd.xara',
|
||||
'weba' => 'audio/webm',
|
||||
'webm' => 'video/webm',
|
||||
'webp' => 'image/webp',
|
||||
'wg' => 'application/vnd.pmi.widget',
|
||||
'wgt' => 'application/widget',
|
||||
'wiz' => 'application/msword',
|
||||
'wk1' => 'application/x-123',
|
||||
'wm' => 'video/x-ms-wm',
|
||||
'wma' => 'audio/x-ms-wma',
|
||||
'wmd' => 'application/x-ms-wmd',
|
||||
'wmf' => 'application/x-msmetafile',
|
||||
'wml' => 'text/vnd.wap.wml',
|
||||
'wmlc' => 'application/vnd.wap.wmlc',
|
||||
'wmls' => 'text/vnd.wap.wmlscript',
|
||||
'wmlsc' => 'application/vnd.wap.wmlscriptc',
|
||||
'wmv' => 'video/x-ms-wmv',
|
||||
'wmx' => 'video/x-ms-wmx',
|
||||
'wmz' => 'application/x-ms-wmz',
|
||||
'woff' => 'application/x-font-woff',
|
||||
'word' => 'application/msword',
|
||||
'wp' => 'application/wordperfect',
|
||||
'wp5' => 'application/wordperfect6.0',
|
||||
'wp6' => 'application/wordperfect',
|
||||
'wpd' => 'application/vnd.wordperfect',
|
||||
'wpl' => 'application/vnd.ms-wpl',
|
||||
'wps' => 'application/vnd.ms-works',
|
||||
'wq1' => 'application/x-lotus',
|
||||
'wqd' => 'application/vnd.wqd',
|
||||
'wri' => 'application/x-mswrite',
|
||||
'wrl' => 'model/vrml',
|
||||
'wrz' => 'x-world/x-vrml',
|
||||
'wsc' => 'text/scriplet',
|
||||
'wsdl' => 'application/wsdl+xml',
|
||||
'wspolicy' => 'application/wspolicy+xml',
|
||||
'wsrc' => 'application/x-wais-source',
|
||||
'wtb' => 'application/vnd.webturbo',
|
||||
'wtk' => 'application/x-wintalk',
|
||||
'wvx' => 'video/x-ms-wvx',
|
||||
'x-png' => 'image/png',
|
||||
'x3d' => 'application/vnd.hzn-3d-crossword',
|
||||
'xap' => 'application/x-silverlight-app',
|
||||
'xar' => 'application/vnd.xara',
|
||||
'xbap' => 'application/x-ms-xbap',
|
||||
'xbd' => 'application/vnd.fujixerox.docuworks.binder',
|
||||
'xbm' => 'image/x-xbitmap',
|
||||
'xdf' => 'application/xcap-diff+xml',
|
||||
'xdm' => 'application/vnd.syncml.dm+xml',
|
||||
'xdp' => 'application/vnd.adobe.xdp+xml',
|
||||
'xdr' => 'video/x-amt-demorun',
|
||||
'xdssc' => 'application/dssc+xml',
|
||||
'xdw' => 'application/vnd.fujixerox.docuworks',
|
||||
'xenc' => 'application/xenc+xml',
|
||||
'xer' => 'application/patch-ops-error+xml',
|
||||
'xfdf' => 'application/vnd.adobe.xfdf',
|
||||
'xfdl' => 'application/vnd.xfdl',
|
||||
'xgz' => 'xgl/drawing',
|
||||
'xhtml' => 'application/xhtml+xml',
|
||||
'xif' => 'image/vnd.xiff',
|
||||
'xl' => 'application/excel',
|
||||
'xla' => 'application/x-msexcel',
|
||||
'xlam' => 'application/vnd.ms-excel.addin.macroenabled.12',
|
||||
'xlb' => 'application/x-excel',
|
||||
'xlc' => 'application/x-excel',
|
||||
'xld' => 'application/x-excel',
|
||||
'xlk' => 'application/x-excel',
|
||||
'xll' => 'application/x-excel',
|
||||
'xlm' => 'application/x-excel',
|
||||
'xls' => 'application/vnd.ms-excel',
|
||||
'xlsb' => 'application/vnd.ms-excel.sheet.binary.macroenabled.12',
|
||||
'xlsm' => 'application/vnd.ms-excel.sheet.macroenabled.12',
|
||||
'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
|
||||
'xlt' => 'application/x-excel',
|
||||
'xltm' => 'application/vnd.ms-excel.template.macroenabled.12',
|
||||
'xltx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.template',
|
||||
'xlv' => 'application/x-excel',
|
||||
'xlw' => 'application/x-msexcel',
|
||||
'xm' => 'audio/xm',
|
||||
'xml' => 'application/xml',
|
||||
'xmz' => 'xgl/movie',
|
||||
'xo' => 'application/vnd.olpc-sugar',
|
||||
'xop' => 'application/xop+xml',
|
||||
'xpi' => 'application/x-xpinstall',
|
||||
'xpix' => 'application/x-vnd.ls-xpix',
|
||||
'xpm' => 'image/x-xpixmap',
|
||||
'xpr' => 'application/vnd.is-xpr',
|
||||
'xps' => 'application/vnd.ms-xpsdocument',
|
||||
'xpw' => 'application/vnd.intercon.formnet',
|
||||
'xslt' => 'application/xslt+xml',
|
||||
'xsm' => 'application/vnd.syncml+xml',
|
||||
'xspf' => 'application/xspf+xml',
|
||||
'xsr' => 'video/x-amt-showrun',
|
||||
'xul' => 'application/vnd.mozilla.xul+xml',
|
||||
'xwd' => 'image/x-xwindowdump',
|
||||
'xyz' => 'chemical/x-xyz',
|
||||
'yang' => 'application/yang',
|
||||
'yin' => 'application/yin+xml',
|
||||
'z' => 'application/x-compressed',
|
||||
'zaz' => 'application/vnd.zzazz.deck+xml',
|
||||
'zip' => 'application/zip',
|
||||
'zir' => 'application/vnd.zul',
|
||||
'zmm' => 'application/vnd.handheld-entertainment+xml',
|
||||
'zoo' => 'application/octet-stream',
|
||||
'zsh' => 'text/x-script.zsh',
|
||||
);
|
||||
|
||||
$dot = strpos($filename,'.');
|
||||
|
|
|
|||
|
|
@ -795,7 +795,7 @@ function item_photo_menu($item){
|
|||
if(($cid) && (! $item['self'])) {
|
||||
$poke_link = $a->get_baseurl($ssl_state) . '/poke/?f=&c=' . $cid;
|
||||
$contact_url = $a->get_baseurl($ssl_state) . '/contacts/' . $cid;
|
||||
$posts_link = $a->get_baseurl($ssl_state) . '/network/?cid=' . $cid;
|
||||
$posts_link = $a->get_baseurl($ssl_state) . '/network/0?nets=all&cid=' . $cid;
|
||||
|
||||
$clean_url = normalise_link($item['author-link']);
|
||||
|
||||
|
|
|
|||
|
|
@ -300,6 +300,38 @@ function notification($params) {
|
|||
return;
|
||||
}
|
||||
|
||||
// we seem to have a lot of duplicate comment notifications due to race conditions, mostly from forums
|
||||
// After we've stored everything, look again to see if there are any duplicates and if so remove them
|
||||
|
||||
$p = null;
|
||||
$p = q("select id from notify where ( type = %d or type = %d ) and link = '%s' and uid = %d order by id",
|
||||
intval(NOTIFY_TAGSELF),
|
||||
intval(NOTIFY_COMMENT),
|
||||
dbesc($params['link']),
|
||||
intval($params['uid'])
|
||||
);
|
||||
if($p && (count($p) > 1)) {
|
||||
for ($d = 1; $d < count($p); $d ++) {
|
||||
q("delete from notify where id = %d limit 1",
|
||||
intval($p[$d]['id'])
|
||||
);
|
||||
}
|
||||
|
||||
// only continue on if we stored the first one
|
||||
|
||||
if($notify_id != $p[0]['id']) {
|
||||
pop_lang();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
$itemlink = $a->get_baseurl() . '/notify/view/' . $notify_id;
|
||||
$msg = replace_macros($epreamble,array('$itemlink' => $itemlink));
|
||||
$r = q("update notify set msg = '%s' where id = %d and uid = %d limit 1",
|
||||
|
|
|
|||
|
|
@ -3594,7 +3594,7 @@ function fix_private_photos($s, $uid, $item = null, $cid = 0) {
|
|||
// Only embed locally hosted photos
|
||||
$replace = false;
|
||||
$i = basename($image);
|
||||
$i = str_replace(array('.jpg','.png'),array('',''),$i);
|
||||
$i = str_replace(array('.jpg','.png','.gif'),array('','',''),$i);
|
||||
$x = strpos($i,'-');
|
||||
|
||||
if($x) {
|
||||
|
|
@ -3605,7 +3605,7 @@ function fix_private_photos($s, $uid, $item = null, $cid = 0) {
|
|||
intval($res),
|
||||
intval($uid)
|
||||
);
|
||||
if(count($r)) {
|
||||
if($r) {
|
||||
|
||||
// Check to see if we should replace this photo link with an embedded image
|
||||
// 1. No need to do so if the photo is public
|
||||
|
|
|
|||
|
|
@ -162,6 +162,10 @@ function call_hooks($name, &$data = null) {
|
|||
|
||||
if((is_array($a->hooks)) && (array_key_exists($name,$a->hooks))) {
|
||||
foreach($a->hooks[$name] as $hook) {
|
||||
// Don't run a theme's hook if the user isn't using the theme
|
||||
if(strpos($hook[0], 'view/theme/') !== false && strpos($hook[0], 'view/theme/'.current_theme()) === false)
|
||||
continue;
|
||||
|
||||
@include_once($hook[0]);
|
||||
if(function_exists($hook[1])) {
|
||||
$func = $hook[1];
|
||||
|
|
@ -318,6 +322,42 @@ function get_theme_screenshot($theme) {
|
|||
return($a->get_baseurl() . '/images/blank.png');
|
||||
}
|
||||
|
||||
// install and uninstall theme
|
||||
if (! function_exists('uninstall_theme')){
|
||||
function uninstall_theme($theme){
|
||||
logger("Addons: uninstalling theme " . $theme);
|
||||
|
||||
@include_once("view/theme/$theme/theme.php");
|
||||
if(function_exists("{$theme}_uninstall")) {
|
||||
$func = "{$theme}_uninstall";
|
||||
$func();
|
||||
}
|
||||
}}
|
||||
|
||||
if (! function_exists('install_theme')){
|
||||
function install_theme($theme) {
|
||||
// silently fail if theme was removed
|
||||
|
||||
if(! file_exists("view/theme/$theme/theme.php"))
|
||||
return false;
|
||||
|
||||
logger("Addons: installing theme $theme");
|
||||
|
||||
@include_once("view/theme/$theme/theme.php");
|
||||
|
||||
if(function_exists("{$theme}_install")) {
|
||||
$func = "{$theme}_install";
|
||||
$func();
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
logger("Addons: FAILED installing theme $theme");
|
||||
return false;
|
||||
}
|
||||
|
||||
}}
|
||||
|
||||
|
||||
|
||||
// check service_class restrictions. If there are no service_classes defined, everything is allowed.
|
||||
// if $usage is supplied, we check against a maximum count and return true if the current usage is
|
||||
|
|
|
|||
|
|
@ -300,7 +300,7 @@ function item_permissions_sql($owner_id,$remote_verified = false,$groups = null)
|
|||
}
|
||||
|
||||
$sql = sprintf(
|
||||
" AND ( private = 0 OR ( private in (1,2) AND wall = 1 AND ( allow_cid = '' OR allow_cid REGEXP '<%d>' )
|
||||
/*" AND ( private = 0 OR ( private in (1,2) AND wall = 1 AND ( allow_cid = '' OR allow_cid REGEXP '<%d>' )
|
||||
AND ( deny_cid = '' OR NOT deny_cid REGEXP '<%d>' )
|
||||
AND ( allow_gid = '' OR allow_gid REGEXP '%s' )
|
||||
AND ( deny_gid = '' OR NOT deny_gid REGEXP '%s')))
|
||||
|
|
@ -309,6 +309,15 @@ function item_permissions_sql($owner_id,$remote_verified = false,$groups = null)
|
|||
intval($remote_user),
|
||||
dbesc($gs),
|
||||
dbesc($gs)
|
||||
*/
|
||||
" AND ( private = 0 OR ( private in (1,2) AND wall = 1
|
||||
AND ( NOT (deny_cid REGEXP '<%d>' OR deny_gid REGEXP '%s')
|
||||
AND ( allow_cid REGEXP '<%d>' OR allow_gid REGEXP '%s' OR ( allow_cid = '' AND allow_gid = '')))))
|
||||
",
|
||||
intval($remote_user),
|
||||
dbesc($gs),
|
||||
intval($remote_user),
|
||||
dbesc($gs)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -173,10 +173,11 @@ function autoname($len) {
|
|||
|
||||
if(! function_exists('xmlify')) {
|
||||
function xmlify($str) {
|
||||
$buffer = '';
|
||||
/* $buffer = '';
|
||||
|
||||
for($x = 0; $x < mb_strlen($str); $x ++) {
|
||||
$char = $str[$x];
|
||||
$len = mb_strlen($str);
|
||||
for($x = 0; $x < $len; $x ++) {
|
||||
$char = mb_substr($str,$x,1);
|
||||
|
||||
switch( $char ) {
|
||||
|
||||
|
|
@ -204,7 +205,14 @@ function xmlify($str) {
|
|||
$buffer .= $char;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}*/
|
||||
|
||||
$buffer = mb_ereg_replace("&", "&", $str);
|
||||
$buffer = mb_ereg_replace("'", "'", $buffer);
|
||||
$buffer = mb_ereg_replace("\"", """, $buffer);
|
||||
$buffer = mb_ereg_replace("<", "<", $buffer);
|
||||
$buffer = mb_ereg_replace(">", ">", $buffer);
|
||||
|
||||
$buffer = trim($buffer);
|
||||
return($buffer);
|
||||
}}
|
||||
|
|
@ -214,8 +222,13 @@ function xmlify($str) {
|
|||
|
||||
if(! function_exists('unxmlify')) {
|
||||
function unxmlify($s) {
|
||||
$ret = str_replace('&','&', $s);
|
||||
$ret = str_replace(array('<','>','"','''),array('<','>','"',"'"),$ret);
|
||||
// $ret = str_replace('&','&', $s);
|
||||
// $ret = str_replace(array('<','>','"','''),array('<','>','"',"'"),$ret);
|
||||
$ret = mb_ereg_replace('&', '&', $s);
|
||||
$ret = mb_ereg_replace(''', "'", $ret);
|
||||
$ret = mb_ereg_replace('"', '"', $ret);
|
||||
$ret = mb_ereg_replace('<', "<", $ret);
|
||||
$ret = mb_ereg_replace('>', ">", $ret);
|
||||
return $ret;
|
||||
}}
|
||||
|
||||
|
|
@ -1050,7 +1063,18 @@ function prepare_body($item,$attach = false) {
|
|||
$cnt = preg_match_all('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches, PREG_SET_ORDER);
|
||||
if($cnt) {
|
||||
foreach($matches as $mtch) {
|
||||
$icontype = strtolower(substr($mtch[3],0,strpos($mtch[3],'/')));
|
||||
$filetype = strtolower(substr( $mtch[3], 0, strpos($mtch[3],'/') ));
|
||||
if($filetype) {
|
||||
$filesubtype = strtolower(substr( $mtch[3], strpos($mtch[3],'/') + 1 ));
|
||||
$filesubtype = str_replace('.', '-', $filesubtype);
|
||||
}
|
||||
else {
|
||||
$filetype = 'unkn';
|
||||
$filesubtype = 'unkn';
|
||||
}
|
||||
|
||||
$icon = '<div class="attachtype icon s22 type-' . $filetype . ' subtype-' . $filesubtype . '"></div>';
|
||||
/*$icontype = strtolower(substr($mtch[3],0,strpos($mtch[3],'/')));
|
||||
switch($icontype) {
|
||||
case 'video':
|
||||
case 'audio':
|
||||
|
|
@ -1061,7 +1085,8 @@ function prepare_body($item,$attach = false) {
|
|||
default:
|
||||
$icon = '<div class="attachtype icon s22 type-unkn"></div>';
|
||||
break;
|
||||
}
|
||||
}*/
|
||||
|
||||
$title = ((strlen(trim($mtch[4]))) ? escape_tags(trim($mtch[4])) : escape_tags($mtch[1]));
|
||||
$title .= ' ' . $mtch[2] . ' ' . t('bytes');
|
||||
if((local_user() == $item['uid']) && ($item['contact-id'] != $a->contact['id']) && ($item['network'] == NETWORK_DFRN))
|
||||
|
|
|
|||
7
js/ajaxupload.min.js
vendored
13
js/country.min.js
vendored
6
js/fk.autocomplete.min.js
vendored
|
|
@ -1,5 +1 @@
|
|||
/**
|
||||
* Friendica people autocomplete
|
||||
*
|
||||
* require jQuery, jquery.textareas
|
||||
*/function ACPopup(e,t){this.idsel=-1,this.element=e,this.searchText="",this.ready=!0,this.kp_timer=!1,this.url=t;var n=530,r=130;if(typeof e.editorId=="undefined")style=$(e).offset(),n=$(e).width(),r=$(e).height();else{var i=e.getContainer();typeof i!="undefined"&&(style=$(i).offset(),n=$(i).width(),r=$(i).height())}style.top=style.top+r,style.width=n,style.position="absolute",style.display="none",this.cont=$("<div class='acpopup'></div>"),this.cont.css(style),$("body").append(this.cont)}function ContactAutocomplete(e,t){this.pattern=/@([^ \n]+)$/,this.popup=null;var n=this;$(e).unbind("keydown"),$(e).unbind("keyup"),$(e).keydown(function(e){n.popup!==null&&n.popup.onkey(e)}),$(e).keyup(function(e){cpos=$(this).getSelection(),cpos.start==cpos.end&&(match=$(this).val().substring(0,cpos.start).match(n.pattern),match!==null?(n.popup===null&&(n.popup=new ACPopup(this,t)),n.popup.ready&&match[1]!==n.popup.searchText&&n.popup.search(match[1]),n.popup.ready||(n.popup=null)):n.popup!==null&&(n.popup.close(),n.popup=null))})}ACPopup.prototype.close=function(){$(this.cont).remove(),this.ready=!1},ACPopup.prototype.search=function(e){var t=this;this.searchText=e,this.kp_timer&&clearTimeout(this.kp_timer),this.kp_timer=setTimeout(function(){t._search()},500)},ACPopup.prototype._search=function(){console.log("_search");var e=this,t={start:0,count:100,search:this.searchText,type:"c"};$.ajax({type:"POST",url:this.url,data:t,dataType:"json",success:function(t){e.cont.html(""),t.tot>0?(e.cont.show(),$(t.items).each(function(){html="<img src='{0}' height='16px' width='16px'>{1} ({2})".format(this.photo,this.name,this.nick),e.add(html,this.nick.replace(" ","")+"+"+this.id+" - "+this.link)})):e.cont.hide()}})},ACPopup.prototype.add=function(e,n){var r=this,i=$("<div class='acpopupitem' title='"+n+"'>"+e+"</div>");i.click(function(e){t=$(this).attr("title").replace(new RegExp(" - .*"),""),typeof r.element.container=="undefined"?(el=$(r.element),sel=el.getSelection(),sel.start=sel.start-r.searchText.length,el.setSelection(sel.start,sel.end).replaceSelectedText(t+" ").collapseSelection(!1),r.close()):(txt=tinyMCE.activeEditor.getContent(),newtxt=txt.replace(r.searchText,t+" "),tinyMCE.activeEditor.setContent(newtxt),tinyMCE.activeEditor.focus(),r.close())}),$(this.cont).append(i)},ACPopup.prototype.onkey=function(e){e.keyCode=="13"&&(this.idsel>-1?(this.cont.children()[this.idsel].click(),e.preventDefault()):this.close()),e.keyCode=="38"&&(cmax=this.cont.children().size()-1,this.idsel--,this.idsel<0&&(this.idsel=cmax),e.preventDefault());if(e.keyCode=="40"||e.keyCode=="9")cmax=this.cont.children().size()-1,this.idsel++,this.idsel>cmax&&(this.idsel=0),e.preventDefault();if(e.keyCode=="38"||e.keyCode=="40"||e.keyCode=="9")this.cont.children().removeClass("selected"),$(this.cont.children()[this.idsel]).addClass("selected");e.keyCode=="27"&&this.close()},function(e){e.fn.contact_autocomplete=function(e){this.each(function(){new ContactAutocomplete(this,e)})}}(jQuery);
|
||||
function ACPopup(elm,backend_url){this.idsel=-1;this.element=elm;this.searchText="";this.ready=true;this.kp_timer=false;this.url=backend_url;var w=530;var h=130;if(typeof elm.editorId=="undefined"){style=$(elm).offset();w=$(elm).width();h=$(elm).height()}else{var container=elm.getContainer();if(typeof container!="undefined"){style=$(container).offset();w=$(container).width();h=$(container).height()}}style.top=style.top+h;style.width=w;style.position="absolute";style.display="none";this.cont=$("<div class='acpopup'></div>");this.cont.css(style);$("body").append(this.cont)}ACPopup.prototype.close=function(){$(this.cont).remove();this.ready=false};ACPopup.prototype.search=function(text){var that=this;this.searchText=text;if(this.kp_timer)clearTimeout(this.kp_timer);this.kp_timer=setTimeout(function(){that._search()},500)};ACPopup.prototype._search=function(){console.log("_search");var that=this;var postdata={start:0,count:100,search:this.searchText,type:"c"};$.ajax({type:"POST",url:this.url,data:postdata,dataType:"json",success:function(data){that.cont.html("");if(data.tot>0){that.cont.show();$(data.items).each(function(){html="<img src='{0}' height='16px' width='16px'>{1} ({2})".format(this.photo,this.name,this.nick);that.add(html,this.nick.replace(" ","")+"+"+this.id+" - "+this.link)})}else{that.cont.hide()}}})};ACPopup.prototype.add=function(label,value){var that=this;var elm=$("<div class='acpopupitem' title='"+value+"'>"+label+"</div>");elm.click(function(e){t=$(this).attr("title").replace(new RegExp(" - .*"),"");if(typeof that.element.container==="undefined"){el=$(that.element);sel=el.getSelection();sel.start=sel.start-that.searchText.length;el.setSelection(sel.start,sel.end).replaceSelectedText(t+" ").collapseSelection(false);that.close()}else{txt=tinyMCE.activeEditor.getContent();newtxt=txt.replace("@"+that.searchText,"@"+t+" ");tinyMCE.activeEditor.setContent(newtxt);tinyMCE.activeEditor.focus();that.close()}});$(this.cont).append(elm)};ACPopup.prototype.onkey=function(event){if(event.keyCode=="13"){if(this.idsel>-1){this.cont.children()[this.idsel].click();event.preventDefault()}else this.close()}if(event.keyCode=="38"){cmax=this.cont.children().size()-1;this.idsel--;if(this.idsel<0)this.idsel=cmax;event.preventDefault()}if(event.keyCode=="40"||event.keyCode=="9"){cmax=this.cont.children().size()-1;this.idsel++;if(this.idsel>cmax)this.idsel=0;event.preventDefault()}if(event.keyCode=="38"||event.keyCode=="40"||event.keyCode=="9"){this.cont.children().removeClass("selected");$(this.cont.children()[this.idsel]).addClass("selected")}if(event.keyCode=="27"){this.close()}};function ContactAutocomplete(element,backend_url){this.pattern=/@([^ \n]+)$/;this.popup=null;var that=this;$(element).unbind("keydown");$(element).unbind("keyup");$(element).keydown(function(event){if(that.popup!==null)that.popup.onkey(event)});$(element).keyup(function(event){cpos=$(this).getSelection();if(cpos.start==cpos.end){match=$(this).val().substring(0,cpos.start).match(that.pattern);if(match!==null){if(that.popup===null){that.popup=new ACPopup(this,backend_url)}if(that.popup.ready&&match[1]!==that.popup.searchText)that.popup.search(match[1]);if(!that.popup.ready)that.popup=null}else{if(that.popup!==null){that.popup.close();that.popup=null}}}})}(function($){$.fn.contact_autocomplete=function(backend_url){this.each(function(){new ContactAutocomplete(this,backend_url)})}})(jQuery);
|
||||
7
js/jquery.htmlstream.min.js
vendored
|
|
@ -1,6 +1 @@
|
|||
/* jQuery ajax stream plugin
|
||||
* Version 0.1
|
||||
* Copyright (C) 2009 Chris Tarquini
|
||||
* Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License (http://creativecommons.org/licenses/by-sa/3.0/)
|
||||
* Permissions beyond the scope of this license may be available by contacting petros000[at]hotmail.com.
|
||||
*/(function(e){var t=e.ajax,n=e.get,r=e.post,i=!0;e.ajaxSetup({stream:!1,pollInterval:500}),e.enableAjaxStream=function(a){typeof a=="undefined"&&(a=!i),a?(e.ajax=s,e.get=o,e.post=u,i=!0):(e.ajax=t,e.get=n,e.post=r,i=!1)};var s=e.ajax=function(n){n=jQuery.extend(!0,n,jQuery.extend(!0,{},jQuery.ajaxSettings,n));if(n.stream){var r=0,i=0,s=null,o=0,u=!1,a=function(e){s=e,l()},f=function(){c("stream")},l=function(){u||(r=setTimeout(f,n.pollInterval))},c=function(t){typeof t=="undefined"&&(t="stream");if(s.status<3)return;var r=s.responseText;if(t=="stream"){if(r.length<=o){l();return}lastlength=r.length;if(i==r.length){l();return}}var u=r.substr(i);i=r.length,e.isFunction(n.OnDataRecieved)&&n.OnDataRecieved(u,t,s.responseText,s),s.status!=4&&l()},h=function(e,t){clearTimeout(r),u=!0,c(t)};if(e.isFunction(n.success)){var p=n.success;n.success=function(e,t){h(e,t),p(e,t)}}else n.success=h;if(e.isFunction(n.beforeSend)){var d=n.beforeSend;n.beforeSend=function(e){d(e),a(e)}}else n.beforeSend=a}t(n)},o=e.get=function(t,n,r,i,s){if(e.isFunction(n)){var o=r;r=n,e.isFunction(o)&&(s=o),n=null}e.isFunction(i)&&(s=i,i=undefined);var u=e.isFunction(s);return jQuery.ajax({type:"GET",url:t,data:n,success:r,dataType:i,stream:u,OnDataRecieved:s})},u=e.post=function(t,n,r,i,s){if(e.isFunction(n)){var o=r;r=n}e.isFunction(i)&&(s=i,i=undefined);var u=e.isFunction(s);return jQuery.ajax({type:"POST",url:t,data:n,success:r,dataType:i,stream:u,OnDataRecieved:s})}})(jQuery);
|
||||
(function($){var ajax_old=$.ajax;var get_old=$.get;var post_old=$.post;var active=true;$.ajaxSetup({stream:false,pollInterval:500});$.enableAjaxStream=function(enable){if(typeof enable=="undefined")enable=!active;if(!enable){$.ajax=ajax_old;$.get=get_old;$.post=post_old;active=false}else{$.ajax=ajax_stream;$.get=ajax_get_stream;$.post=ajax_post_stream;active=true}};var ajax_stream=$.ajax=function(options){options=jQuery.extend(true,options,jQuery.extend(true,{},jQuery.ajaxSettings,options));if(options.stream){var timer=0;var offset=0;var xmlhttp=null;var lastlen=0;var done=false;var hook=function(xhr){xmlhttp=xhr;checkagain()};var fix=function(){check("stream")};var checkagain=function(){if(!done)timer=setTimeout(fix,options.pollInterval)};var check=function(status){if(typeof status=="undefined")status="stream";if(xmlhttp.status<3)return;var text=xmlhttp.responseText;if(status=="stream"){if(text.length<=lastlen){checkagain();return}lastlength=text.length;if(offset==text.length){checkagain();return}}var pkt=text.substr(offset);offset=text.length;if($.isFunction(options.OnDataRecieved)){options.OnDataRecieved(pkt,status,xmlhttp.responseText,xmlhttp)}if(xmlhttp.status!=4)checkagain()};var complete=function(xhr,s){clearTimeout(timer);done=true;check(s)};if($.isFunction(options.success)){var oc=options.success;options.success=function(xhr,s){complete(xhr,s);oc(xhr,s)}}else options.success=complete;if($.isFunction(options.beforeSend)){var obs=options.beforeSend;options.beforeSend=function(xhr){obs(xhr);hook(xhr)}}else options.beforeSend=hook}ajax_old(options)};var ajax_get_stream=$.get=function(url,data,callback,type,stream){if($.isFunction(data)){var orgcb=callback;callback=data;if($.isFunction(orgcb)){stream=orgcb}data=null}if($.isFunction(type)){stream=type;type=undefined}var dostream=$.isFunction(stream);return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type,stream:dostream,OnDataRecieved:stream})};var ajax_post_stream=$.post=function(url,data,callback,type,stream){if($.isFunction(data)){var orgcb=callback;callback=data}if($.isFunction(type)){stream=type;type=undefined}var dostream=$.isFunction(stream);return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type,stream:dostream,OnDataRecieved:stream})}})(jQuery);
|
||||
|
|
@ -103,9 +103,13 @@
|
|||
});
|
||||
|
||||
// fancyboxes
|
||||
$("a.popupbox").fancybox({
|
||||
/*$("a.popupbox").fancybox({
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
});*/
|
||||
$("a.popupbox").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'elastic'
|
||||
});
|
||||
|
||||
|
||||
|
|
|
|||
1
js/main.min.js
vendored
Normal file
7
js/webtoolkit.base64.min.js
vendored
|
|
@ -1,6 +1 @@
|
|||
/**
|
||||
*
|
||||
* Base64 encode / decode
|
||||
* http://www.webtoolkit.info/
|
||||
*
|
||||
**/var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(e){var t="",n,r,i,s,o,u,a,f=0;e=Base64._utf8_encode(e);while(f<e.length)n=e.charCodeAt(f++),r=e.charCodeAt(f++),i=e.charCodeAt(f++),s=n>>2,o=(n&3)<<4|r>>4,u=(r&15)<<2|i>>6,a=i&63,isNaN(r)?u=a=64:isNaN(i)&&(a=64),t=t+this._keyStr.charAt(s)+this._keyStr.charAt(o)+this._keyStr.charAt(u)+this._keyStr.charAt(a);return t},decode:function(e){var t="",n,r,i,s,o,u,a,f=0;e=e.replace(/[^A-Za-z0-9\+\/\=]/g,"");while(f<e.length)s=this._keyStr.indexOf(e.charAt(f++)),o=this._keyStr.indexOf(e.charAt(f++)),u=this._keyStr.indexOf(e.charAt(f++)),a=this._keyStr.indexOf(e.charAt(f++)),n=s<<2|o>>4,r=(o&15)<<4|u>>2,i=(u&3)<<6|a,t+=String.fromCharCode(n),u!=64&&(t+=String.fromCharCode(r)),a!=64&&(t+=String.fromCharCode(i));return t=Base64._utf8_decode(t),t},_utf8_encode:function(e){e=e.replace(/\r\n/g,"\n");var t="";for(var n=0;n<e.length;n++){var r=e.charCodeAt(n);r<128?t+=String.fromCharCode(r):r>127&&r<2048?(t+=String.fromCharCode(r>>6|192),t+=String.fromCharCode(r&63|128)):(t+=String.fromCharCode(r>>12|224),t+=String.fromCharCode(r>>6&63|128),t+=String.fromCharCode(r&63|128))}return t},_utf8_decode:function(e){var t="",n=0,r=c1=c2=0;while(n<e.length)r=e.charCodeAt(n),r<128?(t+=String.fromCharCode(r),n++):r>191&&r<224?(c2=e.charCodeAt(n+1),t+=String.fromCharCode((r&31)<<6|c2&63),n+=2):(c2=e.charCodeAt(n+1),c3=e.charCodeAt(n+2),t+=String.fromCharCode((r&15)<<12|(c2&63)<<6|c3&63),n+=3);return t}};
|
||||
var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(input){var output="";var chr1,chr2,chr3,enc1,enc2,enc3,enc4;var i=0;input=Base64._utf8_encode(input);while(i<input.length){chr1=input.charCodeAt(i++);chr2=input.charCodeAt(i++);chr3=input.charCodeAt(i++);enc1=chr1>>2;enc2=(chr1&3)<<4|chr2>>4;enc3=(chr2&15)<<2|chr3>>6;enc4=chr3&63;if(isNaN(chr2)){enc3=enc4=64}else if(isNaN(chr3)){enc4=64}output=output+this._keyStr.charAt(enc1)+this._keyStr.charAt(enc2)+this._keyStr.charAt(enc3)+this._keyStr.charAt(enc4)}return output},decode:function(input){var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");while(i<input.length){enc1=this._keyStr.indexOf(input.charAt(i++));enc2=this._keyStr.indexOf(input.charAt(i++));enc3=this._keyStr.indexOf(input.charAt(i++));enc4=this._keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!=64){output=output+String.fromCharCode(chr2)}if(enc4!=64){output=output+String.fromCharCode(chr3)}}output=Base64._utf8_decode(output);return output},_utf8_encode:function(string){string=string.replace(/\r\n/g,"\n");var utftext="";for(var n=0;n<string.length;n++){var c=string.charCodeAt(n);if(c<128){utftext+=String.fromCharCode(c)}else if(c>127&&c<2048){utftext+=String.fromCharCode(c>>6|192);utftext+=String.fromCharCode(c&63|128)}else{utftext+=String.fromCharCode(c>>12|224);utftext+=String.fromCharCode(c>>6&63|128);utftext+=String.fromCharCode(c&63|128)}}return utftext},_utf8_decode:function(utftext){var string="";var i=0;var c=c1=c2=0;while(i<utftext.length){c=utftext.charCodeAt(i);if(c<128){string+=String.fromCharCode(c);i++}else if(c>191&&c<224){c2=utftext.charCodeAt(i+1);string+=String.fromCharCode((c&31)<<6|c2&63);i+=2}else{c2=utftext.charCodeAt(i+1);c3=utftext.charCodeAt(i+2);string+=String.fromCharCode((c&15)<<12|(c2&63)<<6|c3&63);i+=3}}return string}};
|
||||
376
library/colorbox/README.md
Normal file
|
|
@ -0,0 +1,376 @@
|
|||
## About ColorBox:
|
||||
A customizable lightbox plugin for jQuery. See the [project page](http://jacklmoore.com/colorbox/) for documentation and a demonstration, and the [FAQ](http://jacklmoore.com/colorbox/faq/) for solutions and examples to common issues. Released under the [MIT license](http://www.opensource.org/licenses/mit-license.php).
|
||||
|
||||
## Translations Welcome
|
||||
Send me your language configuration files. See /i18n/jquery.colorbox-de.js as an example.
|
||||
|
||||
## Changelog:
|
||||
|
||||
### Version 1.3.32 - 2013/1/31
|
||||
|
||||
* Improved internal event subscribing & fixed event bug introduced in v1.3.21
|
||||
|
||||
### Version 1.3.31 - 2013/1/28
|
||||
|
||||
* Fixed a size-calculation bug introduced in the previous commit.
|
||||
|
||||
### Version 1.3.30 - 2013/1/25
|
||||
|
||||
* Delayed border-width calculations until after opening, to avoid a bug in FF when using ColorBox in a hidden iframe.
|
||||
|
||||
### Version 1.3.29 - 2013/1/24
|
||||
|
||||
* Fixes bug with bubbling delegated events, introduced in the previous commit.
|
||||
|
||||
### Version 1.3.28 - 2013/1/24
|
||||
|
||||
* Fixed compatibility issue with old versions of jQuery (1.3.2-1.4.2)
|
||||
|
||||
### Version 1.3.27 - 2013/1/23
|
||||
|
||||
* Added className property.
|
||||
|
||||
### Version 1.3.26 - 2013/1/23
|
||||
|
||||
* Minor bugfix: clear the onload event handler after photo has loaded.
|
||||
|
||||
### Version 1.3.25 - 2013/1/23
|
||||
|
||||
* Removed grunt file & added Bower component.json.
|
||||
|
||||
### Version 1.3.24 - 2013/1/22
|
||||
|
||||
* Added generated files (jquery.colorbox.js / jquery.colorbox-min.js) back to the repository.
|
||||
|
||||
### Version 1.3.23 - 2013/1/18
|
||||
|
||||
* Minor bugfix for calling ColorBox on empty jQuery collections without a selector.
|
||||
|
||||
### Version 1.3.22 - 2013/1/17
|
||||
|
||||
* Recommit for plugins.jquery.com
|
||||
|
||||
### Version 1.3.21 - 2013/1/15
|
||||
Files Changed: *.js
|
||||
|
||||
* Fixed compatability issues with jQuery 1.9
|
||||
|
||||
### Version 1.3.20 - August 15 2012
|
||||
Files Changed:jquery.colorbox.js
|
||||
|
||||
* Added temporary workaround for jQuery-UI 1.8 bug (http://bugs.jquery.com/ticket/12273)
|
||||
* Added *.jpe extension to the list of image types.
|
||||
|
||||
### Version 1.3.19 - December 08 2011
|
||||
Files Changed:jquery.colorbox.js, colorbox.css (all)
|
||||
|
||||
* Fixed bug related to using the 'fixed' property.
|
||||
* Optimized the setup procedure to be more efficient.
|
||||
* Removed $.colorbox.init() as it will no longer be needed (will self-init when called).
|
||||
* Removed use of $.browser.
|
||||
|
||||
### Version 1.3.18 - October 07 2011
|
||||
Files Changed:jquery.colorbox.js/jquery.colorbox-min.js, colorbox.css (all) and example 1's controls.png
|
||||
|
||||
* Fixed a regression where Flash content displayed in ColorBox would be reloaded if the browser window was resized.
|
||||
* Added safety check to make sure that ColorBox's markup is only added to the DOM a single time, even if $.colorbox.init() is called multiple times. This will allow site owners to manually initialize ColorBox if they need it before the DOM has finished loading.
|
||||
* Updated the example index.html files to be HTML5 compliant.
|
||||
* Changed the slideshow behavior so that it immediately moves to the next slide when the slideshow is started.
|
||||
* Minor regex bugfix to allow automatic detection of image URLs that include fragments.
|
||||
|
||||
### Version 1.3.17 - May 11 2011
|
||||
Files Changed:jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Added properties "top", "bottom", "left" and "right" to specify a position relative to the viewport, rather than using the default centering.
|
||||
* Added property "data" to specify GET or POST data when using Ajax. ColorBox's ajax functionality is handled by jQuery's .load() method, so the data property works the same way as it does with .load().
|
||||
* Added property "fixed" which can provide fixed positioning for ColorBox, rather than absolute positioning. This will allow ColorBox to remain in a fixed position within the visitors viewport, despite scrolling. IE6 support for this was not added, it will continue to use the default absolute positioning.
|
||||
* Fixed ClearType problem with IE7.
|
||||
* Minor fixes.
|
||||
|
||||
### Version 1.3.16 - March 01 2011
|
||||
Files Changed:jquery.colorbox.js/jquery.colorbox-min.js, colorbox.css (all) and example 4 background png files
|
||||
|
||||
* Better IE related transparency workarounds. IE7 and up now uses the same background image sprite as other browsers.
|
||||
* Added error handling for broken image links. A message will be displayed telling the user that the image could not be loaded.
|
||||
* Added new property: 'fastIframe' and set it to true by default. Setting to fastIframe:false will delay the loading graphic removal and onComplete event until iframe has completely loaded.
|
||||
* Ability to redefine $.colorbox.close (or prev, or next) at any time.
|
||||
|
||||
### Version 1.3.15 - October 27 2010
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Minor fixes for specific cases.
|
||||
|
||||
### Version 1.3.14 - October 27 2010
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* In IE6, closing an iframe when using HTTPS no longer generates a security warning.
|
||||
|
||||
### Version 1.3.13 - October 22 2010
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Changed the index.html example files to use YouTube's new embedded link format.
|
||||
* By default, ColorBox returns focus to the element it was launched from once it closes. This can now be disabled by setting the 'returnFocus' property to false. Focus was causing problems for some users who had their anchor elements inside animated containers.
|
||||
* Minor bug fix involved in using a combination of slideshow and non-slideshow content.
|
||||
|
||||
### Version 1.3.12 - October 20 2010
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Minor bug fix involved in preloading images when using a function as a value for the href property.
|
||||
|
||||
### Version 1.3.11 - October 19 2010
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Fixed the slideshow functionality that broke with 1.3.10
|
||||
* The slideshow now respects the loop property.
|
||||
|
||||
### Version 1.3.10 - October 16 2010
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Fixed compatibility with jQuery 1.4.3
|
||||
* The 'open' property now accepts a function as a value, like all of the other properties.
|
||||
* Preloading now loads the correct href for images when using a dynamic (function) value for the href property.
|
||||
* Fixed bug in Safari 3 for Win where ColorBox centered on the document, rather than the visitor's viewport.
|
||||
* May have fixed an issue in Opera 10.6+ where ColorBox would rarely/randomly freeze up while switching between photos in a group.
|
||||
* Some functionality better encapsulated & minor performance improvements.
|
||||
|
||||
### Version 1.3.9 - July 7 2010
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js/ all colorbox.css (the core styles)
|
||||
|
||||
* Fixed a problem where iframed youtube videos would cause a security alert in IE.
|
||||
* More code is event driven now, making the source easier to grasp.
|
||||
* Removed some unnecessary style from the core CSS.
|
||||
|
||||
### Version 1.3.8 - June 21 2010
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Fixed a bug in Chrome where it would sometimes render photos at 0 by 0 width and height (behavior introduced in recent update to Chrome).
|
||||
* Fixed a bug where the onClosed callback would fire twice (only affected 1.3.7).
|
||||
* Fixed a bug in IE7 that existed with some iframed websites that use JS to reposition the viewport caused ColorBox to move out of position.
|
||||
* Abstracted the identifiers (HTML ids & classes, and JS plugin name, method, and events) so that the plugin can be easily rebranded.
|
||||
* Small changes to improve either code readability or compression.
|
||||
|
||||
### Version 1.3.7 - June 13 2010
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js/index.html
|
||||
|
||||
* $.colorbox can now be used for direct calls and accessing public methods. Example: $.colorbox.close();
|
||||
* Resize now accepts 'width', 'innerWidth', 'height' and 'innerHeight'. Example: $.colorbox.resize({width:"100%"})
|
||||
* Added option (loop:false) to disable looping in a group.
|
||||
* Added options (escKey:false, arrowKey:false) to disable esc-key and arrow-key bindings.
|
||||
* Added method for removing ColorBox from a document: $.colorbox.remove();
|
||||
* Fixed a bug where iframed URLs would be truncated if they contained an unencoded apostrophe.
|
||||
* Now uses the exact href specified on an anchor, rather than the version returned by 'this.href'. This was causing "#example" to be normalized to "http://domain/#example" which interfered with how some users were setting up links to inline content.
|
||||
* Changed example documents over to HTML5.
|
||||
|
||||
### Version 1.3.6 - Jan 13 2010
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Small change to make ColorBox compatible with jQuery 1.4
|
||||
|
||||
### Version 1.3.5 - December 15 2009
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Fixed a bug introduced in 1.3.4 with IE7's display of example 2 and 3, and auto-width in Opera.
|
||||
* Fixed a bug introduced in 1.3.4 where colorbox could not be launched by triggering an element's click event through JavaScript.
|
||||
* Minor refinements.
|
||||
|
||||
### Version 1.3.4 - December 5 2009
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Event delegation is now used for elements that ColorBox is assigned to, rather than individual click events.
|
||||
* Additional callbacks have been added to represent other stages of ColorBox's lifecycle. Available callbacks, in order of their execution: onOpen, onLoad, onComplete, onCleanup, onClosed These take place at the same time as the event hooks, but will be better suited than the hooks for targeting specific instances of ColorBox.
|
||||
* Ajax content is now immediately added to the DOM to be more compatible if that content contains script tags.
|
||||
* Focus is now returned to the calling element on closing.
|
||||
* Fixed a bug where maxHeight and maxWidth did not work for non-photo content.
|
||||
* Direct calls no longer need 'open:true', it is assumed. Example: `$.fn.colorbox({html:'<p>Hi</p>'});`
|
||||
|
||||
### Version 1.3.3 - November 7 2009
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Changed $.fn.colorbox.element() to return a jQuery object rather the DOM element.
|
||||
* jQuery.colorbox-min.js is compressed with Google's Closure Compiler rather than YUI Compressor.
|
||||
|
||||
### Version 1.3.2 - October 27 2009
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Added 'innerWidth' and 'innerHeight' options to allow people to easily set the size dimensions for ColorBox, without having to anticipate the size of the borders and buttons.
|
||||
* Renamed 'scrollbars' option to 'scrolling' to be in keeping with the existing HTML attribute. The option now also applies to iframes.
|
||||
* Bug fix: In Safari, positioning occassionally incorrect when using '100%' dimensions.
|
||||
* Bug fix: In IE6, the background overlay is briefly not full size when first viewing.
|
||||
* Bug fix: In Firefox, opening ColorBox causes a split second shift with a small minority of webpage layouts.
|
||||
* Simplified code in a few areas.
|
||||
|
||||
### Version 1.3.1 - September 16 2009
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js/colorbox.css/colorbox-ie.css(removed)
|
||||
|
||||
* Removed the IE-only stylesheets and conditional comments for example styles 1 & 4. All CSS is handled by a single CSS file for all examples.
|
||||
* Removed user-agent sniffing from the js and replaced it with feature detection. This will allow correct rendering for visitors masking their agent type.
|
||||
|
||||
### Version 1.3.0 - September 15 2009
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js/colorbox.css
|
||||
|
||||
* Added $.fn.colorbox.resize() method to allow ColorBox to resize it's height if it's contents change.
|
||||
* Added 'scrollbars' option to allow users to turn off scrollbars when using the resize() method.
|
||||
* Renamed the 'resize' option to be less ambiguous. It's now 'scalePhotos'.
|
||||
* Renamed the 'cbox_close' event to be less ambiguous. It's now 'cbox_cleanup'. It is the first thing to happen in the close method while the 'cbox_closed' event is the last to happen.
|
||||
* Fixed a bug with the slideshow mouseover graphics that appeared after ColorBox is opened a 2nd time.
|
||||
* Fixed a bug where ClearType may not work in IE6&7 if using the fade transition.
|
||||
* Minor code optimizations to increase compression.
|
||||
|
||||
### Version 1.2.9 - August 7 2009
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Minor change to enable use with $.getScript();
|
||||
* Minor change to the timing of the 'cbox_load' event so that it is more useful.
|
||||
* Added a direct link to a YouTube video to the examples.
|
||||
|
||||
### Version 1.2.8 - August 5 2009
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Fixed a bug with the overlay in IE6
|
||||
* Fixed a bug where left & right keypress events might be prematurely unbound.
|
||||
|
||||
### Version 1.2.7 - July 31 2009
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js, example stylesheets and background images (core styles have not changed and the updates will not affect existing user themes / old example themes)
|
||||
|
||||
* Code cleanup and reduction, better organization and documentation in the full source.
|
||||
* Added ability to use functions in place of static values for ColorBox's options (thanks Ken!).
|
||||
* Added an option for straight HTML. Example: `$.fn.colorbox({html:'<p>Howdy</p>', open:true})`
|
||||
* Added an event for the beginning of the closing process. This is in addition to the event that already existed for when ColorBox had completely closed. 'cbox_close' and 'cbox_closed' respectively.
|
||||
* Fixed a minor bug in IE6 that would cause a brief content shift in the parent document when opening ColorBox.
|
||||
* Fixed a minor bug in IE6 that would reveal select elements that had a hidden visibility after closing ColorBox.
|
||||
* The 'esc' key is unbound now when ColorBox is not open, to avoid any potential conflicts.
|
||||
* Used background sprites for examples 1 & 4. Put IE-only (non-sprite) background images in a separate folder.
|
||||
* Example themes 1, 3, & 4 received slight visual tweaks.
|
||||
* Optimized pngs for smaller file size.
|
||||
* Added slices, grid, and correct sizing to the Adobe Illustrator file, all theme files are now export ready!
|
||||
|
||||
### Version 1.2.6 - July 15 2009
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Fixed a bug with fixed width/height images in Opera 9.64.
|
||||
* Fixed a bug with trying to set a value for rel during a direct call to ColorBox. Example: `$.fn.colorbox({rel:'foo', open:true});`
|
||||
* Changed how href/rel/title settings are determined to avoid users having to manually update ColorBox settings if they use JavaScript to update any of those attributes, after ColorBox has been defined.
|
||||
* Fixed a FF3 bug where the back button was disabled after closing an iframe.
|
||||
|
||||
### Version 1.2.5 - June 23 2009
|
||||
Files Changed: jquery.colorbox.js/jquery.colorbox-min.js
|
||||
|
||||
* Changed the point at which iframe srcs are set (to eliminate the need to refresh the iframe once it has been added to the DOM).
|
||||
* Removed unnecessary return values for a very slight code reduction.
|
||||
|
||||
### Version 1.2.4 - June 9 2009
|
||||
Files Changed: jquery.colorbox.js, jquery.colorbox-min.js
|
||||
|
||||
* Fixed an issue where ColorBox may not close completely if it is closed during a transition animation.
|
||||
* Minor code reduction.
|
||||
|
||||
### Version 1.2.3 - June 4 2009
|
||||
* Fixed a png transparency stacking issue in IE.
|
||||
* More accurate Ajax auto-sizing if the user was depending on the #cboxLoadedContent ID for CSS styling.
|
||||
* Added a public function for returning the current html element that ColorBox is associated with. Example use: var that = $.fn.colorbox.element();
|
||||
* Added bicubic scaling for resized images in the original IE7.
|
||||
* Removed the IE6 stylesheet and png files from Example 3. It now uses the same png file for the controls that the rest of the browsers use (an alpha transparency PNG8). This example now only has 2 graphics files and 1 stylesheet.
|
||||
|
||||
### Version 1.2.2 - May 28 2009
|
||||
* Fixed an issue with the 'resize' option.
|
||||
|
||||
### Version 1.2.1 - May 28 2009
|
||||
* Note: If you are upgrading, update your jquery.colorbox.js and colorbox.css files.
|
||||
* Added photo resizing.
|
||||
* Added a maximum width and maximum height. Example: {height:800, maxHeight:'100%'}, would allow the box to be a maximum potential height of 800px, instead of a fixed height of 800px. With maxHeight of 100% the height of ColorBox cannot exceed the height of the browser window.
|
||||
* Added 'rel' setting to add the ability to set an alternative rel for any ColorBox call. This allows the user to group any combination of elements together for a gallery, or to override an existing rel. attribute so those element are not grouped together, without having to alter their rel in the HTML.
|
||||
* Added a 'photo' setting to force ColorBox to display a link as a photo. Use this when automatic photo detection fails (such as using a url like 'photo.php' instead of 'photo.jpg', 'photo.jpg#1', or 'photo.jpg?pic=1')
|
||||
* Removed the need to ever create disposable elements to call colorbox on. ColorBox can now be called directly, without being associated with any existing element, by using the following format:
|
||||
`$.fn.colorbox({open:true, href:'yourLink.xxx'});`
|
||||
* ColorBox settings are now persistent and unique for each element. This allows for extremely flexible options for individual elements. You could use this to create a gallery in which each page in the gallery has different settings. One could be a photo with a fade transition, next could be an inline element with an elastic transition with a set width and height, etc.
|
||||
* For user callbacks, 'this' now refers to the element colorbox was opened from.
|
||||
* Fixed a minor grouping issue with IE6, when transition type is set to 'none'.
|
||||
* Added an Adobe Illustrator file that contains the borders and buttons used in the various examples.
|
||||
|
||||
### Version 1.2 - May 13 2009
|
||||
* Added a slideshow feature.
|
||||
* Added re-positioning on browser resize. If the browser is resized, ColorBox will recenter itself onscreen.
|
||||
* Added hooks for key events: cbox_open, cbox_load, cbox_complete, cbox_closed.
|
||||
* Fixed an IE transparency-stacking problem, where transparent PNGs would show through to the background overlay.
|
||||
* Fixed an IE iframe issue where the ifame might shift up and to the left under certain circumstances.
|
||||
* Fixed an IE6 bug where the loading overlay was not at full height.
|
||||
* Removed the delay in switching between same-sized gallery content when using transitions.
|
||||
* Changed how iframes are loaded to make it more compatible with iframed pages that use DOM dependent JavaScript.
|
||||
* Changed how the JS is structured to be better organized and increase compression. Increased documentation.
|
||||
* Changed CSS :hover states to a .hover class. This sidesteps a minor IE8 bug with css hover states and allows easier access to hover state user styles from the JavaScript.
|
||||
* Changed: elements added to the DOM have new ID's. The naming is more consistent and less likely to cause conflicts with existing website stylesheets. All stylesheets have been updated.
|
||||
* Changed the behavior for prev/next links so that ColorBox does not get hung up on broken links. A visitor can now skip through broken or long-loading links by clicking prev/next buttons.
|
||||
* Changed the naming of variables in the parameter map to be more concise and intuitive.
|
||||
* Removed colorbox.css. Combined the colorbox.css styles with jquery.colorbox.js: the css file was not large enough to warrant being a separate file.
|
||||
|
||||
### Version 1.1.6 - April 28 2009
|
||||
* Prevented the default action of the next & previous anchors and the left and right keys for gallery mode.
|
||||
* Fixed a bug where the title element was being added back to the DOM when closing ColorBox while using inline content.
|
||||
* Fixed a bug where IE7 would crash for example 2.
|
||||
* Smaller filesize: removed a small amount of unused code and rewrote the HTML injection with less syntax.
|
||||
* Added a public method for closing ColorBox: $.fn.colorbox.close(). This will allow iframe users to add an event to close ColorBox without having to create an additional function.
|
||||
|
||||
### Version 1.1.5 - April 11 2009
|
||||
* Fixed minor issues with exiting ColorBox.
|
||||
|
||||
### Version 1.1.4 - April 08 2009
|
||||
* Fixed a bug in the fade transition where ColorBox not close completely if instructed to close during the fade-in portion of the transition.
|
||||
|
||||
### Version 1.1.3 - April 06 2009
|
||||
* Fixed an IE6&7 issue with using ColorBox to display animated GIFs.
|
||||
|
||||
### Version 1.1.2 - April 05 2009
|
||||
* Added ability to change content when ColorBox is already open.
|
||||
* Added vertical photo centering now works for all browsers (this feature previously excluded IE6&7).
|
||||
* Added namespacing to the esc-key keydown event for people who want to disable it: "keydown.colorClose"
|
||||
* Added 'title' setting to add the ability to set an alternative title for any ColorBox call.
|
||||
* Fixed rollover navigation issue with IE8. (Added JS-based rollover state due to a browser-bug.)
|
||||
* Fixed an overflow issue for when the fixed width/height is smaller than the size of a photo.
|
||||
* Fixed a bug in the fade transition where the border would still come up if ColorBox was closed mid-transition.
|
||||
* Switch from JSMin to Yui Compressor for minification. Minified code now under 7KB.
|
||||
|
||||
### Version 1.1.1 - March 31 2009
|
||||
* More robust image detection regex. Now detects image file types with url fragments and/or query strings.
|
||||
* Added 'nofollow' exception to rel grouping.
|
||||
* Changed how images are loaded into the DOM to prevent premature size calculation by ColorBox.
|
||||
* Added timestamp to iframe name to prevent caching - this was a problem in some browsers if the user had multiple iframes and the visitor left the page and came back, or if they refreshed the page.
|
||||
|
||||
### Version 1.1.0 - March 21 2009
|
||||
* Animation is now much smoother and less resource intensive.
|
||||
* Added support for % sizing.
|
||||
* Callback option added.
|
||||
* Inline content now preserves JavaScript events, and changes made while ColorBox is open are also preserved.
|
||||
* Added 'href' setting to add the ability to set an alternative href for any anchor, or to assign the ColorBox event to non-anchors.
|
||||
Example: $('button').colorbox({'href':'process.php'})
|
||||
Example: $('a[href='http://msn.com']).colorbox({'href':'http://google.com', iframe:true});
|
||||
* Photos are now horizontally centered if they are smaller than the lightbox size. Also vertically centered for browsers newer than IE7.
|
||||
* Buttons in the examples are now included in the 'protected zone'. The lightbox will never expand it's borders or buttons beyond an accessible area of the screen.
|
||||
* Keypress events don't queue up by holding down the arrow keys.
|
||||
* Added option to close ColorBox by clicking on the background overlay.
|
||||
* Added 'none' transition setting.
|
||||
* Changed 'contentIframe' and 'contentInline' to 'inline' and 'iframe'. Removed 'contentAjax' because it is automatically assumed for non-image file types.
|
||||
* Changed 'contentWidth' and 'contentHeight' to 'fixedWidth' and 'fixedHeight'. These sizes now reflect the total size of the lightbox, not just the inner content. This is so users can accurately anticipate % sizes without fear of creating scrollbars.
|
||||
* Clicking on a photo will now switch to the next photo in a set.
|
||||
* Loading.gif is more stable in it's position.
|
||||
* Added a minified version.
|
||||
* Code passes JSLint.
|
||||
|
||||
### Version 1.0.5 - March 11 2009
|
||||
* Redo: Fixed a bug where IE would cut off the bottom portion of a photo, if the photo was larger than the document dimensions.
|
||||
|
||||
### Version 1.0.4 - March 10 2009
|
||||
* Added an option to allow users to automatically open the lightbox. Example usage: $(".colorbox").colorbox({open:true});
|
||||
* Fixed a bug where IE would cut off the bottom portion of a photo, if the photo was larger than the document dimensions.
|
||||
|
||||
### Version 1.0.3 - March 09 2009
|
||||
* Fixed vertical centering for Safari 3.0.x.
|
||||
|
||||
### Version 1.0.2 - March 06 2009
|
||||
* Corrected a typo.
|
||||
* Changed the content-type check so that it does not assume all links to photos should actually display photos. This allows for Ajax/inline/and iframe calls on anchors linking to picture file types.
|
||||
|
||||
### Version 1.0.1 - March 05 2009
|
||||
* Fixed keydown events (esc, left arrow, right arrow) for Webkit browsers.
|
||||
|
||||
### Version 1.0 - March 03 2009
|
||||
* First release
|
||||
1811
library/colorbox/colorbox.ai
Normal file
52
library/colorbox/colorbox.css
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
/*
|
||||
ColorBox Core Style:
|
||||
The following CSS is consistent between example themes and should not be altered.
|
||||
*/
|
||||
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
|
||||
#cboxOverlay{position:fixed; width:100%; height:100%;}
|
||||
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
|
||||
#cboxContent{position:relative;}
|
||||
#cboxLoadedContent{overflow:auto;}
|
||||
#cboxTitle{margin:0;}
|
||||
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
|
||||
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
|
||||
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none;}
|
||||
.cboxIframe{width:100%; height:100%; display:block; border:0;}
|
||||
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}
|
||||
|
||||
/*
|
||||
User Style:
|
||||
Change the following styles to modify the appearance of ColorBox. They are
|
||||
ordered & tabbed in a way that represents the nesting of the generated HTML.
|
||||
*/
|
||||
#cboxOverlay{background:#000;}
|
||||
#colorbox{}
|
||||
#cboxTopLeft{width:14px; height:14px; background:url(images/controls.png) no-repeat 0 0;}
|
||||
#cboxTopCenter{height:14px; background:url(images/border.png) repeat-x top left;}
|
||||
#cboxTopRight{width:14px; height:14px; background:url(images/controls.png) no-repeat -36px 0;}
|
||||
#cboxBottomLeft{width:14px; height:43px; background:url(images/controls.png) no-repeat 0 -32px;}
|
||||
#cboxBottomCenter{height:43px; background:url(images/border.png) repeat-x bottom left;}
|
||||
#cboxBottomRight{width:14px; height:43px; background:url(images/controls.png) no-repeat -36px -32px;}
|
||||
#cboxMiddleLeft{width:14px; background:url(images/controls.png) repeat-y -175px 0;}
|
||||
#cboxMiddleRight{width:14px; background:url(images/controls.png) repeat-y -211px 0;}
|
||||
#cboxContent{background:#fff; overflow:visible;}
|
||||
.cboxIframe{background:#fff;}
|
||||
#cboxError{padding:50px; border:1px solid #ccc;}
|
||||
#cboxLoadedContent{margin-bottom:5px;}
|
||||
#cboxLoadingOverlay{background:url(images/loading_background.png) no-repeat center center;}
|
||||
#cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}
|
||||
#cboxTitle{position:absolute; bottom:-25px; left:0; text-align:center; width:100%; font-weight:bold; color:#7C7C7C;}
|
||||
#cboxCurrent{position:absolute; bottom:-25px; left:58px; font-weight:bold; color:#7C7C7C;}
|
||||
|
||||
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{position:absolute; bottom:-29px; background:url(images/controls.png) no-repeat 0px 0px; width:23px; height:23px; text-indent:-9999px;}
|
||||
#cboxPrevious{left:0px; background-position: -51px -25px;}
|
||||
#cboxPrevious:hover{background-position:-51px 0px;}
|
||||
#cboxNext{left:27px; background-position:-75px -25px;}
|
||||
#cboxNext:hover{background-position:-75px 0px;}
|
||||
#cboxClose{right:0; background-position:-100px -25px;}
|
||||
#cboxClose:hover{background-position:-100px 0px;}
|
||||
|
||||
.cboxSlideshow_on #cboxSlideshow{background-position:-125px 0px; right:27px;}
|
||||
.cboxSlideshow_on #cboxSlideshow:hover{background-position:-150px 0px;}
|
||||
.cboxSlideshow_off #cboxSlideshow{background-position:-150px -25px; right:27px;}
|
||||
.cboxSlideshow_off #cboxSlideshow:hover{background-position:-125px 0px;}
|
||||
30
library/colorbox/colorbox.jquery.json
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"name": "colorbox",
|
||||
"title": "ColorBox",
|
||||
"description": "A lightweight customizable lightbox plugin",
|
||||
"keywords": [
|
||||
"modal",
|
||||
"lightbox",
|
||||
"window",
|
||||
"popup",
|
||||
"ui"
|
||||
],
|
||||
"version": "1.3.32",
|
||||
"author": {
|
||||
"name": "Jack Moore",
|
||||
"url": "http://www.jacklmoore.com",
|
||||
"email": "jack@colorpowered.com"
|
||||
},
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT",
|
||||
"url": "http://www.opensource.org/licenses/mit-license.php"
|
||||
}
|
||||
],
|
||||
"homepage": "http://jacklmoore.com/colorbox",
|
||||
"demo": "http://jacklmoore.com/colorbox",
|
||||
"download": "http://jacklmoore.com/colorbox/colorbox.zip",
|
||||
"dependencies": {
|
||||
"jquery": ">=1.3.2"
|
||||
}
|
||||
}
|
||||
8
library/colorbox/component.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"name": "jquery-autosize",
|
||||
"version": "1.3.32",
|
||||
"main": "./jquery.autosize.js",
|
||||
"dependencies": {
|
||||
"jquery": ">=1.3.2"
|
||||
}
|
||||
}
|
||||
11
library/colorbox/content/ajax.html
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<div id='homer' style="background:url(../content/homer.jpg) right center no-repeat #ececec; height:135px; width:280px; padding:30px 10px;">
|
||||
<strong>Homer</strong><br/>
|
||||
<em>\noun\</em><br/>
|
||||
<strong>1.</strong> American bonehead<br/>
|
||||
<strong>2. Pull a Homer-</strong><br/>
|
||||
to succeed despite<br/>
|
||||
idiocy
|
||||
</div>
|
||||
<script>
|
||||
$('#homer strong').css({color:'red'});
|
||||
</script>
|
||||
BIN
library/colorbox/content/homer.jpg
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
BIN
library/colorbox/content/marylou.jpg
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
library/colorbox/content/ohoopee1.jpg
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
library/colorbox/content/ohoopee2.jpg
Normal file
|
After Width: | Height: | Size: 115 KiB |
BIN
library/colorbox/content/ohoopee3.jpg
Normal file
|
After Width: | Height: | Size: 70 KiB |
86
library/colorbox/example1/colorbox.css
Normal file
|
|
@ -0,0 +1,86 @@
|
|||
/*
|
||||
ColorBox Core Style:
|
||||
The following CSS is consistent between example themes and should not be altered.
|
||||
*/
|
||||
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
|
||||
#cboxOverlay{position:fixed; width:100%; height:100%;}
|
||||
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
|
||||
#cboxContent{position:relative;}
|
||||
#cboxLoadedContent{overflow:auto;}
|
||||
#cboxTitle{margin:0;}
|
||||
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
|
||||
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
|
||||
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none;}
|
||||
.cboxIframe{width:100%; height:100%; display:block; border:0;}
|
||||
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}
|
||||
|
||||
/*
|
||||
User Style:
|
||||
Change the following styles to modify the appearance of ColorBox. They are
|
||||
ordered & tabbed in a way that represents the nesting of the generated HTML.
|
||||
*/
|
||||
#cboxOverlay{background:url(images/overlay.png) repeat 0 0;}
|
||||
#colorbox{}
|
||||
#cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) no-repeat -101px 0;}
|
||||
#cboxTopRight{width:21px; height:21px; background:url(images/controls.png) no-repeat -130px 0;}
|
||||
#cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) no-repeat -101px -29px;}
|
||||
#cboxBottomRight{width:21px; height:21px; background:url(images/controls.png) no-repeat -130px -29px;}
|
||||
#cboxMiddleLeft{width:21px; background:url(images/controls.png) left top repeat-y;}
|
||||
#cboxMiddleRight{width:21px; background:url(images/controls.png) right top repeat-y;}
|
||||
#cboxTopCenter{height:21px; background:url(images/border.png) 0 0 repeat-x;}
|
||||
#cboxBottomCenter{height:21px; background:url(images/border.png) 0 -29px repeat-x;}
|
||||
#cboxContent{background:#fff; overflow:hidden;}
|
||||
.cboxIframe{background:#fff;}
|
||||
#cboxError{padding:50px; border:1px solid #ccc;}
|
||||
#cboxLoadedContent{margin-bottom:28px;}
|
||||
#cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
|
||||
#cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
|
||||
#cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
|
||||
#cboxPrevious{position:absolute; bottom:0; left:0; background:url(images/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
|
||||
#cboxPrevious:hover{background-position:-75px -25px;}
|
||||
#cboxNext{position:absolute; bottom:0; left:27px; background:url(images/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
|
||||
#cboxNext:hover{background-position:-50px -25px;}
|
||||
#cboxLoadingOverlay{background:url(images/loading_background.png) no-repeat center center;}
|
||||
#cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}
|
||||
#cboxClose{position:absolute; bottom:0; right:0; background:url(images/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
|
||||
#cboxClose:hover{background-position:-25px -25px;}
|
||||
|
||||
/*
|
||||
The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
|
||||
when an alpha filter (opacity change) is set on the element or ancestor element. This style is not applied to or needed in IE9.
|
||||
See: http://jacklmoore.com/notes/ie-transparency-problems/
|
||||
*/
|
||||
.cboxIE #cboxTopLeft,
|
||||
.cboxIE #cboxTopCenter,
|
||||
.cboxIE #cboxTopRight,
|
||||
.cboxIE #cboxBottomLeft,
|
||||
.cboxIE #cboxBottomCenter,
|
||||
.cboxIE #cboxBottomRight,
|
||||
.cboxIE #cboxMiddleLeft,
|
||||
.cboxIE #cboxMiddleRight {
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
|
||||
}
|
||||
|
||||
/*
|
||||
The following provides PNG transparency support for IE6
|
||||
Feel free to remove this and the /ie6/ directory if you have dropped IE6 support.
|
||||
*/
|
||||
.cboxIE6 #cboxTopLeft{background:url(images/ie6/borderTopLeft.png);}
|
||||
.cboxIE6 #cboxTopCenter{background:url(images/ie6/borderTopCenter.png);}
|
||||
.cboxIE6 #cboxTopRight{background:url(images/ie6/borderTopRight.png);}
|
||||
.cboxIE6 #cboxBottomLeft{background:url(images/ie6/borderBottomLeft.png);}
|
||||
.cboxIE6 #cboxBottomCenter{background:url(images/ie6/borderBottomCenter.png);}
|
||||
.cboxIE6 #cboxBottomRight{background:url(images/ie6/borderBottomRight.png);}
|
||||
.cboxIE6 #cboxMiddleLeft{background:url(images/ie6/borderMiddleLeft.png);}
|
||||
.cboxIE6 #cboxMiddleRight{background:url(images/ie6/borderMiddleRight.png);}
|
||||
|
||||
.cboxIE6 #cboxTopLeft,
|
||||
.cboxIE6 #cboxTopCenter,
|
||||
.cboxIE6 #cboxTopRight,
|
||||
.cboxIE6 #cboxBottomLeft,
|
||||
.cboxIE6 #cboxBottomCenter,
|
||||
.cboxIE6 #cboxBottomRight,
|
||||
.cboxIE6 #cboxMiddleLeft,
|
||||
.cboxIE6 #cboxMiddleRight {
|
||||
_behavior: expression(this.src = this.src ? this.src : this.currentStyle.backgroundImage.split('"')[1], this.style.background = "none", this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" + this.src + ", sizingMethod='scale')");
|
||||
}
|
||||
BIN
library/colorbox/example1/images/border.png
Normal file
|
After Width: | Height: | Size: 112 B |
BIN
library/colorbox/example1/images/controls.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
library/colorbox/example1/images/ie6/borderBottomCenter.png
Normal file
|
After Width: | Height: | Size: 111 B |
BIN
library/colorbox/example1/images/ie6/borderBottomLeft.png
Normal file
|
After Width: | Height: | Size: 215 B |
BIN
library/colorbox/example1/images/ie6/borderBottomRight.png
Normal file
|
After Width: | Height: | Size: 217 B |
BIN
library/colorbox/example1/images/ie6/borderMiddleLeft.png
Normal file
|
After Width: | Height: | Size: 108 B |
BIN
library/colorbox/example1/images/ie6/borderMiddleRight.png
Normal file
|
After Width: | Height: | Size: 108 B |
BIN
library/colorbox/example1/images/ie6/borderTopCenter.png
Normal file
|
After Width: | Height: | Size: 111 B |
BIN
library/colorbox/example1/images/ie6/borderTopLeft.png
Normal file
|
After Width: | Height: | Size: 216 B |
BIN
library/colorbox/example1/images/ie6/borderTopRight.png
Normal file
|
After Width: | Height: | Size: 214 B |
BIN
library/colorbox/example1/images/loading.gif
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
library/colorbox/example1/images/loading_background.png
Normal file
|
After Width: | Height: | Size: 157 B |
BIN
library/colorbox/example1/images/overlay.png
Normal file
|
After Width: | Height: | Size: 182 B |
87
library/colorbox/example1/index.html
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'/>
|
||||
<title>ColorBox Examples</title>
|
||||
<style>
|
||||
body{font:12px/1.2 Verdana, sans-serif; padding:0 10px;}
|
||||
a:link, a:visited{text-decoration:none; color:#416CE5; border-bottom:1px solid #416CE5;}
|
||||
h2{font-size:13px; margin:15px 0 0 0;}
|
||||
</style>
|
||||
<link rel="stylesheet" href="colorbox.css" />
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
|
||||
<script src="../jquery.colorbox.js"></script>
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
//Examples of how to assign the ColorBox event to elements
|
||||
$(".group1").colorbox({rel:'group1'});
|
||||
$(".group2").colorbox({rel:'group2', transition:"fade"});
|
||||
$(".group3").colorbox({rel:'group3', transition:"none", width:"75%", height:"75%"});
|
||||
$(".group4").colorbox({rel:'group4', slideshow:true});
|
||||
$(".ajax").colorbox();
|
||||
$(".youtube").colorbox({iframe:true, innerWidth:425, innerHeight:344});
|
||||
$(".vimeo").colorbox({iframe:true, innerWidth:500, innerHeight:409});
|
||||
$(".iframe").colorbox({iframe:true, width:"80%", height:"80%"});
|
||||
$(".inline").colorbox({inline:true, width:"50%"});
|
||||
$(".callbacks").colorbox({
|
||||
onOpen:function(){ alert('onOpen: colorbox is about to open'); },
|
||||
onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },
|
||||
onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },
|
||||
onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },
|
||||
onClosed:function(){ alert('onClosed: colorbox has completely closed'); }
|
||||
});
|
||||
|
||||
//Example of preserving a JavaScript event for inline calls.
|
||||
$("#click").click(function(){
|
||||
$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
|
||||
return false;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>ColorBox Demonstration</h1>
|
||||
<h2>Elastic Transition</h2>
|
||||
<p><a class="group1" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group1" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group1" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Fade Transition</h2>
|
||||
<p><a class="group2" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee">Grouped Photo 1</a></p>
|
||||
<p><a class="group2" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group2" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>No Transition + fixed width and height (75% of screen size)</h2>
|
||||
<p><a class="group3" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group3" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group3" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Slideshow</h2>
|
||||
<p><a class="group4" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group4" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group4" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Other Content Types</h2>
|
||||
<p><a class='ajax' href="../content/ajax.html" title="Homer Defined">Outside HTML (Ajax)</a></p>
|
||||
<p><a class='youtube' href="http://www.youtube.com/embed/617ANIA5Rqs?rel=0&wmode=transparent" title="The Knife: We Share Our Mother's Health">Flash / Video (Iframe/Direct Link To YouTube)</a></p>
|
||||
<p><a class='vimeo' href="http://player.vimeo.com/video/2285902" title="Röyksopp: Remind Me">Flash / Video (Iframe/Direct Link To Vimeo)</a></p>
|
||||
<p><a class='iframe' href="http://wikipedia.com">Outside Webpage (Iframe)</a></p>
|
||||
<p><a class='inline' href="#inline_content">Inline HTML</a></p>
|
||||
|
||||
<h2>Demonstration of using callbacks</h2>
|
||||
<p><a class='callbacks' href="../content/marylou.jpg" title="Marylou on Cumberland Island">Example with alerts</a>. Callbacks and event-hooks allow users to extend functionality without having to rewrite parts of the plugin.</p>
|
||||
|
||||
<!-- This contains the hidden content for inline calls -->
|
||||
<div style='display:none'>
|
||||
<div id='inline_content' style='padding:10px; background:#fff;'>
|
||||
<p><strong>This content comes from a hidden element on this page.</strong></p>
|
||||
<p>The inline option preserves bound JavaScript events and changes, and it puts the content back where it came from when it is closed.</p>
|
||||
<p><a id="click" href="#" style='padding:5px; background:#ccc;'>Click me, it will be preserved!</a></p>
|
||||
|
||||
<p><strong>If you try to open a new ColorBox while it is already open, it will update itself with the new content.</strong></p>
|
||||
<p>Updating Content Example:<br />
|
||||
<a class="ajax" href="../content/ajax.html">Click here to load new content</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
43
library/colorbox/example2/colorbox.css
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
/*
|
||||
ColorBox Core Style:
|
||||
The following CSS is consistent between example themes and should not be altered.
|
||||
*/
|
||||
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
|
||||
#cboxOverlay{position:fixed; width:100%; height:100%;}
|
||||
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
|
||||
#cboxContent{position:relative;}
|
||||
#cboxLoadedContent{overflow:auto;}
|
||||
#cboxTitle{margin:0;}
|
||||
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
|
||||
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
|
||||
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none;}
|
||||
.cboxIframe{width:100%; height:100%; display:block; border:0;}
|
||||
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}
|
||||
|
||||
/*
|
||||
User Style:
|
||||
Change the following styles to modify the appearance of ColorBox. They are
|
||||
ordered & tabbed in a way that represents the nesting of the generated HTML.
|
||||
*/
|
||||
#cboxOverlay{background:#fff;}
|
||||
#colorbox{}
|
||||
#cboxContent{margin-top:32px; overflow:visible;}
|
||||
.cboxIframe{background:#fff;}
|
||||
#cboxError{padding:50px; border:1px solid #ccc;}
|
||||
#cboxLoadedContent{background:#000; padding:1px;}
|
||||
#cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}
|
||||
#cboxLoadingOverlay{background:#000;}
|
||||
#cboxTitle{position:absolute; top:-22px; left:0; color:#000;}
|
||||
#cboxCurrent{position:absolute; top:-22px; right:205px; text-indent:-9999px;}
|
||||
#cboxSlideshow, #cboxPrevious, #cboxNext, #cboxClose{text-indent:-9999px; width:20px; height:20px; position:absolute; top:-20px; background:url(images/controls.png) no-repeat 0 0;}
|
||||
#cboxPrevious{background-position:0px 0px; right:44px;}
|
||||
#cboxPrevious:hover{background-position:0px -25px;}
|
||||
#cboxNext{background-position:-25px 0px; right:22px;}
|
||||
#cboxNext:hover{background-position:-25px -25px;}
|
||||
#cboxClose{background-position:-50px 0px; right:0;}
|
||||
#cboxClose:hover{background-position:-50px -25px;}
|
||||
.cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious{right:66px;}
|
||||
.cboxSlideshow_on #cboxSlideshow{background-position:-75px -25px; right:44px;}
|
||||
.cboxSlideshow_on #cboxSlideshow:hover{background-position:-100px -25px;}
|
||||
.cboxSlideshow_off #cboxSlideshow{background-position:-100px 0px; right:44px;}
|
||||
.cboxSlideshow_off #cboxSlideshow:hover{background-position:-75px -25px;}
|
||||
BIN
library/colorbox/example2/images/controls.png
Normal file
|
After Width: | Height: | Size: 570 B |
BIN
library/colorbox/example2/images/loading.gif
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
87
library/colorbox/example2/index.html
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'/>
|
||||
<title>ColorBox Examples</title>
|
||||
<style>
|
||||
body{font:12px/1.2 Verdana, sans-serif; padding:0 10px;}
|
||||
a:link, a:visited{text-decoration:none; color:#416CE5; border-bottom:1px solid #416CE5;}
|
||||
h2{font-size:13px; margin:15px 0 0 0;}
|
||||
</style>
|
||||
<link rel="stylesheet" href="colorbox.css" />
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
|
||||
<script src="../jquery.colorbox.js"></script>
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
//Examples of how to assign the ColorBox event to elements
|
||||
$(".group1").colorbox({rel:'group1'});
|
||||
$(".group2").colorbox({rel:'group2', transition:"fade"});
|
||||
$(".group3").colorbox({rel:'group3', transition:"none", width:"75%", height:"75%"});
|
||||
$(".group4").colorbox({rel:'group4', slideshow:true});
|
||||
$(".ajax").colorbox();
|
||||
$(".youtube").colorbox({iframe:true, innerWidth:425, innerHeight:344});
|
||||
$(".vimeo").colorbox({iframe:true, innerWidth:500, innerHeight:409});
|
||||
$(".iframe").colorbox({iframe:true, width:"80%", height:"80%"});
|
||||
$(".inline").colorbox({inline:true, width:"50%"});
|
||||
$(".callbacks").colorbox({
|
||||
onOpen:function(){ alert('onOpen: colorbox is about to open'); },
|
||||
onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },
|
||||
onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },
|
||||
onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },
|
||||
onClosed:function(){ alert('onClosed: colorbox has completely closed'); }
|
||||
});
|
||||
|
||||
//Example of preserving a JavaScript event for inline calls.
|
||||
$("#click").click(function(){
|
||||
$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
|
||||
return false;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>ColorBox Demonstration</h1>
|
||||
<h2>Elastic Transition</h2>
|
||||
<p><a class="group1" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group1" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group1" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Fade Transition</h2>
|
||||
<p><a class="group2" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee">Grouped Photo 1</a></p>
|
||||
<p><a class="group2" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group2" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>No Transition + fixed width and height (75% of screen size)</h2>
|
||||
<p><a class="group3" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group3" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group3" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Slideshow</h2>
|
||||
<p><a class="group4" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group4" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group4" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Other Content Types</h2>
|
||||
<p><a class='ajax' href="../content/ajax.html" title="Homer Defined">Outside HTML (Ajax)</a></p>
|
||||
<p><a class='youtube' href="http://www.youtube.com/embed/617ANIA5Rqs?rel=0&wmode=transparent" title="The Knife: We Share Our Mother's Health">Flash / Video (Iframe/Direct Link To YouTube)</a></p>
|
||||
<p><a class='vimeo' href="http://player.vimeo.com/video/2285902" title="Röyksopp: Remind Me">Flash / Video (Iframe/Direct Link To Vimeo)</a></p>
|
||||
<p><a class='iframe' href="http://wikipedia.com">Outside Webpage (Iframe)</a></p>
|
||||
<p><a class='inline' href="#inline_content">Inline HTML</a></p>
|
||||
|
||||
<h2>Demonstration of using callbacks</h2>
|
||||
<p><a class='callbacks' href="../content/marylou.jpg" title="Marylou on Cumberland Island">Example with alerts</a>. Callbacks and event-hooks allow users to extend functionality without having to rewrite parts of the plugin.</p>
|
||||
|
||||
<!-- This contains the hidden content for inline calls -->
|
||||
<div style='display:none'>
|
||||
<div id='inline_content' style='padding:10px; background:#fff;'>
|
||||
<p><strong>This content comes from a hidden element on this page.</strong></p>
|
||||
<p>The inline option preserves bound JavaScript events and changes, and it puts the content back where it came from when it is closed.</p>
|
||||
<p><a id="click" href="#" style='padding:5px; background:#ccc;'>Click me, it will be preserved!</a></p>
|
||||
|
||||
<p><strong>If you try to open a new ColorBox while it is already open, it will update itself with the new content.</strong></p>
|
||||
<p>Updating Content Example:<br />
|
||||
<a class="ajax" href="../content/ajax.html">Click here to load new content</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
38
library/colorbox/example3/colorbox.css
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
ColorBox Core Style:
|
||||
The following CSS is consistent between example themes and should not be altered.
|
||||
*/
|
||||
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
|
||||
#cboxOverlay{position:fixed; width:100%; height:100%;}
|
||||
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
|
||||
#cboxContent{position:relative;}
|
||||
#cboxLoadedContent{overflow:auto;}
|
||||
#cboxTitle{margin:0;}
|
||||
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
|
||||
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
|
||||
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none;}
|
||||
.cboxIframe{width:100%; height:100%; display:block; border:0;}
|
||||
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}
|
||||
|
||||
/*
|
||||
User Style:
|
||||
Change the following styles to modify the appearance of ColorBox. They are
|
||||
ordered & tabbed in a way that represents the nesting of the generated HTML.
|
||||
*/
|
||||
#cboxOverlay{background:#000;}
|
||||
#colorbox{}
|
||||
#cboxContent{margin-top:20px;}
|
||||
.cboxIframe{background:#fff;}
|
||||
#cboxError{padding:50px; border:1px solid #ccc;}
|
||||
#cboxLoadedContent{border:5px solid #000; background:#fff;}
|
||||
#cboxTitle{position:absolute; top:-20px; left:0; color:#ccc;}
|
||||
#cboxCurrent{position:absolute; top:-20px; right:0px; color:#ccc;}
|
||||
#cboxSlideshow{position:absolute; top:-20px; right:90px; color:#fff;}
|
||||
#cboxPrevious{position:absolute; top:50%; left:5px; margin-top:-32px; background:url(images/controls.png) no-repeat top left; width:28px; height:65px; text-indent:-9999px;}
|
||||
#cboxPrevious:hover{background-position:bottom left;}
|
||||
#cboxNext{position:absolute; top:50%; right:5px; margin-top:-32px; background:url(images/controls.png) no-repeat top right; width:28px; height:65px; text-indent:-9999px;}
|
||||
#cboxNext:hover{background-position:bottom right;}
|
||||
#cboxLoadingOverlay{background:#000;}
|
||||
#cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}
|
||||
#cboxClose{position:absolute; top:5px; right:5px; display:block; background:url(images/controls.png) no-repeat top center; width:38px; height:19px; text-indent:-9999px;}
|
||||
#cboxClose:hover{background-position:bottom center;}
|
||||
BIN
library/colorbox/example3/images/controls.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
library/colorbox/example3/images/loading.gif
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
87
library/colorbox/example3/index.html
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'/>
|
||||
<title>ColorBox Examples</title>
|
||||
<style>
|
||||
body{font:12px/1.2 Verdana, sans-serif; padding:0 10px;}
|
||||
a:link, a:visited{text-decoration:none; color:#416CE5; border-bottom:1px solid #416CE5;}
|
||||
h2{font-size:13px; margin:15px 0 0 0;}
|
||||
</style>
|
||||
<link rel="stylesheet" href="colorbox.css" />
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
|
||||
<script src="../jquery.colorbox.js"></script>
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
//Examples of how to assign the ColorBox event to elements
|
||||
$(".group1").colorbox({rel:'group1'});
|
||||
$(".group2").colorbox({rel:'group2', transition:"fade"});
|
||||
$(".group3").colorbox({rel:'group3', transition:"none", width:"75%", height:"75%"});
|
||||
$(".group4").colorbox({rel:'group4', slideshow:true});
|
||||
$(".ajax").colorbox();
|
||||
$(".youtube").colorbox({iframe:true, innerWidth:425, innerHeight:344});
|
||||
$(".vimeo").colorbox({iframe:true, innerWidth:500, innerHeight:409});
|
||||
$(".iframe").colorbox({iframe:true, width:"80%", height:"80%"});
|
||||
$(".inline").colorbox({inline:true, width:"50%"});
|
||||
$(".callbacks").colorbox({
|
||||
onOpen:function(){ alert('onOpen: colorbox is about to open'); },
|
||||
onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },
|
||||
onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },
|
||||
onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },
|
||||
onClosed:function(){ alert('onClosed: colorbox has completely closed'); }
|
||||
});
|
||||
|
||||
//Example of preserving a JavaScript event for inline calls.
|
||||
$("#click").click(function(){
|
||||
$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
|
||||
return false;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>ColorBox Demonstration</h1>
|
||||
<h2>Elastic Transition</h2>
|
||||
<p><a class="group1" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group1" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group1" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Fade Transition</h2>
|
||||
<p><a class="group2" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee">Grouped Photo 1</a></p>
|
||||
<p><a class="group2" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group2" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>No Transition + fixed width and height (75% of screen size)</h2>
|
||||
<p><a class="group3" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group3" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group3" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Slideshow</h2>
|
||||
<p><a class="group4" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group4" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group4" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Other Content Types</h2>
|
||||
<p><a class='ajax' href="../content/ajax.html" title="Homer Defined">Outside HTML (Ajax)</a></p>
|
||||
<p><a class='youtube' href="http://www.youtube.com/embed/617ANIA5Rqs?rel=0&wmode=transparent" title="The Knife: We Share Our Mother's Health">Flash / Video (Iframe/Direct Link To YouTube)</a></p>
|
||||
<p><a class='vimeo' href="http://player.vimeo.com/video/2285902" title="Röyksopp: Remind Me">Flash / Video (Iframe/Direct Link To Vimeo)</a></p>
|
||||
<p><a class='iframe' href="http://wikipedia.com">Outside Webpage (Iframe)</a></p>
|
||||
<p><a class='inline' href="#inline_content">Inline HTML</a></p>
|
||||
|
||||
<h2>Demonstration of using callbacks</h2>
|
||||
<p><a class='callbacks' href="../content/marylou.jpg" title="Marylou on Cumberland Island">Example with alerts</a>. Callbacks and event-hooks allow users to extend functionality without having to rewrite parts of the plugin.</p>
|
||||
|
||||
<!-- This contains the hidden content for inline calls -->
|
||||
<div style='display:none'>
|
||||
<div id='inline_content' style='padding:10px; background:#fff;'>
|
||||
<p><strong>This content comes from a hidden element on this page.</strong></p>
|
||||
<p>The inline option preserves bound JavaScript events and changes, and it puts the content back where it came from when it is closed.</p>
|
||||
<p><a id="click" href="#" style='padding:5px; background:#ccc;'>Click me, it will be preserved!</a></p>
|
||||
|
||||
<p><strong>If you try to open a new ColorBox while it is already open, it will update itself with the new content.</strong></p>
|
||||
<p>Updating Content Example:<br />
|
||||
<a class="ajax" href="../content/ajax.html">Click here to load new content</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
82
library/colorbox/example4/colorbox.css
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
/*
|
||||
ColorBox Core Style:
|
||||
The following CSS is consistent between example themes and should not be altered.
|
||||
*/
|
||||
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
|
||||
#cboxOverlay{position:fixed; width:100%; height:100%;}
|
||||
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
|
||||
#cboxContent{position:relative;}
|
||||
#cboxLoadedContent{overflow:auto;}
|
||||
#cboxTitle{margin:0;}
|
||||
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
|
||||
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
|
||||
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none;}
|
||||
.cboxIframe{width:100%; height:100%; display:block; border:0;}
|
||||
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}
|
||||
|
||||
/*
|
||||
User Style:
|
||||
Change the following styles to modify the appearance of ColorBox. They are
|
||||
ordered & tabbed in a way that represents the nesting of the generated HTML.
|
||||
*/
|
||||
#cboxOverlay{background:#fff;}
|
||||
#colorbox{}
|
||||
#cboxTopLeft{width:25px; height:25px; background:url(images/border1.png) no-repeat 0 0;}
|
||||
#cboxTopCenter{height:25px; background:url(images/border1.png) repeat-x 0 -50px;}
|
||||
#cboxTopRight{width:25px; height:25px; background:url(images/border1.png) no-repeat -25px 0;}
|
||||
#cboxBottomLeft{width:25px; height:25px; background:url(images/border1.png) no-repeat 0 -25px;}
|
||||
#cboxBottomCenter{height:25px; background:url(images/border1.png) repeat-x 0 -75px;}
|
||||
#cboxBottomRight{width:25px; height:25px; background:url(images/border1.png) no-repeat -25px -25px;}
|
||||
#cboxMiddleLeft{width:25px; background:url(images/border2.png) repeat-y 0 0;}
|
||||
#cboxMiddleRight{width:25px; background:url(images/border2.png) repeat-y -25px 0;}
|
||||
#cboxContent{background:#fff; overflow:hidden;}
|
||||
.cboxIframe{background:#fff;}
|
||||
#cboxError{padding:50px; border:1px solid #ccc;}
|
||||
#cboxLoadedContent{margin-bottom:20px;}
|
||||
#cboxTitle{position:absolute; bottom:0px; left:0; text-align:center; width:100%; color:#999;}
|
||||
#cboxCurrent{position:absolute; bottom:0px; left:100px; color:#999;}
|
||||
#cboxSlideshow{position:absolute; bottom:0px; right:42px; color:#444;}
|
||||
#cboxPrevious{position:absolute; bottom:0px; left:0; color:#444;}
|
||||
#cboxNext{position:absolute; bottom:0px; left:63px; color:#444;}
|
||||
#cboxLoadingOverlay{background:#fff url(images/loading.gif) no-repeat 5px 5px;}
|
||||
#cboxClose{position:absolute; bottom:0; right:0; display:block; color:#444;}
|
||||
|
||||
/*
|
||||
The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
|
||||
when an alpha filter (opacity change) is set on the element or ancestor element. This style is not applied to or needed in IE9.
|
||||
See: http://jacklmoore.com/notes/ie-transparency-problems/
|
||||
*/
|
||||
.cboxIE #cboxTopLeft,
|
||||
.cboxIE #cboxTopCenter,
|
||||
.cboxIE #cboxTopRight,
|
||||
.cboxIE #cboxBottomLeft,
|
||||
.cboxIE #cboxBottomCenter,
|
||||
.cboxIE #cboxBottomRight,
|
||||
.cboxIE #cboxMiddleLeft,
|
||||
.cboxIE #cboxMiddleRight {
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
|
||||
}
|
||||
|
||||
/*
|
||||
The following provides PNG transparency support for IE6
|
||||
Feel free to remove this and the /ie6/ directory if you have dropped IE6 support.
|
||||
*/
|
||||
.cboxIE6 #cboxTopLeft{background:url(images/ie6/borderTopLeft.png);}
|
||||
.cboxIE6 #cboxTopCenter{background:url(images/ie6/borderTopCenter.png);}
|
||||
.cboxIE6 #cboxTopRight{background:url(images/ie6/borderTopRight.png);}
|
||||
.cboxIE6 #cboxBottomLeft{background:url(images/ie6/borderBottomLeft.png);}
|
||||
.cboxIE6 #cboxBottomCenter{background:url(images/ie6/borderBottomCenter.png);}
|
||||
.cboxIE6 #cboxBottomRight{background:url(images/ie6/borderBottomRight.png);}
|
||||
.cboxIE6 #cboxMiddleLeft{background:url(images/ie6/borderMiddleLeft.png);}
|
||||
.cboxIE6 #cboxMiddleRight{background:url(images/ie6/borderMiddleRight.png);}
|
||||
|
||||
.cboxIE6 #cboxTopLeft,
|
||||
.cboxIE6 #cboxTopCenter,
|
||||
.cboxIE6 #cboxTopRight,
|
||||
.cboxIE6 #cboxBottomLeft,
|
||||
.cboxIE6 #cboxBottomCenter,
|
||||
.cboxIE6 #cboxBottomRight,
|
||||
.cboxIE6 #cboxMiddleLeft,
|
||||
.cboxIE6 #cboxMiddleRight {
|
||||
_behavior: expression(this.src = this.src ? this.src : this.currentStyle.backgroundImage.split('"')[1], this.style.background = "none", this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" + this.src + ", sizingMethod='scale')");
|
||||
}
|
||||
BIN
library/colorbox/example4/images/border1.png
Normal file
|
After Width: | Height: | Size: 1 KiB |
BIN
library/colorbox/example4/images/border2.png
Normal file
|
After Width: | Height: | Size: 170 B |
BIN
library/colorbox/example4/images/ie6/borderBottomCenter.png
Normal file
|
After Width: | Height: | Size: 153 B |
BIN
library/colorbox/example4/images/ie6/borderBottomLeft.png
Normal file
|
After Width: | Height: | Size: 473 B |
BIN
library/colorbox/example4/images/ie6/borderBottomRight.png
Normal file
|
After Width: | Height: | Size: 470 B |
BIN
library/colorbox/example4/images/ie6/borderMiddleLeft.png
Normal file
|
After Width: | Height: | Size: 148 B |
BIN
library/colorbox/example4/images/ie6/borderMiddleRight.png
Normal file
|
After Width: | Height: | Size: 139 B |
BIN
library/colorbox/example4/images/ie6/borderTopCenter.png
Normal file
|
After Width: | Height: | Size: 153 B |
BIN
library/colorbox/example4/images/ie6/borderTopLeft.png
Normal file
|
After Width: | Height: | Size: 359 B |
BIN
library/colorbox/example4/images/ie6/borderTopRight.png
Normal file
|
After Width: | Height: | Size: 465 B |
BIN
library/colorbox/example4/images/loading.gif
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
87
library/colorbox/example4/index.html
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'/>
|
||||
<title>ColorBox Examples</title>
|
||||
<style>
|
||||
body{font:12px/1.2 Verdana, sans-serif; padding:0 10px;}
|
||||
a:link, a:visited{text-decoration:none; color:#416CE5; border-bottom:1px solid #416CE5;}
|
||||
h2{font-size:13px; margin:15px 0 0 0;}
|
||||
</style>
|
||||
<link rel="stylesheet" href="colorbox.css" />
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
|
||||
<script src="../jquery.colorbox.js"></script>
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
//Examples of how to assign the ColorBox event to elements
|
||||
$(".group1").colorbox({rel:'group1'});
|
||||
$(".group2").colorbox({rel:'group2', transition:"fade"});
|
||||
$(".group3").colorbox({rel:'group3', transition:"none", width:"75%", height:"75%"});
|
||||
$(".group4").colorbox({rel:'group4', slideshow:true});
|
||||
$(".ajax").colorbox();
|
||||
$(".youtube").colorbox({iframe:true, innerWidth:425, innerHeight:344});
|
||||
$(".vimeo").colorbox({iframe:true, innerWidth:500, innerHeight:409});
|
||||
$(".iframe").colorbox({iframe:true, width:"80%", height:"80%"});
|
||||
$(".inline").colorbox({inline:true, width:"50%"});
|
||||
$(".callbacks").colorbox({
|
||||
onOpen:function(){ alert('onOpen: colorbox is about to open'); },
|
||||
onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },
|
||||
onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },
|
||||
onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },
|
||||
onClosed:function(){ alert('onClosed: colorbox has completely closed'); }
|
||||
});
|
||||
|
||||
//Example of preserving a JavaScript event for inline calls.
|
||||
$("#click").click(function(){
|
||||
$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
|
||||
return false;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>ColorBox Demonstration</h1>
|
||||
<h2>Elastic Transition</h2>
|
||||
<p><a class="group1" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group1" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group1" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Fade Transition</h2>
|
||||
<p><a class="group2" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee">Grouped Photo 1</a></p>
|
||||
<p><a class="group2" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group2" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>No Transition + fixed width and height (75% of screen size)</h2>
|
||||
<p><a class="group3" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group3" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group3" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Slideshow</h2>
|
||||
<p><a class="group4" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group4" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group4" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Other Content Types</h2>
|
||||
<p><a class='ajax' href="../content/ajax.html" title="Homer Defined">Outside HTML (Ajax)</a></p>
|
||||
<p><a class='youtube' href="http://www.youtube.com/embed/617ANIA5Rqs?rel=0&wmode=transparent" title="The Knife: We Share Our Mother's Health">Flash / Video (Iframe/Direct Link To YouTube)</a></p>
|
||||
<p><a class='vimeo' href="http://player.vimeo.com/video/2285902" title="Röyksopp: Remind Me">Flash / Video (Iframe/Direct Link To Vimeo)</a></p>
|
||||
<p><a class='iframe' href="http://wikipedia.com">Outside Webpage (Iframe)</a></p>
|
||||
<p><a class='inline' href="#inline_content">Inline HTML</a></p>
|
||||
|
||||
<h2>Demonstration of using callbacks</h2>
|
||||
<p><a class='callbacks' href="../content/marylou.jpg" title="Marylou on Cumberland Island">Example with alerts</a>. Callbacks and event-hooks allow users to extend functionality without having to rewrite parts of the plugin.</p>
|
||||
|
||||
<!-- This contains the hidden content for inline calls -->
|
||||
<div style='display:none'>
|
||||
<div id='inline_content' style='padding:10px; background:#fff;'>
|
||||
<p><strong>This content comes from a hidden element on this page.</strong></p>
|
||||
<p>The inline option preserves bound JavaScript events and changes, and it puts the content back where it came from when it is closed.</p>
|
||||
<p><a id="click" href="#" style='padding:5px; background:#ccc;'>Click me, it will be preserved!</a></p>
|
||||
|
||||
<p><strong>If you try to open a new ColorBox while it is already open, it will update itself with the new content.</strong></p>
|
||||
<p>Updating Content Example:<br />
|
||||
<a class="ajax" href="../content/ajax.html">Click here to load new content</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
52
library/colorbox/example5/colorbox.css
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
/*
|
||||
ColorBox Core Style:
|
||||
The following CSS is consistent between example themes and should not be altered.
|
||||
*/
|
||||
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
|
||||
#cboxOverlay{position:fixed; width:100%; height:100%;}
|
||||
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
|
||||
#cboxContent{position:relative;}
|
||||
#cboxLoadedContent{overflow:auto;}
|
||||
#cboxTitle{margin:0;}
|
||||
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
|
||||
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
|
||||
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none;}
|
||||
.cboxIframe{width:100%; height:100%; display:block; border:0;}
|
||||
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}
|
||||
|
||||
/*
|
||||
User Style:
|
||||
Change the following styles to modify the appearance of ColorBox. They are
|
||||
ordered & tabbed in a way that represents the nesting of the generated HTML.
|
||||
*/
|
||||
#cboxOverlay{background:#000;}
|
||||
#colorbox{}
|
||||
#cboxTopLeft{width:14px; height:14px; background:url(images/controls.png) no-repeat 0 0;}
|
||||
#cboxTopCenter{height:14px; background:url(images/border.png) repeat-x top left;}
|
||||
#cboxTopRight{width:14px; height:14px; background:url(images/controls.png) no-repeat -36px 0;}
|
||||
#cboxBottomLeft{width:14px; height:43px; background:url(images/controls.png) no-repeat 0 -32px;}
|
||||
#cboxBottomCenter{height:43px; background:url(images/border.png) repeat-x bottom left;}
|
||||
#cboxBottomRight{width:14px; height:43px; background:url(images/controls.png) no-repeat -36px -32px;}
|
||||
#cboxMiddleLeft{width:14px; background:url(images/controls.png) repeat-y -175px 0;}
|
||||
#cboxMiddleRight{width:14px; background:url(images/controls.png) repeat-y -211px 0;}
|
||||
#cboxContent{background:#fff; overflow:visible;}
|
||||
.cboxIframe{background:#fff;}
|
||||
#cboxError{padding:50px; border:1px solid #ccc;}
|
||||
#cboxLoadedContent{margin-bottom:5px;}
|
||||
#cboxLoadingOverlay{background:url(images/loading_background.png) no-repeat center center;}
|
||||
#cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}
|
||||
#cboxTitle{position:absolute; bottom:-25px; left:0; text-align:center; width:100%; font-weight:bold; color:#7C7C7C;}
|
||||
#cboxCurrent{position:absolute; bottom:-25px; left:58px; font-weight:bold; color:#7C7C7C;}
|
||||
|
||||
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{position:absolute; bottom:-29px; background:url(images/controls.png) no-repeat 0px 0px; width:23px; height:23px; text-indent:-9999px;}
|
||||
#cboxPrevious{left:0px; background-position: -51px -25px;}
|
||||
#cboxPrevious:hover{background-position:-51px 0px;}
|
||||
#cboxNext{left:27px; background-position:-75px -25px;}
|
||||
#cboxNext:hover{background-position:-75px 0px;}
|
||||
#cboxClose{right:0; background-position:-100px -25px;}
|
||||
#cboxClose:hover{background-position:-100px 0px;}
|
||||
|
||||
.cboxSlideshow_on #cboxSlideshow{background-position:-125px 0px; right:27px;}
|
||||
.cboxSlideshow_on #cboxSlideshow:hover{background-position:-150px 0px;}
|
||||
.cboxSlideshow_off #cboxSlideshow{background-position:-150px -25px; right:27px;}
|
||||
.cboxSlideshow_off #cboxSlideshow:hover{background-position:-125px 0px;}
|
||||
BIN
library/colorbox/example5/images/border.png
Normal file
|
After Width: | Height: | Size: 163 B |
BIN
library/colorbox/example5/images/controls.png
Normal file
|
After Width: | Height: | Size: 2 KiB |
BIN
library/colorbox/example5/images/loading.gif
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
library/colorbox/example5/images/loading_background.png
Normal file
|
After Width: | Height: | Size: 166 B |
87
library/colorbox/example5/index.html
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'/>
|
||||
<title>ColorBox Examples</title>
|
||||
<style>
|
||||
body{font:12px/1.2 Verdana, sans-serif; padding:0 10px;}
|
||||
a:link, a:visited{text-decoration:none; color:#416CE5; border-bottom:1px solid #416CE5;}
|
||||
h2{font-size:13px; margin:15px 0 0 0;}
|
||||
</style>
|
||||
<link rel="stylesheet" href="colorbox.css" />
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
|
||||
<script src="../jquery.colorbox.js"></script>
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
//Examples of how to assign the ColorBox event to elements
|
||||
$(".group1").colorbox({rel:'group1'});
|
||||
$(".group2").colorbox({rel:'group2', transition:"fade"});
|
||||
$(".group3").colorbox({rel:'group3', transition:"none", width:"75%", height:"75%"});
|
||||
$(".group4").colorbox({rel:'group4', slideshow:true});
|
||||
$(".ajax").colorbox();
|
||||
$(".youtube").colorbox({iframe:true, innerWidth:425, innerHeight:344});
|
||||
$(".vimeo").colorbox({iframe:true, innerWidth:500, innerHeight:409});
|
||||
$(".iframe").colorbox({iframe:true, width:"80%", height:"80%"});
|
||||
$(".inline").colorbox({inline:true, width:"50%"});
|
||||
$(".callbacks").colorbox({
|
||||
onOpen:function(){ alert('onOpen: colorbox is about to open'); },
|
||||
onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },
|
||||
onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },
|
||||
onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },
|
||||
onClosed:function(){ alert('onClosed: colorbox has completely closed'); }
|
||||
});
|
||||
|
||||
//Example of preserving a JavaScript event for inline calls.
|
||||
$("#click").click(function(){
|
||||
$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
|
||||
return false;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>ColorBox Demonstration</h1>
|
||||
<h2>Elastic Transition</h2>
|
||||
<p><a class="group1" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group1" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group1" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Fade Transition</h2>
|
||||
<p><a class="group2" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee">Grouped Photo 1</a></p>
|
||||
<p><a class="group2" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group2" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>No Transition + fixed width and height (75% of screen size)</h2>
|
||||
<p><a class="group3" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group3" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group3" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Slideshow</h2>
|
||||
<p><a class="group4" href="../content/ohoopee1.jpg" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a></p>
|
||||
<p><a class="group4" href="../content/ohoopee2.jpg" title="On the Ohoopee as a child">Grouped Photo 2</a></p>
|
||||
<p><a class="group4" href="../content/ohoopee3.jpg" title="On the Ohoopee as an adult">Grouped Photo 3</a></p>
|
||||
|
||||
<h2>Other Content Types</h2>
|
||||
<p><a class='ajax' href="../content/ajax.html" title="Homer Defined">Outside HTML (Ajax)</a></p>
|
||||
<p><a class='youtube' href="http://www.youtube.com/embed/617ANIA5Rqs?rel=0&wmode=transparent" title="The Knife: We Share Our Mother's Health">Flash / Video (Iframe/Direct Link To YouTube)</a></p>
|
||||
<p><a class='vimeo' href="http://player.vimeo.com/video/2285902" title="Röyksopp: Remind Me">Flash / Video (Iframe/Direct Link To Vimeo)</a></p>
|
||||
<p><a class='iframe' href="http://wikipedia.com">Outside Webpage (Iframe)</a></p>
|
||||
<p><a class='inline' href="#inline_content">Inline HTML</a></p>
|
||||
|
||||
<h2>Demonstration of using callbacks</h2>
|
||||
<p><a class='callbacks' href="../content/marylou.jpg" title="Marylou on Cumberland Island">Example with alerts</a>. Callbacks and event-hooks allow users to extend functionality without having to rewrite parts of the plugin.</p>
|
||||
|
||||
<!-- This contains the hidden content for inline calls -->
|
||||
<div style='display:none'>
|
||||
<div id='inline_content' style='padding:10px; background:#fff;'>
|
||||
<p><strong>This content comes from a hidden element on this page.</strong></p>
|
||||
<p>The inline option preserves bound JavaScript events and changes, and it puts the content back where it came from when it is closed.</p>
|
||||
<p><a id="click" href="#" style='padding:5px; background:#ccc;'>Click me, it will be preserved!</a></p>
|
||||
|
||||
<p><strong>If you try to open a new ColorBox while it is already open, it will update itself with the new content.</strong></p>
|
||||
<p>Updating Content Example:<br />
|
||||
<a class="ajax" href="../content/ajax.html">Click here to load new content</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
14
library/colorbox/i18n/jquery.colorbox-cs.js
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
jQuery ColorBox language configuration
|
||||
language: Czech (cs)
|
||||
translated by: Filip Novak
|
||||
site: mame.napilno.cz/filip-novak
|
||||
*/
|
||||
jQuery.extend(jQuery.colorbox.settings, {
|
||||
current: "{current}. obrázek z {total}",
|
||||
previous: "Předchozí",
|
||||
next: "Následující",
|
||||
close: "Zavřít",
|
||||
xhrError: "Obsah se nepodařilo načíst.",
|
||||
imgError: "Obrázek se nepodařilo načíst."
|
||||
});
|
||||
14
library/colorbox/i18n/jquery.colorbox-da.js
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
jQuery ColorBox language configuration
|
||||
language: Danish (da)
|
||||
translated by: danieljuhl
|
||||
site: danieljuhl.dk
|
||||
*/
|
||||
jQuery.extend(jQuery.colorbox.settings, {
|
||||
current: "Billede {current} af {total}",
|
||||
previous: "Forrige",
|
||||
next: "Næste",
|
||||
close: "Luk",
|
||||
xhrError: "Indholdet fejlede i indlæsningen.",
|
||||
imgError: "Billedet fejlede i indlæsningen."
|
||||
});
|
||||
13
library/colorbox/i18n/jquery.colorbox-de.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
jQuery ColorBox language configuration
|
||||
language: German (de)
|
||||
translated by: wallenium
|
||||
*/
|
||||
jQuery.extend(jQuery.colorbox.settings, {
|
||||
current: "Bild {current} von {total}",
|
||||
previous: "Zurück",
|
||||
next: "Vor",
|
||||
close: "Schließen",
|
||||
xhrError: "Dieser Inhalt konnte nicht geladen werden.",
|
||||
imgError: "Dieses Bild konnte nicht geladen werden."
|
||||
});
|
||||
13
library/colorbox/i18n/jquery.colorbox-es.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
jQuery ColorBox language configuration
|
||||
language: Spanish (es)
|
||||
translated by: migolo
|
||||
*/
|
||||
jQuery.extend(jQuery.colorbox.settings, {
|
||||
current: "Imagen {current} de {total}",
|
||||
previous: "Anterior",
|
||||
next: "Siguiente",
|
||||
close: "Cerrar",
|
||||
xhrError: "Error en la carga del contenido.",
|
||||
imgError: "Error en la carga de la imagen."
|
||||
});
|
||||
14
library/colorbox/i18n/jquery.colorbox-fr.js
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
jQuery ColorBox language configuration
|
||||
language: French (fr)
|
||||
translated by: oaubert
|
||||
*/
|
||||
jQuery.extend(jQuery.colorbox.settings, {
|
||||
current: "image {current} sur {total}",
|
||||
previous: "précédente",
|
||||
next: "suivante",
|
||||
close: "fermer",
|
||||
xhrError: "Impossible de charger ce contenu.",
|
||||
imgError: "Impossible de charger cette image."
|
||||
});
|
||||
|
||||
13
library/colorbox/i18n/jquery.colorbox-it.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
jQuery ColorBox language configuration
|
||||
language: Italian (it)
|
||||
translated by: maur8ino
|
||||
*/
|
||||
jQuery.extend(jQuery.colorbox.settings, {
|
||||
current: "Immagine {current} di {total}",
|
||||
previous: "Precedente",
|
||||
next: "Successiva",
|
||||
close: "Chiudi",
|
||||
xhrError: "Errore nel caricamento del contenuto.",
|
||||
imgError: "Errore nel caricamento dell'immagine."
|
||||
});
|
||||
14
library/colorbox/i18n/jquery.colorbox-ru.js
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
jQuery ColorBox language configuration
|
||||
language: Russian (ru)
|
||||
translated by: Marfa
|
||||
site: themarfa.name
|
||||
*/
|
||||
jQuery.extend(jQuery.colorbox.settings, {
|
||||
current: "изображение {current} из {total}",
|
||||
previous: "предыдущее",
|
||||
next: "следующее",
|
||||
close: "закрыть",
|
||||
xhrError: "Не удалось загрузить содержимое.",
|
||||
imgError: "Не удалось загрузить изображение."
|
||||
});
|
||||
BIN
library/colorbox/images/border.png
Normal file
|
After Width: | Height: | Size: 163 B |
BIN
library/colorbox/images/controls.png
Normal file
|
After Width: | Height: | Size: 2 KiB |
BIN
library/colorbox/images/loading.gif
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
library/colorbox/images/loading_background.png
Normal file
|
After Width: | Height: | Size: 166 B |
1
library/colorbox/jquery.colorbox-min.js
vendored
Normal file
975
library/colorbox/jquery.colorbox.js
Normal file
|
|
@ -0,0 +1,975 @@
|
|||
/*
|
||||
jQuery ColorBox v1.3.32 - 2013-01-31
|
||||
(c) 2013 Jack Moore - jacklmoore.com/colorbox
|
||||
license: http://www.opensource.org/licenses/mit-license.php
|
||||
*/
|
||||
(function ($, document, window) {
|
||||
var
|
||||
// Default settings object.
|
||||
// See http://jacklmoore.com/colorbox for details.
|
||||
defaults = {
|
||||
transition: "elastic",
|
||||
speed: 300,
|
||||
width: false,
|
||||
initialWidth: "600",
|
||||
innerWidth: false,
|
||||
maxWidth: false,
|
||||
height: false,
|
||||
initialHeight: "450",
|
||||
innerHeight: false,
|
||||
maxHeight: false,
|
||||
scalePhotos: true,
|
||||
scrolling: true,
|
||||
inline: false,
|
||||
html: false,
|
||||
iframe: false,
|
||||
fastIframe: true,
|
||||
photo: false,
|
||||
href: false,
|
||||
title: false,
|
||||
rel: false,
|
||||
opacity: 0.9,
|
||||
preloading: true,
|
||||
className: false,
|
||||
|
||||
current: "image {current} of {total}",
|
||||
previous: "previous",
|
||||
next: "next",
|
||||
close: "close",
|
||||
xhrError: "This content failed to load.",
|
||||
imgError: "This image failed to load.",
|
||||
|
||||
open: false,
|
||||
returnFocus: true,
|
||||
reposition: true,
|
||||
loop: true,
|
||||
slideshow: false,
|
||||
slideshowAuto: true,
|
||||
slideshowSpeed: 2500,
|
||||
slideshowStart: "start slideshow",
|
||||
slideshowStop: "stop slideshow",
|
||||
onOpen: false,
|
||||
onLoad: false,
|
||||
onComplete: false,
|
||||
onCleanup: false,
|
||||
onClosed: false,
|
||||
overlayClose: true,
|
||||
escKey: true,
|
||||
arrowKey: true,
|
||||
top: false,
|
||||
bottom: false,
|
||||
left: false,
|
||||
right: false,
|
||||
fixed: false,
|
||||
data: undefined
|
||||
},
|
||||
|
||||
// Abstracting the HTML and event identifiers for easy rebranding
|
||||
colorbox = 'colorbox',
|
||||
prefix = 'cbox',
|
||||
boxElement = prefix + 'Element',
|
||||
|
||||
// Events
|
||||
event_open = prefix + '_open',
|
||||
event_load = prefix + '_load',
|
||||
event_complete = prefix + '_complete',
|
||||
event_cleanup = prefix + '_cleanup',
|
||||
event_closed = prefix + '_closed',
|
||||
event_purge = prefix + '_purge',
|
||||
|
||||
// Special Handling for IE
|
||||
isIE = !$.support.leadingWhitespace, // IE6 to IE8
|
||||
isIE6 = isIE && !window.XMLHttpRequest, // IE6
|
||||
event_ie6 = prefix + '_IE6',
|
||||
|
||||
// Cached jQuery Object Variables
|
||||
$overlay,
|
||||
$box,
|
||||
$wrap,
|
||||
$content,
|
||||
$topBorder,
|
||||
$leftBorder,
|
||||
$rightBorder,
|
||||
$bottomBorder,
|
||||
$related,
|
||||
$window,
|
||||
$loaded,
|
||||
$loadingBay,
|
||||
$loadingOverlay,
|
||||
$title,
|
||||
$current,
|
||||
$slideshow,
|
||||
$next,
|
||||
$prev,
|
||||
$close,
|
||||
$groupControls,
|
||||
$events = $({}),
|
||||
|
||||
// Variables for cached values or use across multiple functions
|
||||
settings,
|
||||
interfaceHeight,
|
||||
interfaceWidth,
|
||||
loadedHeight,
|
||||
loadedWidth,
|
||||
element,
|
||||
index,
|
||||
photo,
|
||||
open,
|
||||
active,
|
||||
closing,
|
||||
loadingTimer,
|
||||
publicMethod,
|
||||
div = "div",
|
||||
className,
|
||||
init;
|
||||
|
||||
// ****************
|
||||
// HELPER FUNCTIONS
|
||||
// ****************
|
||||
|
||||
// Convience function for creating new jQuery objects
|
||||
function $tag(tag, id, css) {
|
||||
var element = document.createElement(tag);
|
||||
|
||||
if (id) {
|
||||
element.id = prefix + id;
|
||||
}
|
||||
|
||||
if (css) {
|
||||
element.style.cssText = css;
|
||||
}
|
||||
|
||||
return $(element);
|
||||
}
|
||||
|
||||
// Determine the next and previous members in a group.
|
||||
function getIndex(increment) {
|
||||
var
|
||||
max = $related.length,
|
||||
newIndex = (index + increment) % max;
|
||||
|
||||
return (newIndex < 0) ? max + newIndex : newIndex;
|
||||
}
|
||||
|
||||
// Convert '%' and 'px' values to integers
|
||||
function setSize(size, dimension) {
|
||||
return Math.round((/%/.test(size) ? ((dimension === 'x' ? $window.width() : $window.height()) / 100) : 1) * parseInt(size, 10));
|
||||
}
|
||||
|
||||
// Checks an href to see if it is a photo.
|
||||
// There is a force photo option (photo: true) for hrefs that cannot be matched by this regex.
|
||||
function isImage(url) {
|
||||
return settings.photo || /\.(gif|png|jp(e|g|eg)|bmp|ico)((#|\?).*)?$/i.test(url);
|
||||
}
|
||||
|
||||
// Assigns function results to their respective properties
|
||||
function makeSettings() {
|
||||
var i,
|
||||
data = $.data(element, colorbox);
|
||||
|
||||
if (data == null) {
|
||||
settings = $.extend({}, defaults);
|
||||
if (console && console.log) {
|
||||
console.log('Error: cboxElement missing settings object');
|
||||
}
|
||||
} else {
|
||||
settings = $.extend({}, data);
|
||||
}
|
||||
|
||||
for (i in settings) {
|
||||
if ($.isFunction(settings[i]) && i.slice(0, 2) !== 'on') { // checks to make sure the function isn't one of the callbacks, they will be handled at the appropriate time.
|
||||
settings[i] = settings[i].call(element);
|
||||
}
|
||||
}
|
||||
|
||||
settings.rel = settings.rel || element.rel || $(element).data('rel') || 'nofollow';
|
||||
settings.href = settings.href || $(element).attr('href');
|
||||
settings.title = settings.title || element.title;
|
||||
|
||||
if (typeof settings.href === "string") {
|
||||
settings.href = $.trim(settings.href);
|
||||
}
|
||||
}
|
||||
|
||||
function trigger(event, callback) {
|
||||
// for external use
|
||||
$(document).trigger(event);
|
||||
|
||||
// for internal use
|
||||
$events.trigger(event);
|
||||
|
||||
if ($.isFunction(callback)) {
|
||||
callback.call(element);
|
||||
}
|
||||
}
|
||||
|
||||
// Slideshow functionality
|
||||
function slideshow() {
|
||||
var
|
||||
timeOut,
|
||||
className = prefix + "Slideshow_",
|
||||
click = "click." + prefix,
|
||||
clear,
|
||||
set,
|
||||
start,
|
||||
stop;
|
||||
|
||||
if (settings.slideshow && $related[1]) {
|
||||
clear = function () {
|
||||
clearTimeout(timeOut);
|
||||
};
|
||||
|
||||
set = function () {
|
||||
if (settings.loop || $related[index + 1]) {
|
||||
timeOut = setTimeout(publicMethod.next, settings.slideshowSpeed);
|
||||
}
|
||||
};
|
||||
|
||||
start = function () {
|
||||
$slideshow
|
||||
.html(settings.slideshowStop)
|
||||
.unbind(click)
|
||||
.one(click, stop);
|
||||
|
||||
$events
|
||||
.bind(event_complete, set)
|
||||
.bind(event_load, clear)
|
||||
.bind(event_cleanup, stop);
|
||||
|
||||
$box.removeClass(className + "off").addClass(className + "on");
|
||||
};
|
||||
|
||||
stop = function () {
|
||||
clear();
|
||||
|
||||
$events
|
||||
.unbind(event_complete, set)
|
||||
.unbind(event_load, clear)
|
||||
.unbind(event_cleanup, stop);
|
||||
|
||||
$slideshow
|
||||
.html(settings.slideshowStart)
|
||||
.unbind(click)
|
||||
.one(click, function () {
|
||||
publicMethod.next();
|
||||
start();
|
||||
});
|
||||
|
||||
$box.removeClass(className + "on").addClass(className + "off");
|
||||
};
|
||||
|
||||
if (settings.slideshowAuto) {
|
||||
start();
|
||||
} else {
|
||||
stop();
|
||||
}
|
||||
} else {
|
||||
$box.removeClass(className + "off " + className + "on");
|
||||
}
|
||||
}
|
||||
|
||||
function launch(target) {
|
||||
if (!closing) {
|
||||
|
||||
element = target;
|
||||
|
||||
makeSettings();
|
||||
|
||||
$related = $(element);
|
||||
|
||||
index = 0;
|
||||
|
||||
if (settings.rel !== 'nofollow') {
|
||||
$related = $('.' + boxElement).filter(function () {
|
||||
var data = $.data(this, colorbox),
|
||||
relRelated;
|
||||
|
||||
if (data) {
|
||||
relRelated = $(this).data('rel') || data.rel || this.rel;
|
||||
}
|
||||
|
||||
return (relRelated === settings.rel);
|
||||
});
|
||||
index = $related.index(element);
|
||||
|
||||
// Check direct calls to ColorBox.
|
||||
if (index === -1) {
|
||||
$related = $related.add(element);
|
||||
index = $related.length - 1;
|
||||
}
|
||||
}
|
||||
|
||||
if (!open) {
|
||||
open = active = true; // Prevents the page-change action from queuing up if the visitor holds down the left or right keys.
|
||||
|
||||
// Show colorbox so the sizes can be calculated in older versions of jQuery
|
||||
$box.css({visibility:'hidden', display:'block'});
|
||||
|
||||
$loaded = $tag(div, 'LoadedContent', 'width:0; height:0; overflow:hidden').appendTo($content);
|
||||
|
||||
// Cache values needed for size calculations
|
||||
interfaceHeight = $topBorder.height() + $bottomBorder.height() + $content.outerHeight(true) - $content.height();//Subtraction needed for IE6
|
||||
interfaceWidth = $leftBorder.width() + $rightBorder.width() + $content.outerWidth(true) - $content.width();
|
||||
loadedHeight = $loaded.outerHeight(true);
|
||||
loadedWidth = $loaded.outerWidth(true);
|
||||
|
||||
if (settings.returnFocus) {
|
||||
$(element).blur();
|
||||
$events.one(event_closed, function () {
|
||||
$(element).focus();
|
||||
});
|
||||
}
|
||||
|
||||
$overlay.css({
|
||||
opacity: parseFloat(settings.opacity),
|
||||
cursor: settings.overlayClose ? "pointer" : "auto",
|
||||
visibility: 'visible'
|
||||
}).show();
|
||||
|
||||
// Opens inital empty ColorBox prior to content being loaded.
|
||||
settings.w = setSize(settings.initialWidth, 'x');
|
||||
settings.h = setSize(settings.initialHeight, 'y');
|
||||
publicMethod.position();
|
||||
|
||||
if (isIE6) {
|
||||
$window.bind('resize.' + event_ie6 + ' scroll.' + event_ie6, function () {
|
||||
$overlay.css({width: $window.width(), height: $window.height(), top: $window.scrollTop(), left: $window.scrollLeft()});
|
||||
}).trigger('resize.' + event_ie6);
|
||||
}
|
||||
|
||||
slideshow();
|
||||
|
||||
trigger(event_open, settings.onOpen);
|
||||
|
||||
$groupControls.add($title).hide();
|
||||
|
||||
$close.html(settings.close).show();
|
||||
}
|
||||
|
||||
publicMethod.load(true);
|
||||
}
|
||||
}
|
||||
|
||||
// ColorBox's markup needs to be added to the DOM prior to being called
|
||||
// so that the browser will go ahead and load the CSS background images.
|
||||
function appendHTML() {
|
||||
if (!$box && document.body) {
|
||||
init = false;
|
||||
|
||||
$window = $(window);
|
||||
$box = $tag(div).attr({id: colorbox, 'class': isIE ? prefix + (isIE6 ? 'IE6' : 'IE') : ''}).hide();
|
||||
$overlay = $tag(div, "Overlay", isIE6 ? 'position:absolute' : '').hide();
|
||||
$loadingOverlay = $tag(div, "LoadingOverlay").add($tag(div, "LoadingGraphic"));
|
||||
$wrap = $tag(div, "Wrapper");
|
||||
$content = $tag(div, "Content").append(
|
||||
$title = $tag(div, "Title"),
|
||||
$current = $tag(div, "Current"),
|
||||
$next = $tag(div, "Next"),
|
||||
$prev = $tag(div, "Previous"),
|
||||
$slideshow = $tag(div, "Slideshow"),
|
||||
$close = $tag(div, "Close")
|
||||
);
|
||||
|
||||
$wrap.append( // The 3x3 Grid that makes up ColorBox
|
||||
$tag(div).append(
|
||||
$tag(div, "TopLeft"),
|
||||
$topBorder = $tag(div, "TopCenter"),
|
||||
$tag(div, "TopRight")
|
||||
),
|
||||
$tag(div, false, 'clear:left').append(
|
||||
$leftBorder = $tag(div, "MiddleLeft"),
|
||||
$content,
|
||||
$rightBorder = $tag(div, "MiddleRight")
|
||||
),
|
||||
$tag(div, false, 'clear:left').append(
|
||||
$tag(div, "BottomLeft"),
|
||||
$bottomBorder = $tag(div, "BottomCenter"),
|
||||
$tag(div, "BottomRight")
|
||||
)
|
||||
).find('div div').css({'float': 'left'});
|
||||
|
||||
$loadingBay = $tag(div, false, 'position:absolute; width:9999px; visibility:hidden; display:none');
|
||||
|
||||
$groupControls = $next.add($prev).add($current).add($slideshow);
|
||||
|
||||
$(document.body).append($overlay, $box.append($wrap, $loadingBay));
|
||||
}
|
||||
}
|
||||
|
||||
// Add ColorBox's event bindings
|
||||
function addBindings() {
|
||||
function clickHandler(e) {
|
||||
// ignore non-left-mouse-clicks and clicks modified with ctrl / command, shift, or alt.
|
||||
// See: http://jacklmoore.com/notes/click-events/
|
||||
if (!(e.which > 1 || e.shiftKey || e.altKey || e.metaKey)) {
|
||||
e.preventDefault();
|
||||
launch(this);
|
||||
}
|
||||
}
|
||||
|
||||
if ($box) {
|
||||
if (!init) {
|
||||
init = true;
|
||||
|
||||
// Anonymous functions here keep the public method from being cached, thereby allowing them to be redefined on the fly.
|
||||
$next.click(function () {
|
||||
publicMethod.next();
|
||||
});
|
||||
$prev.click(function () {
|
||||
publicMethod.prev();
|
||||
});
|
||||
$close.click(function () {
|
||||
publicMethod.close();
|
||||
});
|
||||
$overlay.click(function () {
|
||||
if (settings.overlayClose) {
|
||||
publicMethod.close();
|
||||
}
|
||||
});
|
||||
|
||||
// Key Bindings
|
||||
$(document).bind('keydown.' + prefix, function (e) {
|
||||
var key = e.keyCode;
|
||||
if (open && settings.escKey && key === 27) {
|
||||
e.preventDefault();
|
||||
publicMethod.close();
|
||||
}
|
||||
if (open && settings.arrowKey && $related[1]) {
|
||||
if (key === 37) {
|
||||
e.preventDefault();
|
||||
$prev.click();
|
||||
} else if (key === 39) {
|
||||
e.preventDefault();
|
||||
$next.click();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
if ($.isFunction($.fn.on)) {
|
||||
$(document).on('click.'+prefix, '.'+boxElement, clickHandler);
|
||||
} else { // For jQuery 1.3.x -> 1.6.x
|
||||
$('.'+boxElement).live('click.'+prefix, clickHandler);
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// Don't do anything if ColorBox already exists.
|
||||
if ($.colorbox) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Append the HTML when the DOM loads
|
||||
$(appendHTML);
|
||||
|
||||
|
||||
// ****************
|
||||
// PUBLIC FUNCTIONS
|
||||
// Usage format: $.fn.colorbox.close();
|
||||
// Usage from within an iframe: parent.$.fn.colorbox.close();
|
||||
// ****************
|
||||
|
||||
publicMethod = $.fn[colorbox] = $[colorbox] = function (options, callback) {
|
||||
var $this = this;
|
||||
|
||||
options = options || {};
|
||||
|
||||
appendHTML();
|
||||
|
||||
if (addBindings()) {
|
||||
if ($.isFunction($this)) { // assume a call to $.colorbox
|
||||
$this = $('<a/>');
|
||||
options.open = true;
|
||||
} else if (!$this[0]) { // colorbox being applied to empty collection
|
||||
return $this;
|
||||
}
|
||||
|
||||
if (callback) {
|
||||
options.onComplete = callback;
|
||||
}
|
||||
|
||||
$this.each(function () {
|
||||
$.data(this, colorbox, $.extend({}, $.data(this, colorbox) || defaults, options));
|
||||
}).addClass(boxElement);
|
||||
|
||||
if (($.isFunction(options.open) && options.open.call($this)) || options.open) {
|
||||
launch($this[0]);
|
||||
}
|
||||
}
|
||||
|
||||
return $this;
|
||||
};
|
||||
|
||||
publicMethod.position = function (speed, loadedCallback) {
|
||||
var
|
||||
css,
|
||||
top = 0,
|
||||
left = 0,
|
||||
offset = $box.offset(),
|
||||
scrollTop,
|
||||
scrollLeft;
|
||||
|
||||
$window.unbind('resize.' + prefix);
|
||||
|
||||
// remove the modal so that it doesn't influence the document width/height
|
||||
$box.css({top: -9e4, left: -9e4});
|
||||
|
||||
scrollTop = $window.scrollTop();
|
||||
scrollLeft = $window.scrollLeft();
|
||||
|
||||
if (settings.fixed && !isIE6) {
|
||||
offset.top -= scrollTop;
|
||||
offset.left -= scrollLeft;
|
||||
$box.css({position: 'fixed'});
|
||||
} else {
|
||||
top = scrollTop;
|
||||
left = scrollLeft;
|
||||
$box.css({position: 'absolute'});
|
||||
}
|
||||
|
||||
// keeps the top and left positions within the browser's viewport.
|
||||
if (settings.right !== false) {
|
||||
left += Math.max($window.width() - settings.w - loadedWidth - interfaceWidth - setSize(settings.right, 'x'), 0);
|
||||
} else if (settings.left !== false) {
|
||||
left += setSize(settings.left, 'x');
|
||||
} else {
|
||||
left += Math.round(Math.max($window.width() - settings.w - loadedWidth - interfaceWidth, 0) / 2);
|
||||
}
|
||||
|
||||
if (settings.bottom !== false) {
|
||||
top += Math.max($window.height() - settings.h - loadedHeight - interfaceHeight - setSize(settings.bottom, 'y'), 0);
|
||||
} else if (settings.top !== false) {
|
||||
top += setSize(settings.top, 'y');
|
||||
} else {
|
||||
top += Math.round(Math.max($window.height() - settings.h - loadedHeight - interfaceHeight, 0) / 2);
|
||||
}
|
||||
|
||||
$box.css({top: offset.top, left: offset.left, visibility:'visible'});
|
||||
|
||||
// setting the speed to 0 to reduce the delay between same-sized content.
|
||||
speed = ($box.width() === settings.w + loadedWidth && $box.height() === settings.h + loadedHeight) ? 0 : speed || 0;
|
||||
|
||||
// this gives the wrapper plenty of breathing room so it's floated contents can move around smoothly,
|
||||
// but it has to be shrank down around the size of div#colorbox when it's done. If not,
|
||||
// it can invoke an obscure IE bug when using iframes.
|
||||
$wrap[0].style.width = $wrap[0].style.height = "9999px";
|
||||
|
||||
function modalDimensions(that) {
|
||||
$topBorder[0].style.width = $bottomBorder[0].style.width = $content[0].style.width = (parseInt(that.style.width,10) - interfaceWidth)+'px';
|
||||
$content[0].style.height = $leftBorder[0].style.height = $rightBorder[0].style.height = (parseInt(that.style.height,10) - interfaceHeight)+'px';
|
||||
}
|
||||
|
||||
css = {width: settings.w + loadedWidth + interfaceWidth, height: settings.h + loadedHeight + interfaceHeight, top: top, left: left};
|
||||
|
||||
if(speed===0){ // temporary workaround to side-step jQuery-UI 1.8 bug (http://bugs.jquery.com/ticket/12273)
|
||||
$box.css(css);
|
||||
}
|
||||
$box.dequeue().animate(css, {
|
||||
duration: speed,
|
||||
complete: function () {
|
||||
modalDimensions(this);
|
||||
|
||||
active = false;
|
||||
|
||||
// shrink the wrapper down to exactly the size of colorbox to avoid a bug in IE's iframe implementation.
|
||||
$wrap[0].style.width = (settings.w + loadedWidth + interfaceWidth) + "px";
|
||||
$wrap[0].style.height = (settings.h + loadedHeight + interfaceHeight) + "px";
|
||||
|
||||
if (settings.reposition) {
|
||||
setTimeout(function () { // small delay before binding onresize due to an IE8 bug.
|
||||
$window.bind('resize.' + prefix, publicMethod.position);
|
||||
}, 1);
|
||||
}
|
||||
|
||||
if (loadedCallback) {
|
||||
loadedCallback();
|
||||
}
|
||||
},
|
||||
step: function () {
|
||||
modalDimensions(this);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
publicMethod.resize = function (options) {
|
||||
if (open) {
|
||||
options = options || {};
|
||||
|
||||
if (options.width) {
|
||||
settings.w = setSize(options.width, 'x') - loadedWidth - interfaceWidth;
|
||||
}
|
||||
if (options.innerWidth) {
|
||||
settings.w = setSize(options.innerWidth, 'x');
|
||||
}
|
||||
$loaded.css({width: settings.w});
|
||||
|
||||
if (options.height) {
|
||||
settings.h = setSize(options.height, 'y') - loadedHeight - interfaceHeight;
|
||||
}
|
||||
if (options.innerHeight) {
|
||||
settings.h = setSize(options.innerHeight, 'y');
|
||||
}
|
||||
if (!options.innerHeight && !options.height) {
|
||||
$loaded.css({height: "auto"});
|
||||
settings.h = $loaded.height();
|
||||
}
|
||||
$loaded.css({height: settings.h});
|
||||
|
||||
publicMethod.position(settings.transition === "none" ? 0 : settings.speed);
|
||||
}
|
||||
};
|
||||
|
||||
publicMethod.prep = function (object) {
|
||||
if (!open) {
|
||||
return;
|
||||
}
|
||||
|
||||
var callback, speed = settings.transition === "none" ? 0 : settings.speed;
|
||||
|
||||
$loaded.empty().remove(); // Using empty first may prevent some IE7 issues.
|
||||
|
||||
$loaded = $tag(div, 'LoadedContent').append(object);
|
||||
|
||||
function getWidth() {
|
||||
settings.w = settings.w || $loaded.width();
|
||||
settings.w = settings.mw && settings.mw < settings.w ? settings.mw : settings.w;
|
||||
return settings.w;
|
||||
}
|
||||
function getHeight() {
|
||||
settings.h = settings.h || $loaded.height();
|
||||
settings.h = settings.mh && settings.mh < settings.h ? settings.mh : settings.h;
|
||||
return settings.h;
|
||||
}
|
||||
|
||||
$loaded.hide()
|
||||
.appendTo($loadingBay.show())// content has to be appended to the DOM for accurate size calculations.
|
||||
.css({width: getWidth(), overflow: settings.scrolling ? 'auto' : 'hidden'})
|
||||
.css({height: getHeight()})// sets the height independently from the width in case the new width influences the value of height.
|
||||
.prependTo($content);
|
||||
|
||||
$loadingBay.hide();
|
||||
|
||||
// floating the IMG removes the bottom line-height and fixed a problem where IE miscalculates the width of the parent element as 100% of the document width.
|
||||
//$(photo).css({'float': 'none', marginLeft: 'auto', marginRight: 'auto'});
|
||||
|
||||
$(photo).css({'float': 'none'});
|
||||
|
||||
|
||||
callback = function () {
|
||||
var total = $related.length,
|
||||
iframe,
|
||||
frameBorder = 'frameBorder',
|
||||
allowTransparency = 'allowTransparency',
|
||||
complete;
|
||||
|
||||
if (!open) {
|
||||
return;
|
||||
}
|
||||
|
||||
function removeFilter() {
|
||||
if (isIE) {
|
||||
$box[0].style.removeAttribute('filter');
|
||||
}
|
||||
}
|
||||
|
||||
complete = function () {
|
||||
clearTimeout(loadingTimer);
|
||||
$loadingOverlay.remove();
|
||||
trigger(event_complete, settings.onComplete);
|
||||
};
|
||||
|
||||
if (isIE) {
|
||||
//This fadeIn helps the bicubic resampling to kick-in.
|
||||
if (photo) {
|
||||
$loaded.fadeIn(100);
|
||||
}
|
||||
}
|
||||
|
||||
$title.html(settings.title).add($loaded).show();
|
||||
|
||||
if (total > 1) { // handle grouping
|
||||
if (typeof settings.current === "string") {
|
||||
$current.html(settings.current.replace('{current}', index + 1).replace('{total}', total)).show();
|
||||
}
|
||||
|
||||
$next[(settings.loop || index < total - 1) ? "show" : "hide"]().html(settings.next);
|
||||
$prev[(settings.loop || index) ? "show" : "hide"]().html(settings.previous);
|
||||
|
||||
if (settings.slideshow) {
|
||||
$slideshow.show();
|
||||
}
|
||||
|
||||
// Preloads images within a rel group
|
||||
if (settings.preloading) {
|
||||
$.each([getIndex(-1), getIndex(1)], function(){
|
||||
var src,
|
||||
img,
|
||||
i = $related[this],
|
||||
data = $.data(i, colorbox);
|
||||
|
||||
if (data && data.href) {
|
||||
src = data.href;
|
||||
if ($.isFunction(src)) {
|
||||
src = src.call(i);
|
||||
}
|
||||
} else {
|
||||
src = $(i).attr('href');
|
||||
}
|
||||
|
||||
if (src && (isImage(src) || data.photo)) {
|
||||
img = new Image();
|
||||
img.src = src;
|
||||
}
|
||||
});
|
||||
}
|
||||
} else {
|
||||
$groupControls.hide();
|
||||
}
|
||||
|
||||
if (settings.iframe) {
|
||||
iframe = $tag('iframe')[0];
|
||||
|
||||
if (frameBorder in iframe) {
|
||||
iframe[frameBorder] = 0;
|
||||
}
|
||||
|
||||
if (allowTransparency in iframe) {
|
||||
iframe[allowTransparency] = "true";
|
||||
}
|
||||
|
||||
if (!settings.scrolling) {
|
||||
iframe.scrolling = "no";
|
||||
}
|
||||
|
||||
$(iframe)
|
||||
.attr({
|
||||
src: settings.href,
|
||||
name: (new Date()).getTime(), // give the iframe a unique name to prevent caching
|
||||
'class': prefix + 'Iframe',
|
||||
allowFullScreen : true, // allow HTML5 video to go fullscreen
|
||||
webkitAllowFullScreen : true,
|
||||
mozallowfullscreen : true
|
||||
})
|
||||
.one('load', complete)
|
||||
.appendTo($loaded);
|
||||
|
||||
$events.one(event_purge, function () {
|
||||
iframe.src = "//about:blank";
|
||||
});
|
||||
|
||||
if (settings.fastIframe) {
|
||||
$(iframe).trigger('load');
|
||||
}
|
||||
} else {
|
||||
complete();
|
||||
}
|
||||
|
||||
if (settings.transition === 'fade') {
|
||||
$box.fadeTo(speed, 1, removeFilter);
|
||||
} else {
|
||||
removeFilter();
|
||||
}
|
||||
};
|
||||
|
||||
if (settings.transition === 'fade') {
|
||||
$box.fadeTo(speed, 0, function () {
|
||||
publicMethod.position(0, callback);
|
||||
});
|
||||
} else {
|
||||
publicMethod.position(speed, callback);
|
||||
}
|
||||
};
|
||||
|
||||
publicMethod.load = function (launched) {
|
||||
var href, setResize, prep = publicMethod.prep, $inline;
|
||||
|
||||
active = true;
|
||||
|
||||
photo = false;
|
||||
|
||||
element = $related[index];
|
||||
|
||||
if (!launched) {
|
||||
makeSettings();
|
||||
}
|
||||
|
||||
if (className) {
|
||||
$box.add($overlay).removeClass(className);
|
||||
}
|
||||
if (settings.className) {
|
||||
$box.add($overlay).addClass(settings.className);
|
||||
}
|
||||
className = settings.className;
|
||||
|
||||
trigger(event_purge);
|
||||
|
||||
trigger(event_load, settings.onLoad);
|
||||
|
||||
settings.h = settings.height ?
|
||||
setSize(settings.height, 'y') - loadedHeight - interfaceHeight :
|
||||
settings.innerHeight && setSize(settings.innerHeight, 'y');
|
||||
|
||||
settings.w = settings.width ?
|
||||
setSize(settings.width, 'x') - loadedWidth - interfaceWidth :
|
||||
settings.innerWidth && setSize(settings.innerWidth, 'x');
|
||||
|
||||
// Sets the minimum dimensions for use in image scaling
|
||||
settings.mw = settings.w;
|
||||
settings.mh = settings.h;
|
||||
|
||||
// Re-evaluate the minimum width and height based on maxWidth and maxHeight values.
|
||||
// If the width or height exceed the maxWidth or maxHeight, use the maximum values instead.
|
||||
if (settings.maxWidth) {
|
||||
settings.mw = setSize(settings.maxWidth, 'x') - loadedWidth - interfaceWidth;
|
||||
settings.mw = settings.w && settings.w < settings.mw ? settings.w : settings.mw;
|
||||
}
|
||||
if (settings.maxHeight) {
|
||||
settings.mh = setSize(settings.maxHeight, 'y') - loadedHeight - interfaceHeight;
|
||||
settings.mh = settings.h && settings.h < settings.mh ? settings.h : settings.mh;
|
||||
}
|
||||
|
||||
href = settings.href;
|
||||
|
||||
loadingTimer = setTimeout(function () {
|
||||
$loadingOverlay.appendTo($content);
|
||||
}, 100);
|
||||
|
||||
if (settings.inline) {
|
||||
// Inserts an empty placeholder where inline content is being pulled from.
|
||||
// An event is bound to put inline content back when ColorBox closes or loads new content.
|
||||
$inline = $tag(div).hide().insertBefore($(href)[0]);
|
||||
|
||||
$events.one(event_purge, function () {
|
||||
$inline.replaceWith($loaded.children());
|
||||
});
|
||||
|
||||
prep($(href));
|
||||
} else if (settings.iframe) {
|
||||
// IFrame element won't be added to the DOM until it is ready to be displayed,
|
||||
// to avoid problems with DOM-ready JS that might be trying to run in that iframe.
|
||||
prep(" ");
|
||||
} else if (settings.html) {
|
||||
prep(settings.html);
|
||||
} else if (isImage(href)) {
|
||||
$(photo = new Image())
|
||||
.addClass(prefix + 'Photo')
|
||||
.bind('error',function () {
|
||||
settings.title = false;
|
||||
prep($tag(div, 'Error').html(settings.imgError));
|
||||
})
|
||||
.one('load', function () {
|
||||
var percent;
|
||||
|
||||
if (settings.scalePhotos) {
|
||||
setResize = function () {
|
||||
photo.height -= photo.height * percent;
|
||||
photo.width -= photo.width * percent;
|
||||
};
|
||||
if (settings.mw && photo.width > settings.mw) {
|
||||
percent = (photo.width - settings.mw) / photo.width;
|
||||
setResize();
|
||||
}
|
||||
if (settings.mh && photo.height > settings.mh) {
|
||||
percent = (photo.height - settings.mh) / photo.height;
|
||||
setResize();
|
||||
}
|
||||
}
|
||||
|
||||
if (settings.h) {
|
||||
photo.style.marginTop = Math.max(settings.mh - photo.height, 0) / 2 + 'px';
|
||||
}
|
||||
|
||||
if ($related[1] && (settings.loop || $related[index + 1])) {
|
||||
photo.style.cursor = 'pointer';
|
||||
photo.onclick = function () {
|
||||
publicMethod.next();
|
||||
};
|
||||
}
|
||||
|
||||
if (isIE) {
|
||||
photo.style.msInterpolationMode = 'bicubic';
|
||||
}
|
||||
|
||||
setTimeout(function () { // A pause because Chrome will sometimes report a 0 by 0 size otherwise.
|
||||
prep(photo);
|
||||
}, 1);
|
||||
});
|
||||
|
||||
setTimeout(function () { // A pause because Opera 10.6+ will sometimes not run the onload function otherwise.
|
||||
photo.src = href;
|
||||
}, 1);
|
||||
} else if (href) {
|
||||
$loadingBay.load(href, settings.data, function (data, status) {
|
||||
prep(status === 'error' ? $tag(div, 'Error').html(settings.xhrError) : $(this).contents());
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
// Navigates to the next page/image in a set.
|
||||
publicMethod.next = function () {
|
||||
if (!active && $related[1] && (settings.loop || $related[index + 1])) {
|
||||
index = getIndex(1);
|
||||
publicMethod.load();
|
||||
}
|
||||
};
|
||||
|
||||
publicMethod.prev = function () {
|
||||
if (!active && $related[1] && (settings.loop || index)) {
|
||||
index = getIndex(-1);
|
||||
publicMethod.load();
|
||||
}
|
||||
};
|
||||
|
||||
// Note: to use this within an iframe use the following format: parent.$.fn.colorbox.close();
|
||||
publicMethod.close = function () {
|
||||
if (open && !closing) {
|
||||
|
||||
closing = true;
|
||||
|
||||
open = false;
|
||||
|
||||
trigger(event_cleanup, settings.onCleanup);
|
||||
|
||||
$window.unbind('.' + prefix + ' .' + event_ie6);
|
||||
|
||||
$overlay.fadeTo(200, 0);
|
||||
|
||||
$box.stop().fadeTo(300, 0, function () {
|
||||
|
||||
$box.add($overlay).css({'opacity': 1, cursor: 'auto'}).hide();
|
||||
|
||||
trigger(event_purge);
|
||||
|
||||
$loaded.empty().remove(); // Using empty first may prevent some IE7 issues.
|
||||
|
||||
setTimeout(function () {
|
||||
closing = false;
|
||||
trigger(event_closed, settings.onClosed);
|
||||
}, 1);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
// Removes changes ColorBox made to the document, but does not remove the plugin
|
||||
// from jQuery.
|
||||
publicMethod.remove = function () {
|
||||
$([]).add($box).add($overlay).remove();
|
||||
$box = null;
|
||||
$('.' + boxElement)
|
||||
.removeData(colorbox)
|
||||
.removeClass(boxElement);
|
||||
|
||||
$(document).unbind('click.'+prefix);
|
||||
};
|
||||
|
||||
// A method for fetching the current element ColorBox is referencing.
|
||||
// returns a jQuery object.
|
||||
publicMethod.element = function () {
|
||||
return $(element);
|
||||
};
|
||||
|
||||
publicMethod.settings = defaults;
|
||||
|
||||
}(jQuery, document, window));
|
||||
|
|
@ -980,10 +980,14 @@ function admin_page_themes(&$a){
|
|||
|
||||
toggle_theme($themes,$theme,$result);
|
||||
$s = rebuild_theme_table($themes);
|
||||
if($result)
|
||||
if($result) {
|
||||
install_theme($theme);
|
||||
info( sprintf('Theme %s enabled.',$theme));
|
||||
else
|
||||
}
|
||||
else {
|
||||
uninstall_theme($theme);
|
||||
info( sprintf('Theme %s disabled.',$theme));
|
||||
}
|
||||
|
||||
set_config('system','allowed_themes',$s);
|
||||
goaway($a->get_baseurl(true) . '/admin/themes' );
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ function dfrn_poll_init(&$a) {
|
|||
$sec = ((x($_GET,'sec')) ? $_GET['sec'] : '');
|
||||
$dfrn_version = ((x($_GET,'dfrn_version')) ? (float) $_GET['dfrn_version'] : 2.0);
|
||||
$perm = ((x($_GET,'perm')) ? $_GET['perm'] : 'r');
|
||||
$quiet = ((x($_GET,'quiet')) ? true : false);
|
||||
|
||||
$direction = (-1);
|
||||
|
||||
|
|
@ -96,7 +97,8 @@ function dfrn_poll_init(&$a) {
|
|||
$_SESSION['visitor_home'] = $r[0]['url'];
|
||||
$_SESSION['visitor_handle'] = $r[0]['addr'];
|
||||
$_SESSION['visitor_visiting'] = $r[0]['uid'];
|
||||
info( sprintf(t('%1$s welcomes %2$s'), $r[0]['username'] , $r[0]['name']) . EOL);
|
||||
if(!$quiet)
|
||||
info( sprintf(t('%1$s welcomes %2$s'), $r[0]['username'] , $r[0]['name']) . EOL);
|
||||
// Visitors get 1 day session.
|
||||
$session_id = session_id();
|
||||
$expire = time() + 86400;
|
||||
|
|
@ -385,6 +387,7 @@ function dfrn_poll_content(&$a) {
|
|||
$sec = ((x($_GET,'sec')) ? $_GET['sec'] : '');
|
||||
$dfrn_version = ((x($_GET,'dfrn_version')) ? (float) $_GET['dfrn_version'] : 2.0);
|
||||
$perm = ((x($_GET,'perm')) ? $_GET['perm'] : 'r');
|
||||
$quiet = ((x($_GET,'quiet')) ? true : false);
|
||||
|
||||
$direction = (-1);
|
||||
if(strpos($dfrn_id,':') == 1) {
|
||||
|
|
@ -527,7 +530,8 @@ function dfrn_poll_content(&$a) {
|
|||
$_SESSION['visitor_id'] = $r[0]['id'];
|
||||
$_SESSION['visitor_home'] = $r[0]['url'];
|
||||
$_SESSION['visitor_visiting'] = $r[0]['uid'];
|
||||
info( sprintf(t('%1$s welcomes %2$s'), $r[0]['username'] , $r[0]['name']) . EOL);
|
||||
if(!$quiet)
|
||||
info( sprintf(t('%1$s welcomes %2$s'), $r[0]['username'] , $r[0]['name']) . EOL);
|
||||
// Visitors get 1 day session.
|
||||
$session_id = session_id();
|
||||
$expire = time() + 86400;
|
||||
|
|
|
|||
|
|
@ -122,7 +122,6 @@ function display_content(&$a, $update = 0) {
|
|||
|
||||
if($update) {
|
||||
|
||||
dbg(1);
|
||||
$r = q("SELECT id FROM item WHERE item.uid = %d
|
||||
AND `item`.`parent` = ( SELECT `parent` FROM `item` WHERE ( `id` = '%s' OR `uri` = '%s' ))
|
||||
$sql_extra AND unseen = 1",
|
||||
|
|
@ -130,7 +129,7 @@ dbg(1);
|
|||
dbesc($item_id),
|
||||
dbesc($item_id)
|
||||
);
|
||||
dbg(0);
|
||||
|
||||
if(!$r)
|
||||
return '';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -260,13 +260,15 @@ function events_content(&$a) {
|
|||
$r = q("SELECT `event`.*, `item`.`id` AS `itemid`,`item`.`plink`,
|
||||
`item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event` LEFT JOIN `item` ON `item`.`event-id` = `event`.`id`
|
||||
WHERE `event`.`uid` = %d and event.ignore = %d
|
||||
AND (( `adjust` = 0 AND ( `finish` >= '%s' or nofinish ) AND `start` <= '%s' )
|
||||
OR ( `adjust` = 1 AND ( `finish` >= '%s' or nofinish ) AND `start` <= '%s' )) ",
|
||||
AND (( `adjust` = 0 AND ( `finish` >= '%s' OR ( nofinish AND start >= '%s' ) ) AND `start` <= '%s' )
|
||||
OR ( `adjust` = 1 AND ( `finish` >= '%s' OR ( nofinish AND start >= '%s' ) ) AND `start` <= '%s' )) ",
|
||||
intval(local_user()),
|
||||
intval($ignored),
|
||||
dbesc($start),
|
||||
dbesc($start),
|
||||
dbesc($finish),
|
||||
dbesc($adjust_start),
|
||||
dbesc($adjust_start),
|
||||
dbesc($adjust_finish)
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -148,7 +148,7 @@ function poco_init(&$a) {
|
|||
if($format === 'xml') {
|
||||
header('Content-type: text/xml');
|
||||
echo replace_macros(get_markup_template('poco_xml.tpl'),array_xmlify(array('$response' => $ret)));
|
||||
http_status_exit(500);
|
||||
killme();
|
||||
}
|
||||
if($format === 'json') {
|
||||
header('Content-type: application/json');
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
function redir_init(&$a) {
|
||||
|
||||
$url = ((x($_GET,'url')) ? $_GET['url'] : '');
|
||||
$quiet = ((x($_GET,'quiet')) ? '&quiet=1' : '');
|
||||
|
||||
// traditional DFRN
|
||||
|
||||
|
|
@ -43,7 +44,7 @@ function redir_init(&$a) {
|
|||
logger('mod_redir: ' . $r[0]['name'] . ' ' . $sec, LOGGER_DEBUG);
|
||||
$dest = (($url) ? '&destination_url=' . $url : '');
|
||||
goaway ($r[0]['poll'] . '?dfrn_id=' . $dfrn_id
|
||||
. '&dfrn_version=' . DFRN_PROTOCOL_VERSION . '&type=profile&sec=' . $sec . $dest );
|
||||
. '&dfrn_version=' . DFRN_PROTOCOL_VERSION . '&type=profile&sec=' . $sec . $dest . $quiet );
|
||||
}
|
||||
|
||||
if(local_user())
|
||||
|
|
|
|||
1060
util/messages.po
|
|
@ -6,9 +6,9 @@
|
|||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3.1.1601\n"
|
||||
"Project-Id-Version: 3.1.1612\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-01-27 10:00-0800\n"
|
||||
"POT-Creation-Date: 2013-02-07 10:00-0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -37,11 +37,11 @@ msgstr ""
|
|||
|
||||
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
|
||||
#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
|
||||
#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995
|
||||
#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:1041
|
||||
#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
|
||||
#: ../../mod/notifications.php:66 ../../mod/contacts.php:147
|
||||
#: ../../mod/settings.php:91 ../../mod/settings.php:542
|
||||
#: ../../mod/settings.php:547 ../../mod/manage.php:90 ../../mod/network.php:6
|
||||
#: ../../mod/settings.php:547 ../../mod/manage.php:96 ../../mod/network.php:6
|
||||
#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
|
||||
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
|
||||
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
|
||||
|
|
@ -50,17 +50,17 @@ msgstr ""
|
|||
#: ../../mod/item.php:155 ../../mod/mood.php:114
|
||||
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
|
||||
#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
|
||||
#: ../../mod/message.php:38 ../../mod/message.php:172
|
||||
#: ../../mod/message.php:38 ../../mod/message.php:174
|
||||
#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
|
||||
#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
|
||||
#: ../../mod/display.php:180 ../../mod/profiles.php:146
|
||||
#: ../../mod/profiles.php:567 ../../mod/delegate.php:6
|
||||
#: ../../mod/suggest.php:28 ../../mod/invite.php:15 ../../mod/invite.php:101
|
||||
#: ../../mod/suggest.php:56 ../../mod/invite.php:15 ../../mod/invite.php:101
|
||||
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:512
|
||||
#: ../../addon/facebook/facebook.php:518 ../../addon/fbpost/fbpost.php:170
|
||||
#: ../../addon/fbpost/fbpost.php:176
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:354
|
||||
#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:3987
|
||||
#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:4015
|
||||
#: ../../index.php:341 ../../addon.old/facebook/facebook.php:510
|
||||
#: ../../addon.old/facebook/facebook.php:516
|
||||
#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
|
||||
|
|
@ -131,19 +131,20 @@ msgid "New photo from this URL"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
|
||||
#: ../../mod/events.php:466 ../../mod/photos.php:1028
|
||||
#: ../../mod/photos.php:1118 ../../mod/photos.php:1402
|
||||
#: ../../mod/photos.php:1442 ../../mod/photos.php:1486
|
||||
#: ../../mod/photos.php:1569 ../../mod/install.php:248
|
||||
#: ../../mod/events.php:478 ../../mod/photos.php:1075
|
||||
#: ../../mod/photos.php:1196 ../../mod/photos.php:1498
|
||||
#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
|
||||
#: ../../mod/photos.php:1676 ../../mod/install.php:248
|
||||
#: ../../mod/install.php:286 ../../mod/localtime.php:45 ../../mod/poke.php:199
|
||||
#: ../../mod/content.php:710 ../../mod/contacts.php:352
|
||||
#: ../../mod/content.php:710 ../../mod/contacts.php:386
|
||||
#: ../../mod/settings.php:560 ../../mod/settings.php:670
|
||||
#: ../../mod/settings.php:739 ../../mod/settings.php:811
|
||||
#: ../../mod/settings.php:1018 ../../mod/group.php:87 ../../mod/mood.php:137
|
||||
#: ../../mod/message.php:301 ../../mod/message.php:527 ../../mod/admin.php:461
|
||||
#: ../../mod/admin.php:728 ../../mod/admin.php:865 ../../mod/admin.php:1064
|
||||
#: ../../mod/admin.php:1151 ../../mod/profiles.php:626
|
||||
#: ../../mod/invite.php:140 ../../addon/fromgplus/fromgplus.php:44
|
||||
#: ../../mod/settings.php:1037 ../../mod/manage.php:110 ../../mod/group.php:87
|
||||
#: ../../mod/mood.php:137 ../../mod/message.php:335 ../../mod/message.php:564
|
||||
#: ../../mod/admin.php:461 ../../mod/admin.php:728 ../../mod/admin.php:865
|
||||
#: ../../mod/admin.php:1068 ../../mod/admin.php:1155
|
||||
#: ../../mod/profiles.php:626 ../../mod/invite.php:140
|
||||
#: ../../addon/fromgplus/fromgplus.php:44
|
||||
#: ../../addon/facebook/facebook.php:621
|
||||
#: ../../addon/snautofollow/snautofollow.php:64
|
||||
#: ../../addon/fbpost/fbpost.php:280 ../../addon/yourls/yourls.php:76
|
||||
|
|
@ -177,7 +178,7 @@ msgstr ""
|
|||
#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
|
||||
#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
|
||||
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:191
|
||||
#: ../../addon/twitter/twitter.php:229 ../../addon/twitter/twitter.php:554
|
||||
#: ../../addon/twitter/twitter.php:229 ../../addon/twitter/twitter.php:556
|
||||
#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
|
||||
#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
|
||||
#: ../../view/theme/cleanzero/config.php:80
|
||||
|
|
@ -238,7 +239,7 @@ msgid "Help:"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225
|
||||
#: ../../include/nav.php:86 ../../addon.old/dav/friendica/layout.fnk.php:225
|
||||
#: ../../include/nav.php:113 ../../addon.old/dav/friendica/layout.fnk.php:225
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -276,87 +277,87 @@ msgstr ""
|
|||
msgid "Event title and start time are required."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:279
|
||||
#: ../../mod/events.php:291
|
||||
msgid "l, F j"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:301
|
||||
#: ../../mod/events.php:313
|
||||
msgid "Edit event"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:323 ../../include/text.php:1246
|
||||
#: ../../mod/events.php:335 ../../include/text.php:1258
|
||||
msgid "link to source"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:358 ../../view/theme/diabook/theme.php:91
|
||||
#: ../../include/nav.php:52 ../../boot.php:1857
|
||||
#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91
|
||||
#: ../../include/nav.php:79 ../../boot.php:1857
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:359
|
||||
#: ../../mod/events.php:371
|
||||
msgid "Create New Event"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:360 ../../addon/dav/friendica/layout.fnk.php:263
|
||||
#: ../../mod/events.php:372 ../../addon/dav/friendica/layout.fnk.php:263
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:263
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:361 ../../mod/install.php:207
|
||||
#: ../../mod/events.php:373 ../../mod/install.php:207
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:266
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:266
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:434
|
||||
#: ../../mod/events.php:446
|
||||
msgid "hour:minute"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:444
|
||||
#: ../../mod/events.php:456
|
||||
msgid "Event details"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:445
|
||||
#: ../../mod/events.php:457
|
||||
#, php-format
|
||||
msgid "Format is %s %s. Starting date and Title are required."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:447
|
||||
#: ../../mod/events.php:459
|
||||
msgid "Event Starts:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:447 ../../mod/events.php:461
|
||||
#: ../../mod/events.php:459 ../../mod/events.php:473
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:450
|
||||
#: ../../mod/events.php:462
|
||||
msgid "Finish date/time is not known or not relevant"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:452
|
||||
#: ../../mod/events.php:464
|
||||
msgid "Event Finishes:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:455
|
||||
#: ../../mod/events.php:467
|
||||
msgid "Adjust for viewer timezone"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:457
|
||||
#: ../../mod/events.php:469
|
||||
msgid "Description:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:459 ../../mod/directory.php:134
|
||||
#: ../../mod/events.php:471 ../../mod/directory.php:134
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:156
|
||||
#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
|
||||
#: ../../boot.php:1379
|
||||
msgid "Location:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:461
|
||||
#: ../../mod/events.php:473
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:463
|
||||
#: ../../mod/events.php:475
|
||||
msgid "Share this event"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -364,11 +365,14 @@ msgstr ""
|
|||
msgid "System down for maintenance"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:145
|
||||
#: ../../mod/dfrn_request.php:848 ../../mod/settings.php:561
|
||||
#: ../../mod/settings.php:587 ../../mod/fbrowser.php:81
|
||||
#: ../../mod/fbrowser.php:116 ../../addon/js_upload/js_upload.php:45
|
||||
#: ../../include/conversation.php:1042
|
||||
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/photos.php:202
|
||||
#: ../../mod/photos.php:289 ../../mod/editpost.php:148
|
||||
#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:249
|
||||
#: ../../mod/settings.php:561 ../../mod/settings.php:587
|
||||
#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116
|
||||
#: ../../mod/message.php:212 ../../mod/suggest.php:32
|
||||
#: ../../addon/js_upload/js_upload.php:45 ../../include/items.php:3897
|
||||
#: ../../include/conversation.php:1062
|
||||
#: ../../addon.old/js_upload/js_upload.php:45
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
|
@ -391,7 +395,7 @@ msgstr ""
|
|||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
|
||||
#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
|
||||
#, php-format
|
||||
msgid "%1$s welcomes %2$s"
|
||||
msgstr ""
|
||||
|
|
@ -415,14 +419,16 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:836
|
||||
#: ../../mod/settings.php:934 ../../mod/settings.php:940
|
||||
#: ../../mod/settings.php:948 ../../mod/settings.php:952
|
||||
#: ../../mod/settings.php:957 ../../mod/settings.php:963
|
||||
#: ../../mod/settings.php:969 ../../mod/settings.php:975
|
||||
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
|
||||
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
|
||||
#: ../../mod/settings.php:1009 ../../mod/register.php:239
|
||||
#: ../../mod/profiles.php:606
|
||||
#: ../../mod/contacts.php:246 ../../mod/settings.php:934
|
||||
#: ../../mod/settings.php:940 ../../mod/settings.php:948
|
||||
#: ../../mod/settings.php:952 ../../mod/settings.php:957
|
||||
#: ../../mod/settings.php:963 ../../mod/settings.php:969
|
||||
#: ../../mod/settings.php:975 ../../mod/settings.php:1005
|
||||
#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
|
||||
#: ../../mod/settings.php:1008 ../../mod/settings.php:1009
|
||||
#: ../../mod/register.php:239 ../../mod/message.php:209
|
||||
#: ../../mod/profiles.php:606 ../../mod/suggest.php:29
|
||||
#: ../../include/items.php:3894
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -442,16 +448,16 @@ msgstr ""
|
|||
msgid "Photo Albums"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009
|
||||
#: ../../mod/photos.php:1102 ../../mod/photos.php:1125
|
||||
#: ../../mod/photos.php:1626 ../../mod/photos.php:1638
|
||||
#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1055
|
||||
#: ../../mod/photos.php:1180 ../../mod/photos.php:1203
|
||||
#: ../../mod/photos.php:1733 ../../mod/photos.php:1745
|
||||
#: ../../addon/communityhome/communityhome.php:115
|
||||
#: ../../view/theme/diabook/theme.php:492
|
||||
#: ../../addon.old/communityhome/communityhome.php:110
|
||||
msgid "Contact Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:66 ../../mod/photos.php:1141 ../../mod/photos.php:1685
|
||||
#: ../../mod/photos.php:66 ../../mod/photos.php:1219 ../../mod/photos.php:1792
|
||||
msgid "Upload New Photos"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -463,8 +469,8 @@ msgstr ""
|
|||
msgid "Contact information unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1102
|
||||
#: ../../mod/photos.php:1125 ../../mod/profile_photo.php:74
|
||||
#: ../../mod/photos.php:154 ../../mod/photos.php:722 ../../mod/photos.php:1180
|
||||
#: ../../mod/photos.php:1203 ../../mod/profile_photo.php:74
|
||||
#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
|
||||
#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
|
||||
#: ../../mod/profile_photo.php:305
|
||||
|
|
@ -479,212 +485,246 @@ msgstr ""
|
|||
msgid "Album not found."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:182 ../../mod/photos.php:1119
|
||||
#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1197
|
||||
msgid "Delete Album"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:245 ../../mod/photos.php:1403
|
||||
#: ../../mod/photos.php:197
|
||||
msgid "Do you really want to delete this photo album and all its photos?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:275 ../../mod/photos.php:286 ../../mod/photos.php:1499
|
||||
msgid "Delete Photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:607
|
||||
#: ../../mod/photos.php:284
|
||||
msgid "Do you really want to delete this photo?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:653
|
||||
#, php-format
|
||||
msgid "%1$s was tagged in %2$s by %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:607
|
||||
#: ../../mod/photos.php:653
|
||||
msgid "a photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:712 ../../addon/js_upload/js_upload.php:321
|
||||
#: ../../mod/photos.php:758 ../../addon/js_upload/js_upload.php:321
|
||||
#: ../../addon.old/js_upload/js_upload.php:315
|
||||
msgid "Image exceeds size limit of "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:720
|
||||
#: ../../mod/photos.php:766
|
||||
msgid "Image file is empty."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:752 ../../mod/profile_photo.php:153
|
||||
#: ../../mod/photos.php:798 ../../mod/profile_photo.php:153
|
||||
#: ../../mod/wall_upload.php:112
|
||||
msgid "Unable to process image."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:779 ../../mod/profile_photo.php:301
|
||||
#: ../../mod/photos.php:825 ../../mod/profile_photo.php:301
|
||||
#: ../../mod/wall_upload.php:138
|
||||
msgid "Image upload failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:865 ../../mod/community.php:18
|
||||
#: ../../mod/photos.php:911 ../../mod/community.php:18
|
||||
#: ../../mod/dfrn_request.php:761 ../../mod/viewcontacts.php:17
|
||||
#: ../../mod/display.php:19 ../../mod/search.php:89 ../../mod/directory.php:31
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:53
|
||||
msgid "Public access denied."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:875
|
||||
#: ../../mod/photos.php:921
|
||||
msgid "No photos selected"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:976
|
||||
#: ../../mod/photos.php:1022
|
||||
msgid "Access to this item is restricted."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1037
|
||||
#: ../../mod/photos.php:1085
|
||||
#, php-format
|
||||
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1053
|
||||
#: ../../mod/photos.php:1120
|
||||
msgid "Upload Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1057 ../../mod/photos.php:1114
|
||||
#: ../../mod/photos.php:1124 ../../mod/photos.php:1192
|
||||
msgid "New album name: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1058
|
||||
#: ../../mod/photos.php:1125
|
||||
msgid "or existing album name: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1059
|
||||
#: ../../mod/photos.php:1126
|
||||
msgid "Do not show a status post for this upload"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1061 ../../mod/photos.php:1398
|
||||
#: ../../mod/photos.php:1128 ../../mod/photos.php:1494
|
||||
msgid "Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1129
|
||||
msgid "Edit Album"
|
||||
#: ../../mod/photos.php:1137 ../../mod/photos.php:1503
|
||||
#: ../../mod/settings.php:1070
|
||||
msgid "Show to Groups"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1135
|
||||
msgid "Show Newest First"
|
||||
#: ../../mod/photos.php:1138 ../../mod/photos.php:1504
|
||||
#: ../../mod/settings.php:1071
|
||||
msgid "Show to Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1137
|
||||
msgid "Show Oldest First"
|
||||
#: ../../mod/photos.php:1139
|
||||
msgid "Private Photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1170 ../../mod/photos.php:1668
|
||||
msgid "View Photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1205
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
#: ../../mod/photos.php:1140
|
||||
msgid "Public Photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1207
|
||||
msgid "Edit Album"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1213
|
||||
msgid "Show Newest First"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1215
|
||||
msgid "Show Oldest First"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1248 ../../mod/photos.php:1775
|
||||
msgid "View Photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1283
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1285
|
||||
msgid "Photo not available"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1263
|
||||
#: ../../mod/photos.php:1341
|
||||
msgid "View photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1263
|
||||
#: ../../mod/photos.php:1341
|
||||
msgid "Edit photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1264
|
||||
#: ../../mod/photos.php:1342
|
||||
msgid "Use as profile photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1270 ../../mod/content.php:620
|
||||
#: ../../mod/photos.php:1348 ../../mod/content.php:620
|
||||
#: ../../object/Item.php:106
|
||||
msgid "Private Message"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1289
|
||||
#: ../../mod/photos.php:1367
|
||||
msgid "View Full Size"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1363
|
||||
#: ../../mod/photos.php:1441
|
||||
msgid "Tags: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1366
|
||||
#: ../../mod/photos.php:1444
|
||||
msgid "[Remove any tag]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1388
|
||||
#: ../../mod/photos.php:1484
|
||||
msgid "Rotate CW (right)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1389
|
||||
#: ../../mod/photos.php:1485
|
||||
msgid "Rotate CCW (left)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1391
|
||||
#: ../../mod/photos.php:1487
|
||||
msgid "New album name"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1394
|
||||
#: ../../mod/photos.php:1490
|
||||
msgid "Caption"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1396
|
||||
#: ../../mod/photos.php:1492
|
||||
msgid "Add a Tag"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1400
|
||||
#: ../../mod/photos.php:1496
|
||||
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1420 ../../mod/content.php:684
|
||||
#: ../../mod/photos.php:1505
|
||||
msgid "Private photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1506
|
||||
msgid "Public photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1526 ../../mod/content.php:684
|
||||
#: ../../object/Item.php:204
|
||||
msgid "I like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1421 ../../mod/content.php:685
|
||||
#: ../../mod/photos.php:1527 ../../mod/content.php:685
|
||||
#: ../../object/Item.php:205
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1422 ../../include/conversation.php:1002
|
||||
#: ../../mod/photos.php:1528 ../../include/conversation.php:1023
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1423 ../../mod/editpost.php:121
|
||||
#: ../../mod/photos.php:1529 ../../mod/editpost.php:124
|
||||
#: ../../mod/content.php:499 ../../mod/content.php:883
|
||||
#: ../../mod/wallmessage.php:152 ../../mod/message.php:300
|
||||
#: ../../mod/message.php:528 ../../include/conversation.php:645
|
||||
#: ../../include/conversation.php:1021 ../../object/Item.php:293
|
||||
#: ../../mod/wallmessage.php:156 ../../mod/message.php:334
|
||||
#: ../../mod/message.php:565 ../../include/conversation.php:646
|
||||
#: ../../include/conversation.php:1042 ../../object/Item.php:293
|
||||
msgid "Please wait"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1439 ../../mod/photos.php:1483
|
||||
#: ../../mod/photos.php:1566 ../../mod/content.php:707
|
||||
#: ../../mod/photos.php:1546 ../../mod/photos.php:1590
|
||||
#: ../../mod/photos.php:1673 ../../mod/content.php:707
|
||||
#: ../../object/Item.php:601
|
||||
msgid "This is you"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1441 ../../mod/photos.php:1485
|
||||
#: ../../mod/photos.php:1568 ../../mod/content.php:709 ../../boot.php:641
|
||||
#: ../../mod/photos.php:1548 ../../mod/photos.php:1592
|
||||
#: ../../mod/photos.php:1675 ../../mod/content.php:709 ../../boot.php:641
|
||||
#: ../../object/Item.php:290 ../../object/Item.php:603
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1443 ../../mod/photos.php:1487
|
||||
#: ../../mod/photos.php:1570 ../../mod/editpost.php:142
|
||||
#: ../../mod/content.php:719 ../../include/conversation.php:1039
|
||||
#: ../../mod/photos.php:1550 ../../mod/photos.php:1594
|
||||
#: ../../mod/photos.php:1677 ../../mod/editpost.php:145
|
||||
#: ../../mod/content.php:719 ../../include/conversation.php:1059
|
||||
#: ../../object/Item.php:613
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1527 ../../mod/content.php:439
|
||||
#: ../../mod/photos.php:1634 ../../mod/content.php:439
|
||||
#: ../../mod/content.php:741 ../../mod/settings.php:623
|
||||
#: ../../mod/group.php:171 ../../mod/admin.php:735
|
||||
#: ../../include/conversation.php:569 ../../object/Item.php:120
|
||||
#: ../../include/conversation.php:570 ../../object/Item.php:120
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1674
|
||||
#: ../../mod/photos.php:1781
|
||||
msgid "View Album"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1683
|
||||
#: ../../mod/photos.php:1790
|
||||
msgid "Recent Photos"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -693,7 +733,7 @@ msgid "Not available."
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
|
||||
#: ../../include/nav.php:101
|
||||
#: ../../include/nav.php:128
|
||||
msgid "Community"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -742,96 +782,92 @@ msgstr ""
|
|||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:91 ../../include/conversation.php:988
|
||||
msgid "Post to Email"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:106 ../../mod/content.php:728
|
||||
#: ../../mod/editpost.php:109 ../../mod/content.php:728
|
||||
#: ../../mod/settings.php:622 ../../object/Item.php:110
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:107 ../../mod/wallmessage.php:150
|
||||
#: ../../mod/message.php:298 ../../mod/message.php:525
|
||||
#: ../../include/conversation.php:1003
|
||||
#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
|
||||
#: ../../mod/message.php:332 ../../mod/message.php:562
|
||||
#: ../../include/conversation.php:1024
|
||||
msgid "Upload photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:108 ../../include/conversation.php:1004
|
||||
#: ../../mod/editpost.php:111 ../../include/conversation.php:1025
|
||||
msgid "upload photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:109 ../../include/conversation.php:1005
|
||||
#: ../../mod/editpost.php:112 ../../include/conversation.php:1026
|
||||
msgid "Attach file"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:110 ../../include/conversation.php:1006
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:1027
|
||||
msgid "attach file"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:111 ../../mod/wallmessage.php:151
|
||||
#: ../../mod/message.php:299 ../../mod/message.php:526
|
||||
#: ../../include/conversation.php:1007
|
||||
#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
|
||||
#: ../../mod/message.php:333 ../../mod/message.php:563
|
||||
#: ../../include/conversation.php:1028
|
||||
msgid "Insert web link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:112 ../../include/conversation.php:1008
|
||||
#: ../../mod/editpost.php:115 ../../include/conversation.php:1029
|
||||
msgid "web link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:1009
|
||||
#: ../../mod/editpost.php:116 ../../include/conversation.php:1030
|
||||
msgid "Insert video link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:114 ../../include/conversation.php:1010
|
||||
#: ../../mod/editpost.php:117 ../../include/conversation.php:1031
|
||||
msgid "video link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:115 ../../include/conversation.php:1011
|
||||
#: ../../mod/editpost.php:118 ../../include/conversation.php:1032
|
||||
msgid "Insert audio link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:116 ../../include/conversation.php:1012
|
||||
#: ../../mod/editpost.php:119 ../../include/conversation.php:1033
|
||||
msgid "audio link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:117 ../../include/conversation.php:1013
|
||||
#: ../../mod/editpost.php:120 ../../include/conversation.php:1034
|
||||
msgid "Set your location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:118 ../../include/conversation.php:1014
|
||||
#: ../../mod/editpost.php:121 ../../include/conversation.php:1035
|
||||
msgid "set location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:119 ../../include/conversation.php:1015
|
||||
#: ../../mod/editpost.php:122 ../../include/conversation.php:1036
|
||||
msgid "Clear browser location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:120 ../../include/conversation.php:1016
|
||||
#: ../../mod/editpost.php:123 ../../include/conversation.php:1037
|
||||
msgid "clear location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:122 ../../include/conversation.php:1022
|
||||
#: ../../mod/editpost.php:125 ../../include/conversation.php:1043
|
||||
msgid "Permission settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:130 ../../include/conversation.php:1031
|
||||
#: ../../mod/editpost.php:133 ../../include/conversation.php:1052
|
||||
msgid "CC: email addresses"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:131 ../../include/conversation.php:1032
|
||||
#: ../../mod/editpost.php:134 ../../include/conversation.php:1053
|
||||
msgid "Public post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:134 ../../include/conversation.php:1018
|
||||
#: ../../mod/editpost.php:137 ../../include/conversation.php:1039
|
||||
msgid "Set title"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:136 ../../include/conversation.php:1020
|
||||
#: ../../mod/editpost.php:139 ../../include/conversation.php:1041
|
||||
msgid "Categories (comma-separated list)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:137 ../../include/conversation.php:1034
|
||||
#: ../../mod/editpost.php:140 ../../include/conversation.php:1055
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1024,7 +1060,7 @@ msgstr ""
|
|||
msgid "Submit Request"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:140
|
||||
#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:167
|
||||
msgid "Account settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1053,10 +1089,10 @@ msgid "Remove account"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/uexport.php:48 ../../mod/settings.php:74
|
||||
#: ../../mod/newmember.php:22 ../../mod/admin.php:824 ../../mod/admin.php:1029
|
||||
#: ../../mod/newmember.php:22 ../../mod/admin.php:824 ../../mod/admin.php:1033
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:225
|
||||
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:537
|
||||
#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:140
|
||||
#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:167
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:225
|
||||
#: ../../addon.old/mathjax/mathjax.php:36
|
||||
msgid "Settings"
|
||||
|
|
@ -1431,7 +1467,7 @@ msgstr ""
|
|||
msgid "is interested in:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/match.php:58 ../../mod/suggest.php:59
|
||||
#: ../../mod/match.php:58 ../../mod/suggest.php:88
|
||||
#: ../../include/contact_widgets.php:9 ../../boot.php:1317
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
|
@ -1449,37 +1485,37 @@ msgstr ""
|
|||
msgid "Visible to:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:119 ../../mod/network.php:594
|
||||
#: ../../mod/content.php:119 ../../mod/network.php:596
|
||||
msgid "No such group"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:130 ../../mod/network.php:605
|
||||
#: ../../mod/content.php:130 ../../mod/network.php:607
|
||||
msgid "Group is empty"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:134 ../../mod/network.php:609
|
||||
#: ../../mod/content.php:134 ../../mod/network.php:611
|
||||
msgid "Group: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:438 ../../mod/content.php:740
|
||||
#: ../../include/conversation.php:568 ../../object/Item.php:119
|
||||
#: ../../include/conversation.php:569 ../../object/Item.php:119
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:472 ../../mod/content.php:852
|
||||
#: ../../mod/content.php:853 ../../include/conversation.php:608
|
||||
#: ../../mod/content.php:853 ../../include/conversation.php:609
|
||||
#: ../../object/Item.php:258 ../../object/Item.php:259
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:482 ../../mod/content.php:864
|
||||
#: ../../include/conversation.php:628 ../../object/Item.php:272
|
||||
#: ../../include/conversation.php:629 ../../object/Item.php:272
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:497 ../../include/conversation.php:643
|
||||
#: ../../mod/content.php:497 ../../include/conversation.php:644
|
||||
msgid "View in context"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1490,7 +1526,7 @@ msgid_plural "%d comments"
|
|||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../../mod/content.php:605 ../../include/text.php:1502
|
||||
#: ../../mod/content.php:605 ../../include/text.php:1514
|
||||
#: ../../object/Item.php:315 ../../object/Item.php:328
|
||||
msgid "comment"
|
||||
msgid_plural "comments"
|
||||
|
|
@ -1605,8 +1641,8 @@ msgid "Discard"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
|
||||
#: ../../mod/notifications.php:210 ../../mod/contacts.php:325
|
||||
#: ../../mod/contacts.php:379
|
||||
#: ../../mod/notifications.php:210 ../../mod/contacts.php:359
|
||||
#: ../../mod/contacts.php:413
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1614,7 +1650,7 @@ msgstr ""
|
|||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/notifications.php:83 ../../include/nav.php:113
|
||||
#: ../../mod/notifications.php:83 ../../include/nav.php:140
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1623,16 +1659,16 @@ msgid "Personal"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
|
||||
#: ../../include/nav.php:77 ../../include/nav.php:116
|
||||
#: ../../include/nav.php:104 ../../include/nav.php:143
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/notifications.php:98 ../../include/nav.php:122
|
||||
#: ../../mod/notifications.php:98 ../../include/nav.php:149
|
||||
msgid "Introductions"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/notifications.php:103 ../../mod/message.php:180
|
||||
#: ../../include/nav.php:129
|
||||
#: ../../mod/notifications.php:103 ../../mod/message.php:182
|
||||
#: ../../include/nav.php:156
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1658,7 +1694,7 @@ msgid "suggested by %s"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
|
||||
#: ../../mod/contacts.php:385
|
||||
#: ../../mod/contacts.php:419
|
||||
msgid "Hide this contact from others"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1715,7 +1751,7 @@ msgstr ""
|
|||
msgid "No introductions."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/notifications.php:220 ../../include/nav.php:123
|
||||
#: ../../mod/notifications.php:220 ../../include/nav.php:150
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1816,272 +1852,276 @@ msgstr ""
|
|||
msgid "Contact has been unarchived"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:233
|
||||
#: ../../mod/contacts.php:244
|
||||
msgid "Do you really want to delete this contact?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:263
|
||||
msgid "Contact has been removed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:267
|
||||
#: ../../mod/contacts.php:301
|
||||
#, php-format
|
||||
msgid "You are mutual friends with %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:271
|
||||
#: ../../mod/contacts.php:305
|
||||
#, php-format
|
||||
msgid "You are sharing with %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:276
|
||||
#: ../../mod/contacts.php:310
|
||||
#, php-format
|
||||
msgid "%s is sharing with you"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:293
|
||||
#: ../../mod/contacts.php:327
|
||||
msgid "Private communications are not available for this contact."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:296
|
||||
#: ../../mod/contacts.php:330
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:300
|
||||
#: ../../mod/contacts.php:334
|
||||
msgid "(Update was successful)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:300
|
||||
#: ../../mod/contacts.php:334
|
||||
msgid "(Update was not successful)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:302
|
||||
#: ../../mod/contacts.php:336
|
||||
msgid "Suggest friends"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:306
|
||||
#: ../../mod/contacts.php:340
|
||||
#, php-format
|
||||
msgid "Network type: %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:309 ../../include/contact_widgets.php:199
|
||||
#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199
|
||||
#, php-format
|
||||
msgid "%d contact in common"
|
||||
msgid_plural "%d contacts in common"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../../mod/contacts.php:314
|
||||
#: ../../mod/contacts.php:348
|
||||
msgid "View all contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
|
||||
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
|
||||
#: ../../mod/admin.php:737
|
||||
msgid "Unblock"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
|
||||
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
|
||||
#: ../../mod/admin.php:736
|
||||
msgid "Block"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:322
|
||||
#: ../../mod/contacts.php:356
|
||||
msgid "Toggle Blocked status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:325 ../../mod/contacts.php:379
|
||||
#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
|
||||
msgid "Unignore"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:328
|
||||
#: ../../mod/contacts.php:362
|
||||
msgid "Toggle Ignored status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:332
|
||||
#: ../../mod/contacts.php:366
|
||||
msgid "Unarchive"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:332
|
||||
#: ../../mod/contacts.php:366
|
||||
msgid "Archive"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:335
|
||||
#: ../../mod/contacts.php:369
|
||||
msgid "Toggle Archive status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:338
|
||||
#: ../../mod/contacts.php:372
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:341
|
||||
#: ../../mod/contacts.php:375
|
||||
msgid "Advanced Contact Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:347
|
||||
#: ../../mod/contacts.php:381
|
||||
msgid "Communications lost with this contact!"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:350
|
||||
#: ../../mod/contacts.php:384
|
||||
msgid "Contact Editor"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:353
|
||||
#: ../../mod/contacts.php:387
|
||||
msgid "Profile Visibility"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:354
|
||||
#: ../../mod/contacts.php:388
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please choose the profile you would like to display to %s when viewing your "
|
||||
"profile securely."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:355
|
||||
#: ../../mod/contacts.php:389
|
||||
msgid "Contact Information / Notes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:356
|
||||
#: ../../mod/contacts.php:390
|
||||
msgid "Edit contact notes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:361 ../../mod/contacts.php:553
|
||||
#: ../../mod/contacts.php:395 ../../mod/contacts.php:585
|
||||
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:362
|
||||
#: ../../mod/contacts.php:396
|
||||
msgid "Block/Unblock contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:363
|
||||
#: ../../mod/contacts.php:397
|
||||
msgid "Ignore contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:364
|
||||
#: ../../mod/contacts.php:398
|
||||
msgid "Repair URL settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:365
|
||||
#: ../../mod/contacts.php:399
|
||||
msgid "View conversations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:367
|
||||
#: ../../mod/contacts.php:401
|
||||
msgid "Delete contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:371
|
||||
#: ../../mod/contacts.php:405
|
||||
msgid "Last update:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:373
|
||||
#: ../../mod/contacts.php:407
|
||||
msgid "Update public posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:375 ../../mod/admin.php:1209
|
||||
#: ../../mod/contacts.php:409 ../../mod/admin.php:1213
|
||||
msgid "Update now"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:382
|
||||
#: ../../mod/contacts.php:416
|
||||
msgid "Currently blocked"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:383
|
||||
#: ../../mod/contacts.php:417
|
||||
msgid "Currently ignored"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:384
|
||||
#: ../../mod/contacts.php:418
|
||||
msgid "Currently archived"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:385
|
||||
#: ../../mod/contacts.php:419
|
||||
msgid ""
|
||||
"Replies/likes to your public posts <strong>may</strong> still be visible"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:438
|
||||
#: ../../mod/contacts.php:470
|
||||
msgid "Suggestions"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:441
|
||||
#: ../../mod/contacts.php:473
|
||||
msgid "Suggest potential friends"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:444 ../../mod/group.php:194
|
||||
#: ../../mod/contacts.php:476 ../../mod/group.php:194
|
||||
msgid "All Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:447
|
||||
#: ../../mod/contacts.php:479
|
||||
msgid "Show all contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:450
|
||||
#: ../../mod/contacts.php:482
|
||||
msgid "Unblocked"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:453
|
||||
#: ../../mod/contacts.php:485
|
||||
msgid "Only show unblocked contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:457
|
||||
#: ../../mod/contacts.php:489
|
||||
msgid "Blocked"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:460
|
||||
#: ../../mod/contacts.php:492
|
||||
msgid "Only show blocked contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:464
|
||||
#: ../../mod/contacts.php:496
|
||||
msgid "Ignored"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:467
|
||||
#: ../../mod/contacts.php:499
|
||||
msgid "Only show ignored contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:471
|
||||
#: ../../mod/contacts.php:503
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:474
|
||||
#: ../../mod/contacts.php:506
|
||||
msgid "Only show archived contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:478
|
||||
#: ../../mod/contacts.php:510
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:481
|
||||
#: ../../mod/contacts.php:513
|
||||
msgid "Only show hidden contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:529
|
||||
#: ../../mod/contacts.php:561
|
||||
msgid "Mutual Friendship"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:533
|
||||
#: ../../mod/contacts.php:565
|
||||
msgid "is a fan of yours"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:537
|
||||
#: ../../mod/contacts.php:569
|
||||
msgid "you are a fan of"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:554 ../../mod/nogroup.php:41
|
||||
#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41
|
||||
msgid "Edit contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:89
|
||||
#: ../../include/nav.php:144
|
||||
#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89
|
||||
#: ../../include/nav.php:171
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:579
|
||||
#: ../../mod/contacts.php:611
|
||||
msgid "Search your contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:580 ../../mod/directory.php:59
|
||||
#: ../../mod/contacts.php:612 ../../mod/directory.php:59
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:81
|
||||
msgid "Finding: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:581 ../../mod/directory.php:61
|
||||
#: ../../mod/contacts.php:613 ../../mod/directory.php:61
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:83
|
||||
#: ../../include/contact_widgets.php:33
|
||||
msgid "Find"
|
||||
|
|
@ -2225,7 +2265,7 @@ msgstr ""
|
|||
#: ../../addon/impressum/impressum.php:78
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:104
|
||||
#: ../../addon/altpager/altpager.php:107 ../../addon/mathjax/mathjax.php:66
|
||||
#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:548
|
||||
#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:550
|
||||
#: ../../addon.old/facebook/facebook.php:495
|
||||
#: ../../addon.old/fbpost/fbpost.php:144
|
||||
#: ../../addon.old/impressum/impressum.php:78
|
||||
|
|
@ -2555,149 +2595,161 @@ msgstr ""
|
|||
msgid "Only expire posts by others:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1016
|
||||
#: ../../mod/settings.php:1035
|
||||
msgid "Account Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1024
|
||||
#: ../../mod/settings.php:1043
|
||||
msgid "Password Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1025
|
||||
#: ../../mod/settings.php:1044
|
||||
msgid "New Password:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1026
|
||||
#: ../../mod/settings.php:1045
|
||||
msgid "Confirm:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1026
|
||||
#: ../../mod/settings.php:1045
|
||||
msgid "Leave password fields blank unless changing"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1030
|
||||
#: ../../mod/settings.php:1049
|
||||
msgid "Basic Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1031 ../../include/profile_advanced.php:15
|
||||
#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15
|
||||
msgid "Full Name:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1032
|
||||
#: ../../mod/settings.php:1051
|
||||
msgid "Email Address:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1033
|
||||
#: ../../mod/settings.php:1052
|
||||
msgid "Your Timezone:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1034
|
||||
#: ../../mod/settings.php:1053
|
||||
msgid "Default Post Location:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1035
|
||||
#: ../../mod/settings.php:1054
|
||||
msgid "Use Browser Location:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1038
|
||||
#: ../../mod/settings.php:1057
|
||||
msgid "Security and Privacy Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1040
|
||||
#: ../../mod/settings.php:1059
|
||||
msgid "Maximum Friend Requests/Day:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1040 ../../mod/settings.php:1059
|
||||
#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
|
||||
msgid "(to prevent spam abuse)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1041
|
||||
#: ../../mod/settings.php:1060
|
||||
msgid "Default Post Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1042
|
||||
#: ../../mod/settings.php:1061
|
||||
msgid "(click to open/close)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1059
|
||||
msgid "Maximum private messages per day from unknown people:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1062
|
||||
msgid "Notification Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1063
|
||||
msgid "By default post a status message when:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1064
|
||||
msgid "accepting a friend request"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1065
|
||||
msgid "joining a forum/community"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1066
|
||||
msgid "making an <em>interesting</em> profile change"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1067
|
||||
msgid "Send a notification email when:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1068
|
||||
msgid "You receive an introduction"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1069
|
||||
msgid "Your introductions are confirmed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1070
|
||||
msgid "Someone writes on your profile wall"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1071
|
||||
msgid "Someone writes a followup comment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1072
|
||||
msgid "You receive a private message"
|
||||
msgid "Default Private Post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1073
|
||||
msgid "Default Public Post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1077
|
||||
msgid "Default Permissions for New Posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1089
|
||||
msgid "Maximum private messages per day from unknown people:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1092
|
||||
msgid "Notification Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1093
|
||||
msgid "By default post a status message when:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1094
|
||||
msgid "accepting a friend request"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1095
|
||||
msgid "joining a forum/community"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1096
|
||||
msgid "making an <em>interesting</em> profile change"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1097
|
||||
msgid "Send a notification email when:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1098
|
||||
msgid "You receive an introduction"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1099
|
||||
msgid "Your introductions are confirmed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1100
|
||||
msgid "Someone writes on your profile wall"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1101
|
||||
msgid "Someone writes a followup comment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1102
|
||||
msgid "You receive a private message"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1103
|
||||
msgid "You receive a friend suggestion"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1074
|
||||
#: ../../mod/settings.php:1104
|
||||
msgid "You are tagged in a post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1075
|
||||
#: ../../mod/settings.php:1105
|
||||
msgid "You are poked/prodded/etc. in a post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1078
|
||||
#: ../../mod/settings.php:1108
|
||||
msgid "Advanced Account/Page Type Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1079
|
||||
#: ../../mod/settings.php:1109
|
||||
msgid "Change the behaviour of this account for special situations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/manage.php:94
|
||||
#: ../../mod/manage.php:106
|
||||
msgid "Manage Identities and/or Pages"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/manage.php:97
|
||||
#: ../../mod/manage.php:107
|
||||
msgid ""
|
||||
"Toggle between different identities or community/group pages which share "
|
||||
"your account details or which you have been granted \"manage\" permissions"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/manage.php:99
|
||||
#: ../../mod/manage.php:108
|
||||
msgid "Select an identity to manage: "
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2774,15 +2826,15 @@ msgstr[1] ""
|
|||
msgid "Private messages to this group are at risk of public disclosure."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:619
|
||||
#: ../../mod/network.php:621
|
||||
msgid "Contact: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:621
|
||||
#: ../../mod/network.php:623
|
||||
msgid "Private messages to this person are at risk of public disclosure."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:626
|
||||
#: ../../mod/network.php:628
|
||||
msgid "Invalid contact."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2874,36 +2926,36 @@ msgstr ""
|
|||
msgid "No recipient."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
|
||||
#: ../../mod/message.php:249 ../../mod/message.php:257
|
||||
#: ../../mod/message.php:429 ../../mod/message.php:437
|
||||
#: ../../include/conversation.php:938 ../../include/conversation.php:956
|
||||
#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
|
||||
#: ../../mod/message.php:283 ../../mod/message.php:291
|
||||
#: ../../mod/message.php:466 ../../mod/message.php:474
|
||||
#: ../../include/conversation.php:940 ../../include/conversation.php:958
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/wallmessage.php:138 ../../mod/message.php:285
|
||||
#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
|
||||
msgid "Send Private Message"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/wallmessage.php:139
|
||||
#: ../../mod/wallmessage.php:143
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you wish for %s to respond, please check that the privacy settings on "
|
||||
"your site allow private mail from unknown senders."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/wallmessage.php:140 ../../mod/message.php:286
|
||||
#: ../../mod/message.php:516
|
||||
#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
|
||||
#: ../../mod/message.php:553
|
||||
msgid "To:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/wallmessage.php:141 ../../mod/message.php:291
|
||||
#: ../../mod/message.php:518
|
||||
#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
|
||||
#: ../../mod/message.php:555
|
||||
msgid "Subject:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/wallmessage.php:147 ../../mod/message.php:295
|
||||
#: ../../mod/message.php:521 ../../mod/invite.php:134
|
||||
#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
|
||||
#: ../../mod/message.php:558 ../../mod/invite.php:134
|
||||
msgid "Your message:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2959,7 +3011,7 @@ msgstr ""
|
|||
|
||||
#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
|
||||
#: ../../view/theme/diabook/theme.php:88 ../../include/profile_advanced.php:7
|
||||
#: ../../include/profile_advanced.php:84 ../../include/nav.php:50
|
||||
#: ../../include/profile_advanced.php:84 ../../include/nav.php:77
|
||||
#: ../../boot.php:1840
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
|
@ -3265,7 +3317,7 @@ msgstr ""
|
|||
msgid "Choose a nickname: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:275 ../../include/nav.php:81 ../../boot.php:1012
|
||||
#: ../../mod/register.php:275 ../../include/nav.php:108 ../../boot.php:1012
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3273,40 +3325,40 @@ msgstr ""
|
|||
msgid "People Search"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62
|
||||
#: ../../mod/like.php:151 ../../mod/subthread.php:87 ../../mod/tagger.php:62
|
||||
#: ../../addon/communityhome/communityhome.php:171
|
||||
#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1498
|
||||
#: ../../include/diaspora.php:1860 ../../include/conversation.php:125
|
||||
#: ../../include/conversation.php:253
|
||||
#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1510
|
||||
#: ../../include/diaspora.php:1860 ../../include/conversation.php:126
|
||||
#: ../../include/conversation.php:254
|
||||
#: ../../addon.old/communityhome/communityhome.php:163
|
||||
msgid "photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87
|
||||
#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87
|
||||
#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1600
|
||||
#: ../../addon/communityhome/communityhome.php:166
|
||||
#: ../../addon/communityhome/communityhome.php:175
|
||||
#: ../../view/theme/diabook/theme.php:459
|
||||
#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1860
|
||||
#: ../../include/conversation.php:120 ../../include/conversation.php:129
|
||||
#: ../../include/conversation.php:248 ../../include/conversation.php:257
|
||||
#: ../../include/conversation.php:121 ../../include/conversation.php:130
|
||||
#: ../../include/conversation.php:249 ../../include/conversation.php:258
|
||||
#: ../../addon.old/facebook/facebook.php:1598
|
||||
#: ../../addon.old/communityhome/communityhome.php:158
|
||||
#: ../../addon.old/communityhome/communityhome.php:167
|
||||
msgid "status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1604
|
||||
#: ../../mod/like.php:168 ../../addon/facebook/facebook.php:1604
|
||||
#: ../../addon/communityhome/communityhome.php:180
|
||||
#: ../../view/theme/diabook/theme.php:473 ../../include/diaspora.php:1876
|
||||
#: ../../include/conversation.php:136
|
||||
#: ../../include/conversation.php:137
|
||||
#: ../../addon.old/facebook/facebook.php:1602
|
||||
#: ../../addon.old/communityhome/communityhome.php:172
|
||||
#, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/like.php:164 ../../include/conversation.php:139
|
||||
#: ../../mod/like.php:170 ../../include/conversation.php:140
|
||||
#, php-format
|
||||
msgid "%1$s doesn't like %2$s's %3$s"
|
||||
msgstr ""
|
||||
|
|
@ -3322,7 +3374,7 @@ msgid "Access denied."
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
|
||||
#: ../../include/nav.php:51 ../../boot.php:1847
|
||||
#: ../../include/nav.php:78 ../../boot.php:1847
|
||||
msgid "Photos"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3347,43 +3399,43 @@ msgstr ""
|
|||
msgid "Unable to locate original post."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/item.php:288
|
||||
#: ../../mod/item.php:292
|
||||
msgid "Empty post discarded."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/item.php:424 ../../mod/wall_upload.php:135
|
||||
#: ../../mod/item.php:428 ../../mod/wall_upload.php:135
|
||||
#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151
|
||||
#: ../../include/message.php:144
|
||||
msgid "Wall Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/item.php:837
|
||||
#: ../../mod/item.php:841
|
||||
msgid "System error. Post not saved."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/item.php:862
|
||||
#: ../../mod/item.php:866
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This message was sent to you by %s, a member of the Friendica social network."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/item.php:864
|
||||
#: ../../mod/item.php:868
|
||||
#, php-format
|
||||
msgid "You may visit them online at %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/item.php:865
|
||||
#: ../../mod/item.php:869
|
||||
msgid ""
|
||||
"Please contact the sender by replying to this post if you do not wish to "
|
||||
"receive these messages."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/item.php:867
|
||||
#: ../../mod/item.php:871
|
||||
#, php-format
|
||||
msgid "%s posted an update."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/mood.php:62 ../../include/conversation.php:226
|
||||
#: ../../mod/mood.php:62 ../../include/conversation.php:227
|
||||
#, php-format
|
||||
msgid "%1$s is currently %2$s"
|
||||
msgstr ""
|
||||
|
|
@ -3477,7 +3529,15 @@ msgstr ""
|
|||
msgid "Please enter your password for verification:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:9 ../../include/nav.php:132
|
||||
#: ../../mod/navigation.php:20 ../../include/nav.php:34
|
||||
msgid "Nothing new here"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/navigation.php:24 ../../include/nav.php:38
|
||||
msgid "Clear notifications"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:9 ../../include/nav.php:159
|
||||
msgid "New Message"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3485,63 +3545,67 @@ msgstr ""
|
|||
msgid "Unable to locate contact information."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:195
|
||||
#: ../../mod/message.php:207
|
||||
msgid "Do you really want to delete this message?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:227
|
||||
msgid "Message deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:225
|
||||
#: ../../mod/message.php:258
|
||||
msgid "Conversation removed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:334
|
||||
#: ../../mod/message.php:371
|
||||
msgid "No messages."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:341
|
||||
#: ../../mod/message.php:378
|
||||
#, php-format
|
||||
msgid "Unknown sender - %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:344
|
||||
#: ../../mod/message.php:381
|
||||
#, php-format
|
||||
msgid "You and %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:347
|
||||
#: ../../mod/message.php:384
|
||||
#, php-format
|
||||
msgid "%s and You"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:368 ../../mod/message.php:509
|
||||
#: ../../mod/message.php:405 ../../mod/message.php:546
|
||||
msgid "Delete conversation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:371
|
||||
#: ../../mod/message.php:408
|
||||
msgid "D, d M Y - g:i A"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:374
|
||||
#: ../../mod/message.php:411
|
||||
#, php-format
|
||||
msgid "%d message"
|
||||
msgid_plural "%d messages"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../../mod/message.php:413
|
||||
#: ../../mod/message.php:450
|
||||
msgid "Message not available."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:483
|
||||
#: ../../mod/message.php:520
|
||||
msgid "Delete message"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:511
|
||||
#: ../../mod/message.php:548
|
||||
msgid ""
|
||||
"No secure communications available. You <strong>may</strong> be able to "
|
||||
"respond from the sender's profile page."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:515
|
||||
#: ../../mod/message.php:552
|
||||
msgid "Send Reply"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3570,7 +3634,7 @@ msgstr ""
|
|||
msgid "Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:99 ../../mod/admin.php:1027 ../../mod/admin.php:1063
|
||||
#: ../../mod/admin.php:99 ../../mod/admin.php:1031 ../../mod/admin.php:1067
|
||||
msgid "Themes"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3578,11 +3642,11 @@ msgstr ""
|
|||
msgid "DB updates"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1150
|
||||
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1154
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:120 ../../include/nav.php:151
|
||||
#: ../../mod/admin.php:120 ../../include/nav.php:178
|
||||
msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3623,8 +3687,8 @@ msgid "Message queues"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:212 ../../mod/admin.php:459 ../../mod/admin.php:726
|
||||
#: ../../mod/admin.php:821 ../../mod/admin.php:863 ../../mod/admin.php:1026
|
||||
#: ../../mod/admin.php:1062 ../../mod/admin.php:1149
|
||||
#: ../../mod/admin.php:821 ../../mod/admin.php:863 ../../mod/admin.php:1030
|
||||
#: ../../mod/admin.php:1066 ../../mod/admin.php:1153
|
||||
msgid "Administration"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4177,23 +4241,23 @@ msgstr ""
|
|||
msgid "Plugin %s enabled."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:799 ../../mod/admin.php:997
|
||||
#: ../../mod/admin.php:799 ../../mod/admin.php:1001
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:801 ../../mod/admin.php:999
|
||||
#: ../../mod/admin.php:801 ../../mod/admin.php:1003
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:823 ../../mod/admin.php:1028
|
||||
#: ../../mod/admin.php:823 ../../mod/admin.php:1032
|
||||
msgid "Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:831 ../../mod/admin.php:1038
|
||||
#: ../../mod/admin.php:831 ../../mod/admin.php:1042
|
||||
msgid "Author: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:832 ../../mod/admin.php:1039
|
||||
#: ../../mod/admin.php:832 ../../mod/admin.php:1043
|
||||
msgid "Maintainer: "
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4201,61 +4265,61 @@ msgstr ""
|
|||
msgid "No themes found."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1020
|
||||
#: ../../mod/admin.php:1024
|
||||
msgid "Screenshot"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1068
|
||||
#: ../../mod/admin.php:1072
|
||||
msgid "[Experimental]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1069
|
||||
#: ../../mod/admin.php:1073
|
||||
msgid "[Unsupported]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1096
|
||||
#: ../../mod/admin.php:1100
|
||||
msgid "Log settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1152
|
||||
#: ../../mod/admin.php:1156
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1158
|
||||
#: ../../mod/admin.php:1162
|
||||
msgid "Debugging"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1159
|
||||
#: ../../mod/admin.php:1163
|
||||
msgid "Log file"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1159
|
||||
#: ../../mod/admin.php:1163
|
||||
msgid ""
|
||||
"Must be writable by web server. Relative to your Friendica top-level "
|
||||
"directory."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1160
|
||||
#: ../../mod/admin.php:1164
|
||||
msgid "Log level"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1210
|
||||
#: ../../mod/admin.php:1214
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1216
|
||||
#: ../../mod/admin.php:1220
|
||||
msgid "FTP Host"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1217
|
||||
#: ../../mod/admin.php:1221
|
||||
msgid "FTP Path"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1218
|
||||
#: ../../mod/admin.php:1222
|
||||
msgid "FTP User"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:1219
|
||||
#: ../../mod/admin.php:1223
|
||||
msgid "FTP Password"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4368,7 +4432,7 @@ msgid "No installed applications."
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/search.php:99 ../../include/text.php:738
|
||||
#: ../../include/text.php:739 ../../include/nav.php:91
|
||||
#: ../../include/text.php:739 ../../include/nav.php:118
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4686,8 +4750,8 @@ msgstr ""
|
|||
msgid "Edit visibility"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/filer.php:30 ../../include/conversation.php:942
|
||||
#: ../../include/conversation.php:960
|
||||
#: ../../mod/filer.php:30 ../../include/conversation.php:944
|
||||
#: ../../include/conversation.php:962
|
||||
msgid "Save to Folder:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4695,7 +4759,7 @@ msgstr ""
|
|||
msgid "- select -"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/tagger.php:95 ../../include/conversation.php:265
|
||||
#: ../../mod/tagger.php:95 ../../include/conversation.php:266
|
||||
#, php-format
|
||||
msgid "%1$s tagged %2$s's %3$s with %4$s"
|
||||
msgstr ""
|
||||
|
|
@ -4704,7 +4768,7 @@ msgstr ""
|
|||
msgid "No potential page delegates located."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/delegate.php:121 ../../include/nav.php:138
|
||||
#: ../../mod/delegate.php:121 ../../include/nav.php:165
|
||||
msgid "Delegate Page Management"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4783,18 +4847,22 @@ msgstr ""
|
|||
msgid "diaspora2bb: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:520
|
||||
#: ../../mod/suggest.php:27
|
||||
msgid "Do you really want to delete this suggestion?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520
|
||||
#: ../../include/contact_widgets.php:34
|
||||
msgid "Friend Suggestions"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/suggest.php:44
|
||||
#: ../../mod/suggest.php:72
|
||||
msgid ""
|
||||
"No suggestions available. If this is a new site, please try again in 24 "
|
||||
"hours."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/suggest.php:61
|
||||
#: ../../mod/suggest.php:90
|
||||
msgid "Ignore/Hide"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4841,7 +4909,7 @@ msgid "About:"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:187
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:203
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:201
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4973,7 +5041,7 @@ msgid "Unable to set contact photo."
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:621
|
||||
#: ../../include/conversation.php:171
|
||||
#: ../../include/conversation.php:172
|
||||
#, php-format
|
||||
msgid "%1$s is now friends with %2$s"
|
||||
msgstr ""
|
||||
|
|
@ -5742,7 +5810,7 @@ msgid "Forum Directory"
|
|||
msgstr ""
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:28
|
||||
#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:64
|
||||
#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:91
|
||||
#: ../../boot.php:1037 ../../addon.old/communityhome/communityhome.php:28
|
||||
#: ../../addon.old/communityhome/communityhome.php:34
|
||||
#: ../../addon.old/communityhome/twillingham/communityhome.php:28
|
||||
|
|
@ -5779,8 +5847,8 @@ msgid "Latest likes"
|
|||
msgstr ""
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:163
|
||||
#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1496
|
||||
#: ../../include/conversation.php:117 ../../include/conversation.php:245
|
||||
#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1508
|
||||
#: ../../include/conversation.php:118 ../../include/conversation.php:246
|
||||
#: ../../addon.old/communityhome/communityhome.php:155
|
||||
msgid "event"
|
||||
msgstr ""
|
||||
|
|
@ -7282,7 +7350,7 @@ msgstr ""
|
|||
msgid "Add contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/viewsrc/viewsrc.php:37 ../../addon.old/viewsrc/viewsrc.php:37
|
||||
#: ../../addon/viewsrc/viewsrc.php:39 ../../addon.old/viewsrc/viewsrc.php:37
|
||||
msgid "View Source"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -7697,14 +7765,22 @@ msgstr ""
|
|||
msgid "Send linked #-tags and @-names to Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:556 ../../addon.old/twitter/twitter.php:396
|
||||
#: ../../addon/twitter/twitter.php:558 ../../addon.old/twitter/twitter.php:396
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:557 ../../addon.old/twitter/twitter.php:397
|
||||
#: ../../addon/twitter/twitter.php:559 ../../addon.old/twitter/twitter.php:397
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:560
|
||||
msgid "Name of the Twitter Application"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:560
|
||||
msgid "set this to avoid mirroring postings from ~friendica back to ~friendica"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44
|
||||
msgid "IRC Settings"
|
||||
msgstr ""
|
||||
|
|
@ -7839,12 +7915,12 @@ msgstr ""
|
|||
msgid "Color scheme"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:49
|
||||
#: ../../include/nav.php:116
|
||||
#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:76
|
||||
#: ../../include/nav.php:143
|
||||
msgid "Your posts and conversations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:50
|
||||
#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77
|
||||
msgid "Your profile page"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -7852,19 +7928,19 @@ msgstr ""
|
|||
msgid "Your contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:51
|
||||
#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78
|
||||
msgid "Your photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:52
|
||||
#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79
|
||||
msgid "Your events"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
|
||||
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
|
||||
msgid "Personal notes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
|
||||
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
|
||||
msgid "Your personal photos"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -7960,12 +8036,12 @@ msgid "Set twitter search term"
|
|||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:629
|
||||
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:313
|
||||
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327
|
||||
msgid "don't show"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:629
|
||||
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:312
|
||||
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326
|
||||
msgid "show"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8435,7 +8511,7 @@ msgstr[1] ""
|
|||
msgid "poke"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:779 ../../include/conversation.php:210
|
||||
#: ../../include/text.php:779 ../../include/conversation.php:211
|
||||
msgid "poked"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8607,31 +8683,31 @@ msgstr ""
|
|||
msgid "December"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:1066
|
||||
#: ../../include/text.php:1078
|
||||
msgid "bytes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:1093 ../../include/text.php:1105
|
||||
#: ../../include/text.php:1105 ../../include/text.php:1117
|
||||
msgid "Click to open/close"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:1278 ../../include/user.php:237
|
||||
#: ../../include/text.php:1290 ../../include/user.php:237
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:1290
|
||||
#: ../../include/text.php:1302
|
||||
msgid "Select an alternate language"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:1500
|
||||
#: ../../include/text.php:1512
|
||||
msgid "activity"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:1503
|
||||
#: ../../include/text.php:1515
|
||||
msgid "post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:1658
|
||||
#: ../../include/text.php:1670
|
||||
msgid "Item filed"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8726,124 +8802,128 @@ msgstr ""
|
|||
msgid "Contacts not in any group"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:46 ../../boot.php:1036
|
||||
#: ../../include/nav.php:73 ../../boot.php:1036
|
||||
msgid "Logout"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:46
|
||||
#: ../../include/nav.php:73
|
||||
msgid "End this session"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:49 ../../boot.php:1833
|
||||
#: ../../include/nav.php:76 ../../boot.php:1833
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:64
|
||||
#: ../../include/nav.php:91
|
||||
msgid "Sign in"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:77
|
||||
#: ../../include/nav.php:104
|
||||
msgid "Home Page"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:81
|
||||
#: ../../include/nav.php:108
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:86
|
||||
#: ../../include/nav.php:113
|
||||
msgid "Help and documentation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:89
|
||||
#: ../../include/nav.php:116
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:89
|
||||
#: ../../include/nav.php:116
|
||||
msgid "Addon applications, utilities, games"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:91
|
||||
#: ../../include/nav.php:118
|
||||
msgid "Search site content"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:101
|
||||
#: ../../include/nav.php:128
|
||||
msgid "Conversations on this site"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:103
|
||||
#: ../../include/nav.php:130
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:103
|
||||
#: ../../include/nav.php:130
|
||||
msgid "People directory"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:113
|
||||
#: ../../include/nav.php:140
|
||||
msgid "Conversations from your friends"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:114
|
||||
#: ../../include/nav.php:141
|
||||
msgid "Network Reset"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:114
|
||||
#: ../../include/nav.php:141
|
||||
msgid "Load Network page with no filters"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:122
|
||||
#: ../../include/nav.php:149
|
||||
msgid "Friend Requests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:124
|
||||
#: ../../include/nav.php:151
|
||||
msgid "See all notifications"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:125
|
||||
#: ../../include/nav.php:152
|
||||
msgid "Mark all system notifications seen"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:129
|
||||
#: ../../include/nav.php:156
|
||||
msgid "Private mail"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:130
|
||||
#: ../../include/nav.php:157
|
||||
msgid "Inbox"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:131
|
||||
#: ../../include/nav.php:158
|
||||
msgid "Outbox"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:135
|
||||
#: ../../include/nav.php:162
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:135
|
||||
#: ../../include/nav.php:162
|
||||
msgid "Manage other pages"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:138
|
||||
#: ../../include/nav.php:165
|
||||
msgid "Delegations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:142 ../../boot.php:1339
|
||||
#: ../../include/nav.php:169 ../../boot.php:1339
|
||||
msgid "Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:142
|
||||
#: ../../include/nav.php:169
|
||||
msgid "Manage/Edit Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:144
|
||||
#: ../../include/nav.php:171
|
||||
msgid "Manage/edit friends and contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:151
|
||||
#: ../../include/nav.php:178
|
||||
msgid "Site setup and configuration"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:175
|
||||
msgid "Nothing new here"
|
||||
#: ../../include/nav.php:182
|
||||
msgid "Navigation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:182
|
||||
msgid "Site map"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/contact_widgets.php:6
|
||||
|
|
@ -9162,7 +9242,7 @@ msgstr ""
|
|||
msgid "[no subject]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/acl_selectors.php:311
|
||||
#: ../../include/acl_selectors.php:325
|
||||
msgid "Visible to everybody"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -9414,7 +9494,11 @@ msgstr ""
|
|||
msgid "You have a new follower at "
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/items.php:4057
|
||||
#: ../../include/items.php:3892
|
||||
msgid "Do you really want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/items.php:4085
|
||||
msgid "Archives"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -9498,7 +9582,7 @@ msgstr ""
|
|||
msgid "Welcome back "
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/security.php:357
|
||||
#: ../../include/security.php:366
|
||||
msgid ""
|
||||
"The form security token was not correct. This probably happened because the "
|
||||
"form has been opened for too long (>3 hours) before submitting it."
|
||||
|
|
@ -9508,147 +9592,163 @@ msgstr ""
|
|||
msgid "stopped following"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:225 ../../include/conversation.php:818
|
||||
#: ../../include/Contact.php:225 ../../include/conversation.php:820
|
||||
msgid "Poke"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:226 ../../include/conversation.php:812
|
||||
#: ../../include/Contact.php:226 ../../include/conversation.php:814
|
||||
msgid "View Status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:227 ../../include/conversation.php:813
|
||||
#: ../../include/Contact.php:227 ../../include/conversation.php:815
|
||||
msgid "View Profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:228 ../../include/conversation.php:814
|
||||
#: ../../include/Contact.php:228 ../../include/conversation.php:816
|
||||
msgid "View Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:229 ../../include/Contact.php:242
|
||||
#: ../../include/conversation.php:815
|
||||
#: ../../include/Contact.php:229 ../../include/Contact.php:251
|
||||
#: ../../include/conversation.php:817
|
||||
msgid "Network Posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:230 ../../include/Contact.php:242
|
||||
#: ../../include/conversation.php:816
|
||||
#: ../../include/Contact.php:230 ../../include/Contact.php:251
|
||||
#: ../../include/conversation.php:818
|
||||
msgid "Edit Contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:231 ../../include/Contact.php:242
|
||||
#: ../../include/conversation.php:817
|
||||
#: ../../include/Contact.php:231 ../../include/Contact.php:251
|
||||
#: ../../include/conversation.php:819
|
||||
msgid "Send PM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:206
|
||||
#: ../../include/conversation.php:207
|
||||
#, php-format
|
||||
msgid "%1$s poked %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:290
|
||||
#: ../../include/conversation.php:291
|
||||
msgid "post/item"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:291
|
||||
#: ../../include/conversation.php:292
|
||||
#, php-format
|
||||
msgid "%1$s marked %2$s's %3$s as favorite"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:620 ../../object/Item.php:249
|
||||
#: ../../include/conversation.php:621 ../../object/Item.php:249
|
||||
msgid "Categories:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:621 ../../object/Item.php:250
|
||||
#: ../../include/conversation.php:622 ../../object/Item.php:250
|
||||
msgid "Filed under:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:708
|
||||
#: ../../include/conversation.php:710
|
||||
msgid "remove"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:712
|
||||
#: ../../include/conversation.php:714
|
||||
msgid "Delete Selected Items"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:811
|
||||
#: ../../include/conversation.php:813
|
||||
msgid "Follow Thread"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:880
|
||||
#: ../../include/conversation.php:882
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:880
|
||||
#: ../../include/conversation.php:882
|
||||
#, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:885
|
||||
#: ../../include/conversation.php:887
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:888
|
||||
#: ../../include/conversation.php:890
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:902
|
||||
#: ../../include/conversation.php:904
|
||||
msgid "and"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:908
|
||||
#: ../../include/conversation.php:910
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:910
|
||||
#: ../../include/conversation.php:912
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:910
|
||||
#: ../../include/conversation.php:912
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:937 ../../include/conversation.php:955
|
||||
#: ../../include/conversation.php:939 ../../include/conversation.php:957
|
||||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:939 ../../include/conversation.php:957
|
||||
#: ../../include/conversation.php:941 ../../include/conversation.php:959
|
||||
msgid "Please enter a video link/URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:940 ../../include/conversation.php:958
|
||||
#: ../../include/conversation.php:942 ../../include/conversation.php:960
|
||||
msgid "Please enter an audio link/URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:941 ../../include/conversation.php:959
|
||||
#: ../../include/conversation.php:943 ../../include/conversation.php:961
|
||||
msgid "Tag term:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:943 ../../include/conversation.php:961
|
||||
#: ../../include/conversation.php:945 ../../include/conversation.php:963
|
||||
msgid "Where are you right now?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:944
|
||||
#: ../../include/conversation.php:946
|
||||
msgid "Delete item(s)?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1023
|
||||
#: ../../include/conversation.php:988
|
||||
msgid "Post to Email"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1044
|
||||
msgid "permissions"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/plugin.php:389 ../../include/plugin.php:391
|
||||
#: ../../include/conversation.php:1068
|
||||
msgid "Post to Groups"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1069
|
||||
msgid "Post to Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1070
|
||||
msgid "Private post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/plugin.php:429 ../../include/plugin.php:431
|
||||
msgid "Click here to upgrade."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/plugin.php:397
|
||||
#: ../../include/plugin.php:437
|
||||
msgid "This action exceeds the limits set by your subscription plan."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/plugin.php:402
|
||||
#: ../../include/plugin.php:442
|
||||
msgid "This action is not available under your subscription plan."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
55
util/minifyjs.sh
Executable file
|
|
@ -0,0 +1,55 @@
|
|||
#!/bin/bash
|
||||
|
||||
MINIFY_CMD=uglifyjs
|
||||
|
||||
JSFILES=(
|
||||
"js/acl.js"
|
||||
"js/ajaxupload.js"
|
||||
"js/country.js"
|
||||
"js/fk.autocomplete.js"
|
||||
"js/jquery.htmlstream.js"
|
||||
"js/main.js"
|
||||
"js/webtoolkit.base64.js"
|
||||
"view/theme/frost/js/acl.js"
|
||||
"view/theme/frost/js/fk.autocomplete.js"
|
||||
"view/theme/frost/js/jquery.divgrow-1.3.1.f1.js"
|
||||
"view/theme/frost/js/main.js"
|
||||
"view/theme/frost/js/theme.js"
|
||||
"view/theme/frost-mobile/js/acl.js"
|
||||
"view/theme/frost-mobile/js/fk.autocomplete.js"
|
||||
"view/theme/frost-mobile/js/jquery.divgrow-1.3.1.f1.js"
|
||||
"view/theme/frost-mobile/js/main.js"
|
||||
"view/theme/frost-mobile/js/theme.js"
|
||||
"view/theme/decaf-mobile/js/theme.js"
|
||||
)
|
||||
JSFILES2=(
|
||||
"library/colorbox/jquery.colorbox.js"
|
||||
)
|
||||
JSFILES3=(
|
||||
"library/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js"
|
||||
)
|
||||
|
||||
for i in ${JSFILES[@]}
|
||||
do
|
||||
MINFILE=${i%%.js}.min.js
|
||||
echo "Minifying $i into $MINFILE"
|
||||
rm $MINFILE
|
||||
$MINIFY_CMD -o $MINFILE $i
|
||||
done
|
||||
|
||||
for i in ${JSFILES2[@]}
|
||||
do
|
||||
MINFILE=${i%%.js}-min.js
|
||||
echo "Minifying $i into $MINFILE"
|
||||
rm $MINFILE
|
||||
$MINIFY_CMD -o $MINFILE $i
|
||||
done
|
||||
|
||||
for i in ${JSFILES3[@]}
|
||||
do
|
||||
MINFILE=${i%%_src.js}.js
|
||||
echo "Minifying $i into $MINFILE"
|
||||
rm $MINFILE
|
||||
$MINIFY_CMD -o $MINFILE $i
|
||||
done
|
||||
|
||||
|
|
@ -58,7 +58,7 @@ fnull = open(os.devnull, "w")
|
|||
|
||||
for tplpath in tplpaths:
|
||||
print "Converting " + path + tplpath
|
||||
subprocess.call(['python', path + 'mods/friendica-to-smarty-tpl.py', '-p', path + tplpath], stdout = fnull)
|
||||
subprocess.call(['python', path + 'util/friendica-to-smarty-tpl.py', '-p', path + tplpath], stdout = fnull)
|
||||
|
||||
fnull.close()
|
||||
|
||||
|
|
@ -1,37 +1,40 @@
|
|||
<script>
|
||||
$(function(){
|
||||
|
||||
$("#cnftheme").fancybox({
|
||||
width: 800,
|
||||
autoDimensions: false,
|
||||
onStart: function(){
|
||||
var theme = $("#id_theme :selected").val();
|
||||
var theme_mobile = $("#id_theme_mobile :selected").val();
|
||||
$("#cnftheme").attr('href',"$baseurl/admin/themes/"+theme);
|
||||
},
|
||||
onComplete: function(){
|
||||
$("div#fancybox-content form").submit(function(e){
|
||||
var url = $(this).attr('action');
|
||||
// can't get .serialize() to work...
|
||||
var data={};
|
||||
$(this).find("input").each(function(){
|
||||
data[$(this).attr('name')] = $(this).val();
|
||||
});
|
||||
$(this).find("select").each(function(){
|
||||
data[$(this).attr('name')] = $(this).children(":selected").val();
|
||||
});
|
||||
console.log(":)", url, data);
|
||||
$("#cnftheme").click(function(){
|
||||
$.colorbox({
|
||||
width: 800,
|
||||
height: '90%',
|
||||
/*onOpen: function(){
|
||||
var theme = $("#id_theme :selected").val();
|
||||
$("#cnftheme").attr('href',"$baseurl/admin/themes/"+theme);
|
||||
},*/
|
||||
href: "$baseurl/admin/themes/" + $("#id_theme :selected").val(),
|
||||
onComplete: function(){
|
||||
$("div#fancybox-content form").submit(function(e){
|
||||
var url = $(this).attr('action');
|
||||
// can't get .serialize() to work...
|
||||
var data={};
|
||||
$(this).find("input").each(function(){
|
||||
data[$(this).attr('name')] = $(this).val();
|
||||
});
|
||||
$(this).find("select").each(function(){
|
||||
data[$(this).attr('name')] = $(this).children(":selected").val();
|
||||
});
|
||||
console.log(":)", url, data);
|
||||
|
||||
$.post(url, data, function(data) {
|
||||
if(timer) clearTimeout(timer);
|
||||
NavUpdate();
|
||||
$.fancybox.close();
|
||||
})
|
||||
$.post(url, data, function(data) {
|
||||
if(timer) clearTimeout(timer);
|
||||
NavUpdate();
|
||||
$.colorbox.close();
|
||||
})
|
||||
|
||||
return false;
|
||||
});
|
||||
return false;
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
});
|
||||
return false;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
|
|
|||
5000
view/ca/messages.po
|
|
@ -4,13 +4,13 @@
|
|||
#
|
||||
# Translators:
|
||||
# Rafael GARAU ESPINÓS <transifex@macadamia.es>, 2012.
|
||||
# Rafael GARAU <transifex@macadamia.es>, 2012.
|
||||
# Rafael GARAU <transifex@macadamia.es>, 2012-2013.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
|
||||
"POT-Creation-Date: 2012-09-25 10:00-0700\n"
|
||||
"PO-Revision-Date: 2012-09-26 08:15+0000\n"
|
||||
"POT-Creation-Date: 2013-02-07 10:00-0800\n"
|
||||
"PO-Revision-Date: 2013-02-08 22:44+0000\n"
|
||||
"Last-Translator: Rafael GARAU <transifex@macadamia.es>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/friendica/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -25,6 +25,7 @@ msgstr "Publicat amb éxit."
|
|||
|
||||
#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
|
||||
#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
|
||||
#: ../../mod/update_display.php:22
|
||||
msgid "[Embedded content - reload page to view]"
|
||||
msgstr "[Contingut embegut - recarrega la pàgina per a veure-ho]"
|
||||
|
||||
|
|
@ -38,30 +39,34 @@ msgstr "Fracassà l'actualització de Contacte"
|
|||
|
||||
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
|
||||
#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
|
||||
#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972
|
||||
#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:1041
|
||||
#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
|
||||
#: ../../mod/notifications.php:66 ../../mod/contacts.php:146
|
||||
#: ../../mod/settings.php:86 ../../mod/settings.php:525
|
||||
#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../mod/network.php:6
|
||||
#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9
|
||||
#: ../../mod/notifications.php:66 ../../mod/contacts.php:147
|
||||
#: ../../mod/settings.php:91 ../../mod/settings.php:542
|
||||
#: ../../mod/settings.php:547 ../../mod/manage.php:96 ../../mod/network.php:6
|
||||
#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
|
||||
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
|
||||
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
|
||||
#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
|
||||
#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:126
|
||||
#: ../../mod/item.php:142 ../../mod/mood.php:114
|
||||
#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/item.php:139
|
||||
#: ../../mod/item.php:155 ../../mod/mood.php:114
|
||||
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
|
||||
#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
|
||||
#: ../../mod/message.php:38 ../../mod/message.php:168
|
||||
#: ../../mod/message.php:38 ../../mod/message.php:174
|
||||
#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
|
||||
#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9
|
||||
#: ../../mod/display.php:141 ../../mod/profiles.php:7
|
||||
#: ../../mod/profiles.php:413 ../../mod/delegate.php:6
|
||||
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
|
||||
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
|
||||
#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
|
||||
#: ../../addon/fbpost/fbpost.php:165
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3908
|
||||
#: ../../index.php:317
|
||||
#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
|
||||
#: ../../mod/display.php:180 ../../mod/profiles.php:146
|
||||
#: ../../mod/profiles.php:567 ../../mod/delegate.php:6
|
||||
#: ../../mod/suggest.php:56 ../../mod/invite.php:15 ../../mod/invite.php:101
|
||||
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:512
|
||||
#: ../../addon/facebook/facebook.php:518 ../../addon/fbpost/fbpost.php:170
|
||||
#: ../../addon/fbpost/fbpost.php:176
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:354
|
||||
#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:4015
|
||||
#: ../../index.php:341 ../../addon.old/facebook/facebook.php:510
|
||||
#: ../../addon.old/facebook/facebook.php:516
|
||||
#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:354
|
||||
msgid "Permission denied."
|
||||
msgstr "Permís denegat."
|
||||
|
||||
|
|
@ -90,8 +95,8 @@ msgstr "Si us plau, prem el botó 'Tornar' <strong>ara</strong> si no saps segur
|
|||
msgid "Return to contact editor"
|
||||
msgstr "Tornar al editor de contactes"
|
||||
|
||||
#: ../../mod/crepair.php:148 ../../mod/settings.php:545
|
||||
#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702
|
||||
#: ../../mod/crepair.php:148 ../../mod/settings.php:562
|
||||
#: ../../mod/settings.php:588 ../../mod/admin.php:731 ../../mod/admin.php:741
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
|
|
@ -128,74 +133,123 @@ msgid "New photo from this URL"
|
|||
msgstr "Nova foto d'aquesta URL"
|
||||
|
||||
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
|
||||
#: ../../mod/events.php:455 ../../mod/photos.php:1005
|
||||
#: ../../mod/photos.php:1081 ../../mod/photos.php:1338
|
||||
#: ../../mod/photos.php:1378 ../../mod/photos.php:1419
|
||||
#: ../../mod/photos.php:1451 ../../mod/install.php:246
|
||||
#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
|
||||
#: ../../mod/content.php:693 ../../mod/contacts.php:348
|
||||
#: ../../mod/settings.php:543 ../../mod/settings.php:697
|
||||
#: ../../mod/settings.php:769 ../../mod/settings.php:976
|
||||
#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294
|
||||
#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689
|
||||
#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112
|
||||
#: ../../mod/profiles.php:583 ../../mod/invite.php:119
|
||||
#: ../../addon/fromgplus/fromgplus.php:40
|
||||
#: ../../addon/facebook/facebook.php:619
|
||||
#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90
|
||||
#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76
|
||||
#: ../../mod/events.php:478 ../../mod/photos.php:1075
|
||||
#: ../../mod/photos.php:1196 ../../mod/photos.php:1498
|
||||
#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
|
||||
#: ../../mod/photos.php:1676 ../../mod/install.php:248
|
||||
#: ../../mod/install.php:286 ../../mod/localtime.php:45 ../../mod/poke.php:199
|
||||
#: ../../mod/content.php:710 ../../mod/contacts.php:386
|
||||
#: ../../mod/settings.php:560 ../../mod/settings.php:670
|
||||
#: ../../mod/settings.php:739 ../../mod/settings.php:811
|
||||
#: ../../mod/settings.php:1037 ../../mod/manage.php:110 ../../mod/group.php:87
|
||||
#: ../../mod/mood.php:137 ../../mod/message.php:335 ../../mod/message.php:564
|
||||
#: ../../mod/admin.php:461 ../../mod/admin.php:728 ../../mod/admin.php:865
|
||||
#: ../../mod/admin.php:1068 ../../mod/admin.php:1155
|
||||
#: ../../mod/profiles.php:626 ../../mod/invite.php:140
|
||||
#: ../../addon/fromgplus/fromgplus.php:44
|
||||
#: ../../addon/facebook/facebook.php:621
|
||||
#: ../../addon/snautofollow/snautofollow.php:64
|
||||
#: ../../addon/fbpost/fbpost.php:280 ../../addon/yourls/yourls.php:76
|
||||
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
|
||||
#: ../../addon/page/page.php:210 ../../addon/planets/planets.php:158
|
||||
#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
|
||||
#: ../../addon/uhremotestorage/uhremotestorage.php:89
|
||||
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
|
||||
#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92
|
||||
#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41
|
||||
#: ../../addon/forumlist/forumlist.php:169
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:48
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:196
|
||||
#: ../../addon/startpage/startpage.php:92
|
||||
#: ../../addon/geonames/geonames.php:187
|
||||
#: ../../addon/forumlist/forumlist.php:178
|
||||
#: ../../addon/impressum/impressum.php:83
|
||||
#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
|
||||
#: ../../addon/qcomment/qcomment.php:61
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:70
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:94
|
||||
#: ../../addon/group_text/group_text.php:84
|
||||
#: ../../addon/libravatar/libravatar.php:99
|
||||
#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87
|
||||
#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
|
||||
#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95
|
||||
#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:91
|
||||
#: ../../addon/altpager/altpager.php:98 ../../addon/mathjax/mathjax.php:42
|
||||
#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:99
|
||||
#: ../../addon/gravatar/gravatar.php:95
|
||||
#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
|
||||
#: ../../addon/jappixmini/jappixmini.php:307
|
||||
#: ../../addon/statusnet/statusnet.php:278
|
||||
#: ../../addon/statusnet/statusnet.php:292
|
||||
#: ../../addon/statusnet/statusnet.php:318
|
||||
#: ../../addon/statusnet/statusnet.php:325
|
||||
#: ../../addon/statusnet/statusnet.php:353
|
||||
#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90
|
||||
#: ../../addon/statusnet/statusnet.php:290
|
||||
#: ../../addon/statusnet/statusnet.php:304
|
||||
#: ../../addon/statusnet/statusnet.php:330
|
||||
#: ../../addon/statusnet/statusnet.php:337
|
||||
#: ../../addon/statusnet/statusnet.php:374
|
||||
#: ../../addon/statusnet/statusnet.php:752 ../../addon/tumblr/tumblr.php:233
|
||||
#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
|
||||
#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
|
||||
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
|
||||
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394
|
||||
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:191
|
||||
#: ../../addon/twitter/twitter.php:229 ../../addon/twitter/twitter.php:556
|
||||
#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
|
||||
#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
|
||||
#: ../../view/theme/cleanzero/config.php:80
|
||||
#: ../../view/theme/diabook/theme.php:757
|
||||
#: ../../view/theme/diabook/config.php:190
|
||||
#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70
|
||||
#: ../../include/conversation.php:607 ../../object/Item.php:559
|
||||
#: ../../view/theme/diabook/theme.php:642
|
||||
#: ../../view/theme/diabook/config.php:152
|
||||
#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
|
||||
#: ../../object/Item.php:604 ../../addon.old/fromgplus/fromgplus.php:40
|
||||
#: ../../addon.old/facebook/facebook.php:619
|
||||
#: ../../addon.old/snautofollow/snautofollow.php:64
|
||||
#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
|
||||
#: ../../addon.old/yourls/yourls.php:76 ../../addon.old/ljpost/ljpost.php:93
|
||||
#: ../../addon.old/nsfw/nsfw.php:88 ../../addon.old/page/page.php:211
|
||||
#: ../../addon.old/planets/planets.php:158
|
||||
#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
|
||||
#: ../../addon.old/randplace/randplace.php:177
|
||||
#: ../../addon.old/dwpost/dwpost.php:93 ../../addon.old/drpost/drpost.php:110
|
||||
#: ../../addon.old/startpage/startpage.php:92
|
||||
#: ../../addon.old/geonames/geonames.php:187
|
||||
#: ../../addon.old/oembed.old/oembed.php:41
|
||||
#: ../../addon.old/forumlist/forumlist.php:175
|
||||
#: ../../addon.old/impressum/impressum.php:83
|
||||
#: ../../addon.old/notimeline/notimeline.php:64
|
||||
#: ../../addon.old/blockem/blockem.php:57
|
||||
#: ../../addon.old/qcomment/qcomment.php:61
|
||||
#: ../../addon.old/openstreetmap/openstreetmap.php:70
|
||||
#: ../../addon.old/group_text/group_text.php:84
|
||||
#: ../../addon.old/libravatar/libravatar.php:99
|
||||
#: ../../addon.old/libertree/libertree.php:90
|
||||
#: ../../addon.old/altpager/altpager.php:87
|
||||
#: ../../addon.old/mathjax/mathjax.php:42
|
||||
#: ../../addon.old/editplain/editplain.php:84
|
||||
#: ../../addon.old/blackout/blackout.php:98
|
||||
#: ../../addon.old/gravatar/gravatar.php:95
|
||||
#: ../../addon.old/pageheader/pageheader.php:55
|
||||
#: ../../addon.old/ijpost/ijpost.php:93
|
||||
#: ../../addon.old/jappixmini/jappixmini.php:307
|
||||
#: ../../addon.old/statusnet/statusnet.php:278
|
||||
#: ../../addon.old/statusnet/statusnet.php:292
|
||||
#: ../../addon.old/statusnet/statusnet.php:318
|
||||
#: ../../addon.old/statusnet/statusnet.php:325
|
||||
#: ../../addon.old/statusnet/statusnet.php:353
|
||||
#: ../../addon.old/statusnet/statusnet.php:576
|
||||
#: ../../addon.old/tumblr/tumblr.php:90
|
||||
#: ../../addon.old/numfriends/numfriends.php:85
|
||||
#: ../../addon.old/gnot/gnot.php:88 ../../addon.old/wppost/wppost.php:110
|
||||
#: ../../addon.old/showmore/showmore.php:48 ../../addon.old/piwik/piwik.php:89
|
||||
#: ../../addon.old/twitter/twitter.php:180
|
||||
#: ../../addon.old/twitter/twitter.php:209
|
||||
#: ../../addon.old/twitter/twitter.php:394 ../../addon.old/irc/irc.php:55
|
||||
#: ../../addon.old/fromapp/fromapp.php:77
|
||||
#: ../../addon.old/blogger/blogger.php:102
|
||||
#: ../../addon.old/posterous/posterous.php:103
|
||||
msgid "Submit"
|
||||
msgstr "Enviar"
|
||||
|
||||
#: ../../mod/help.php:30
|
||||
#: ../../mod/help.php:79
|
||||
msgid "Help:"
|
||||
msgstr "Ajuda:"
|
||||
|
||||
#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225
|
||||
#: ../../include/nav.php:86
|
||||
#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225
|
||||
#: ../../include/nav.php:113 ../../addon.old/dav/friendica/layout.fnk.php:225
|
||||
msgid "Help"
|
||||
msgstr "Ajuda"
|
||||
|
||||
#: ../../mod/help.php:38 ../../index.php:226
|
||||
#: ../../mod/help.php:90 ../../index.php:226
|
||||
msgid "Not Found"
|
||||
msgstr "No trobat"
|
||||
|
||||
#: ../../mod/help.php:41 ../../index.php:229
|
||||
#: ../../mod/help.php:93 ../../index.php:229
|
||||
msgid "Page not found."
|
||||
msgstr "Pàgina no trobada."
|
||||
|
||||
|
|
@ -225,91 +279,103 @@ msgstr "Suggerir un amic per a %s"
|
|||
msgid "Event title and start time are required."
|
||||
msgstr "Títol d'esdeveniment i hora d'inici requerits."
|
||||
|
||||
#: ../../mod/events.php:279
|
||||
#: ../../mod/events.php:291
|
||||
msgid "l, F j"
|
||||
msgstr "l, F j"
|
||||
|
||||
#: ../../mod/events.php:301
|
||||
#: ../../mod/events.php:313
|
||||
msgid "Edit event"
|
||||
msgstr "Editar esdeveniment"
|
||||
|
||||
#: ../../mod/events.php:323 ../../include/text.php:1187
|
||||
#: ../../mod/events.php:335 ../../include/text.php:1258
|
||||
msgid "link to source"
|
||||
msgstr "Enllaç al origen"
|
||||
|
||||
#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131
|
||||
#: ../../include/nav.php:52 ../../boot.php:1689
|
||||
#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91
|
||||
#: ../../include/nav.php:79 ../../boot.php:1857
|
||||
msgid "Events"
|
||||
msgstr "Esdeveniments"
|
||||
|
||||
#: ../../mod/events.php:348
|
||||
#: ../../mod/events.php:371
|
||||
msgid "Create New Event"
|
||||
msgstr "Crear un nou esdeveniment"
|
||||
|
||||
#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263
|
||||
#: ../../mod/events.php:372 ../../addon/dav/friendica/layout.fnk.php:263
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:263
|
||||
msgid "Previous"
|
||||
msgstr "Previ"
|
||||
|
||||
#: ../../mod/events.php:350 ../../mod/install.php:205
|
||||
#: ../../mod/events.php:373 ../../mod/install.php:207
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:266
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:266
|
||||
msgid "Next"
|
||||
msgstr "Següent"
|
||||
|
||||
#: ../../mod/events.php:423
|
||||
#: ../../mod/events.php:446
|
||||
msgid "hour:minute"
|
||||
msgstr "hora:minut"
|
||||
|
||||
#: ../../mod/events.php:433
|
||||
#: ../../mod/events.php:456
|
||||
msgid "Event details"
|
||||
msgstr "Detalls del esdeveniment"
|
||||
|
||||
#: ../../mod/events.php:434
|
||||
#: ../../mod/events.php:457
|
||||
#, php-format
|
||||
msgid "Format is %s %s. Starting date and Title are required."
|
||||
msgstr "El Format és %s %s. Data d'inici i títol requerits."
|
||||
|
||||
#: ../../mod/events.php:436
|
||||
#: ../../mod/events.php:459
|
||||
msgid "Event Starts:"
|
||||
msgstr "Inici d'Esdeveniment:"
|
||||
|
||||
#: ../../mod/events.php:436 ../../mod/events.php:450
|
||||
#: ../../mod/events.php:459 ../../mod/events.php:473
|
||||
msgid "Required"
|
||||
msgstr "Requerit"
|
||||
|
||||
#: ../../mod/events.php:439
|
||||
#: ../../mod/events.php:462
|
||||
msgid "Finish date/time is not known or not relevant"
|
||||
msgstr "La data/hora de finalització no es coneixen o no són relevants"
|
||||
|
||||
#: ../../mod/events.php:441
|
||||
#: ../../mod/events.php:464
|
||||
msgid "Event Finishes:"
|
||||
msgstr "L'esdeveniment Finalitza:"
|
||||
|
||||
#: ../../mod/events.php:444
|
||||
#: ../../mod/events.php:467
|
||||
msgid "Adjust for viewer timezone"
|
||||
msgstr "Ajustar a la zona horaria de l'espectador"
|
||||
|
||||
#: ../../mod/events.php:446
|
||||
#: ../../mod/events.php:469
|
||||
msgid "Description:"
|
||||
msgstr "Descripció:"
|
||||
|
||||
#: ../../mod/events.php:448 ../../mod/directory.php:134
|
||||
#: ../../include/event.php:40 ../../include/bb2diaspora.php:412
|
||||
#: ../../boot.php:1226
|
||||
#: ../../mod/events.php:471 ../../mod/directory.php:134
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:156
|
||||
#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
|
||||
#: ../../boot.php:1379
|
||||
msgid "Location:"
|
||||
msgstr "Ubicació:"
|
||||
|
||||
#: ../../mod/events.php:450
|
||||
#: ../../mod/events.php:473
|
||||
msgid "Title:"
|
||||
msgstr "Títol:"
|
||||
|
||||
#: ../../mod/events.php:452
|
||||
#: ../../mod/events.php:475
|
||||
msgid "Share this event"
|
||||
msgstr "Compartir aquest esdeveniment"
|
||||
|
||||
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136
|
||||
#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
|
||||
#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
|
||||
#: ../../include/conversation.php:1307
|
||||
#: ../../mod/maintenance.php:5
|
||||
msgid "System down for maintenance"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/photos.php:202
|
||||
#: ../../mod/photos.php:289 ../../mod/editpost.php:148
|
||||
#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:249
|
||||
#: ../../mod/settings.php:561 ../../mod/settings.php:587
|
||||
#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116
|
||||
#: ../../mod/message.php:212 ../../mod/suggest.php:32
|
||||
#: ../../addon/js_upload/js_upload.php:45 ../../include/items.php:3897
|
||||
#: ../../include/conversation.php:1062
|
||||
#: ../../addon.old/js_upload/js_upload.php:45
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·lar"
|
||||
|
||||
|
|
@ -327,13 +393,14 @@ msgstr "Selecciona etiqueta a esborrar:"
|
|||
|
||||
#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:468
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
|
||||
msgid "Remove"
|
||||
msgstr "Esborrar"
|
||||
|
||||
#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
|
||||
#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
|
||||
#, php-format
|
||||
msgid "%s welcomes %s"
|
||||
msgstr "%s Benvingut %s"
|
||||
msgid "%1$s welcomes %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/api.php:76 ../../mod/api.php:102
|
||||
msgid "Authorize application connection"
|
||||
|
|
@ -353,288 +420,314 @@ msgid ""
|
|||
" and/or create new posts for you?"
|
||||
msgstr "Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?"
|
||||
|
||||
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835
|
||||
#: ../../mod/settings.php:892 ../../mod/settings.php:898
|
||||
#: ../../mod/settings.php:906 ../../mod/settings.php:910
|
||||
#: ../../mod/settings.php:915 ../../mod/settings.php:921
|
||||
#: ../../mod/settings.php:927 ../../mod/settings.php:933
|
||||
#: ../../mod/settings.php:963 ../../mod/settings.php:964
|
||||
#: ../../mod/settings.php:965 ../../mod/settings.php:966
|
||||
#: ../../mod/settings.php:967 ../../mod/register.php:236
|
||||
#: ../../mod/profiles.php:563
|
||||
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:836
|
||||
#: ../../mod/contacts.php:246 ../../mod/settings.php:934
|
||||
#: ../../mod/settings.php:940 ../../mod/settings.php:948
|
||||
#: ../../mod/settings.php:952 ../../mod/settings.php:957
|
||||
#: ../../mod/settings.php:963 ../../mod/settings.php:969
|
||||
#: ../../mod/settings.php:975 ../../mod/settings.php:1005
|
||||
#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
|
||||
#: ../../mod/settings.php:1008 ../../mod/settings.php:1009
|
||||
#: ../../mod/register.php:239 ../../mod/message.php:209
|
||||
#: ../../mod/profiles.php:606 ../../mod/suggest.php:29
|
||||
#: ../../include/items.php:3894
|
||||
msgid "Yes"
|
||||
msgstr "Si"
|
||||
|
||||
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
|
||||
#: ../../mod/settings.php:892 ../../mod/settings.php:898
|
||||
#: ../../mod/settings.php:906 ../../mod/settings.php:910
|
||||
#: ../../mod/settings.php:915 ../../mod/settings.php:921
|
||||
#: ../../mod/settings.php:927 ../../mod/settings.php:933
|
||||
#: ../../mod/settings.php:963 ../../mod/settings.php:964
|
||||
#: ../../mod/settings.php:965 ../../mod/settings.php:966
|
||||
#: ../../mod/settings.php:967 ../../mod/register.php:237
|
||||
#: ../../mod/profiles.php:564
|
||||
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:837
|
||||
#: ../../mod/settings.php:934 ../../mod/settings.php:940
|
||||
#: ../../mod/settings.php:948 ../../mod/settings.php:952
|
||||
#: ../../mod/settings.php:957 ../../mod/settings.php:963
|
||||
#: ../../mod/settings.php:969 ../../mod/settings.php:975
|
||||
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
|
||||
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
|
||||
#: ../../mod/settings.php:1009 ../../mod/register.php:240
|
||||
#: ../../mod/profiles.php:607
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
#: ../../mod/photos.php:46 ../../boot.php:1682
|
||||
#: ../../mod/photos.php:51 ../../boot.php:1850
|
||||
msgid "Photo Albums"
|
||||
msgstr "Àlbum de Fotos"
|
||||
|
||||
#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986
|
||||
#: ../../mod/photos.php:1073 ../../mod/photos.php:1088
|
||||
#: ../../mod/photos.php:1530 ../../mod/photos.php:1542
|
||||
#: ../../addon/communityhome/communityhome.php:110
|
||||
#: ../../view/theme/diabook/theme.php:598
|
||||
#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1055
|
||||
#: ../../mod/photos.php:1180 ../../mod/photos.php:1203
|
||||
#: ../../mod/photos.php:1733 ../../mod/photos.php:1745
|
||||
#: ../../addon/communityhome/communityhome.php:115
|
||||
#: ../../view/theme/diabook/theme.php:492
|
||||
#: ../../addon.old/communityhome/communityhome.php:110
|
||||
msgid "Contact Photos"
|
||||
msgstr "Fotos de Contacte"
|
||||
|
||||
#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580
|
||||
#: ../../mod/photos.php:66 ../../mod/photos.php:1219 ../../mod/photos.php:1792
|
||||
msgid "Upload New Photos"
|
||||
msgstr "Actualitzar Noves Fotos"
|
||||
|
||||
#: ../../mod/photos.php:74 ../../mod/settings.php:23
|
||||
#: ../../mod/photos.php:79 ../../mod/settings.php:23
|
||||
msgid "everybody"
|
||||
msgstr "tothom"
|
||||
|
||||
#: ../../mod/photos.php:138
|
||||
#: ../../mod/photos.php:143
|
||||
msgid "Contact information unavailable"
|
||||
msgstr "Informació del Contacte no disponible"
|
||||
|
||||
#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073
|
||||
#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:74
|
||||
#: ../../mod/photos.php:154 ../../mod/photos.php:722 ../../mod/photos.php:1180
|
||||
#: ../../mod/photos.php:1203 ../../mod/profile_photo.php:74
|
||||
#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
|
||||
#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
|
||||
#: ../../mod/profile_photo.php:305
|
||||
#: ../../addon/communityhome/communityhome.php:111
|
||||
#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324
|
||||
#: ../../include/user.php:331 ../../include/user.php:338
|
||||
#: ../../addon/communityhome/communityhome.php:116
|
||||
#: ../../view/theme/diabook/theme.php:493 ../../include/user.php:325
|
||||
#: ../../include/user.php:332 ../../include/user.php:339
|
||||
#: ../../addon.old/communityhome/communityhome.php:111
|
||||
msgid "Profile Photos"
|
||||
msgstr "Fotos del Perfil"
|
||||
|
||||
#: ../../mod/photos.php:159
|
||||
#: ../../mod/photos.php:164
|
||||
msgid "Album not found."
|
||||
msgstr "Àlbum no trobat."
|
||||
|
||||
#: ../../mod/photos.php:177 ../../mod/photos.php:1082
|
||||
#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1197
|
||||
msgid "Delete Album"
|
||||
msgstr "Eliminar Àlbum"
|
||||
|
||||
#: ../../mod/photos.php:240 ../../mod/photos.php:1339
|
||||
#: ../../mod/photos.php:197
|
||||
msgid "Do you really want to delete this photo album and all its photos?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:275 ../../mod/photos.php:286 ../../mod/photos.php:1499
|
||||
msgid "Delete Photo"
|
||||
msgstr "Eliminar Foto"
|
||||
|
||||
#: ../../mod/photos.php:584
|
||||
msgid "was tagged in a"
|
||||
msgstr "Fou etiquetat a un"
|
||||
#: ../../mod/photos.php:284
|
||||
msgid "Do you really want to delete this photo?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62
|
||||
#: ../../addon/communityhome/communityhome.php:163
|
||||
#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439
|
||||
#: ../../include/diaspora.php:1824 ../../include/conversation.php:125
|
||||
#: ../../include/conversation.php:253
|
||||
msgid "photo"
|
||||
msgstr "foto"
|
||||
#: ../../mod/photos.php:653
|
||||
#, php-format
|
||||
msgid "%1$s was tagged in %2$s by %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:584
|
||||
msgid "by"
|
||||
msgstr "per"
|
||||
#: ../../mod/photos.php:653
|
||||
msgid "a photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:689 ../../addon/js_upload/js_upload.php:315
|
||||
#: ../../mod/photos.php:758 ../../addon/js_upload/js_upload.php:321
|
||||
#: ../../addon.old/js_upload/js_upload.php:315
|
||||
msgid "Image exceeds size limit of "
|
||||
msgstr "La imatge excedeix el límit de "
|
||||
|
||||
#: ../../mod/photos.php:697
|
||||
#: ../../mod/photos.php:766
|
||||
msgid "Image file is empty."
|
||||
msgstr "El fitxer de imatge és buit."
|
||||
|
||||
#: ../../mod/photos.php:729 ../../mod/profile_photo.php:153
|
||||
#: ../../mod/wall_upload.php:110
|
||||
#: ../../mod/photos.php:798 ../../mod/profile_photo.php:153
|
||||
#: ../../mod/wall_upload.php:112
|
||||
msgid "Unable to process image."
|
||||
msgstr "Incapaç de processar la imatge."
|
||||
|
||||
#: ../../mod/photos.php:756 ../../mod/profile_photo.php:301
|
||||
#: ../../mod/wall_upload.php:136
|
||||
#: ../../mod/photos.php:825 ../../mod/profile_photo.php:301
|
||||
#: ../../mod/wall_upload.php:138
|
||||
msgid "Image upload failed."
|
||||
msgstr "Actualització de la imatge fracassada."
|
||||
|
||||
#: ../../mod/photos.php:842 ../../mod/community.php:18
|
||||
#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
|
||||
#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31
|
||||
#: ../../mod/photos.php:911 ../../mod/community.php:18
|
||||
#: ../../mod/dfrn_request.php:761 ../../mod/viewcontacts.php:17
|
||||
#: ../../mod/display.php:19 ../../mod/search.php:89 ../../mod/directory.php:31
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:53
|
||||
msgid "Public access denied."
|
||||
msgstr "Accés públic denegat."
|
||||
|
||||
#: ../../mod/photos.php:852
|
||||
#: ../../mod/photos.php:921
|
||||
msgid "No photos selected"
|
||||
msgstr "No s'han seleccionat fotos"
|
||||
|
||||
#: ../../mod/photos.php:953
|
||||
#: ../../mod/photos.php:1022
|
||||
msgid "Access to this item is restricted."
|
||||
msgstr "L'accés a aquest element està restringit."
|
||||
|
||||
#: ../../mod/photos.php:1015
|
||||
#: ../../mod/photos.php:1085
|
||||
#, php-format
|
||||
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
|
||||
msgstr "Has emprat %1$.2f Mbytes de %2$.2f Mbytes del magatzem de fotos."
|
||||
|
||||
#: ../../mod/photos.php:1018
|
||||
#, php-format
|
||||
msgid "You have used %1$.2f Mbytes of photo storage."
|
||||
msgstr "Has emprat %1$.2f Mbytes del magatzem de fotos."
|
||||
|
||||
#: ../../mod/photos.php:1024
|
||||
#: ../../mod/photos.php:1120
|
||||
msgid "Upload Photos"
|
||||
msgstr "Carregar Fotos"
|
||||
|
||||
#: ../../mod/photos.php:1028 ../../mod/photos.php:1077
|
||||
#: ../../mod/photos.php:1124 ../../mod/photos.php:1192
|
||||
msgid "New album name: "
|
||||
msgstr "Nou nom d'àlbum:"
|
||||
|
||||
#: ../../mod/photos.php:1029
|
||||
#: ../../mod/photos.php:1125
|
||||
msgid "or existing album name: "
|
||||
msgstr "o nom d'àlbum existent:"
|
||||
|
||||
#: ../../mod/photos.php:1030
|
||||
#: ../../mod/photos.php:1126
|
||||
msgid "Do not show a status post for this upload"
|
||||
msgstr "No tornis a mostrar un missatge d'estat d'aquesta pujada"
|
||||
|
||||
#: ../../mod/photos.php:1032 ../../mod/photos.php:1334
|
||||
#: ../../mod/photos.php:1128 ../../mod/photos.php:1494
|
||||
msgid "Permissions"
|
||||
msgstr "Permisos"
|
||||
|
||||
#: ../../mod/photos.php:1092
|
||||
#: ../../mod/photos.php:1137 ../../mod/photos.php:1503
|
||||
#: ../../mod/settings.php:1070
|
||||
msgid "Show to Groups"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1138 ../../mod/photos.php:1504
|
||||
#: ../../mod/settings.php:1071
|
||||
msgid "Show to Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1139
|
||||
msgid "Private Photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1140
|
||||
msgid "Public Photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1207
|
||||
msgid "Edit Album"
|
||||
msgstr "Editar Àlbum"
|
||||
|
||||
#: ../../mod/photos.php:1098
|
||||
#: ../../mod/photos.php:1213
|
||||
msgid "Show Newest First"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1100
|
||||
#: ../../mod/photos.php:1215
|
||||
msgid "Show Oldest First"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1124 ../../mod/photos.php:1563
|
||||
#: ../../mod/photos.php:1248 ../../mod/photos.php:1775
|
||||
msgid "View Photo"
|
||||
msgstr "Veure Foto"
|
||||
|
||||
#: ../../mod/photos.php:1159
|
||||
#: ../../mod/photos.php:1283
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
msgstr "Permís denegat. L'accés a aquest element pot estar restringit."
|
||||
|
||||
#: ../../mod/photos.php:1161
|
||||
#: ../../mod/photos.php:1285
|
||||
msgid "Photo not available"
|
||||
msgstr "Foto no disponible"
|
||||
|
||||
#: ../../mod/photos.php:1217
|
||||
#: ../../mod/photos.php:1341
|
||||
msgid "View photo"
|
||||
msgstr "Veure foto"
|
||||
|
||||
#: ../../mod/photos.php:1217
|
||||
#: ../../mod/photos.php:1341
|
||||
msgid "Edit photo"
|
||||
msgstr "Editar foto"
|
||||
|
||||
#: ../../mod/photos.php:1218
|
||||
#: ../../mod/photos.php:1342
|
||||
msgid "Use as profile photo"
|
||||
msgstr "Emprar com a foto del perfil"
|
||||
|
||||
#: ../../mod/photos.php:1224 ../../mod/content.php:603
|
||||
#: ../../include/conversation.php:436 ../../object/Item.php:103
|
||||
#: ../../mod/photos.php:1348 ../../mod/content.php:620
|
||||
#: ../../object/Item.php:106
|
||||
msgid "Private Message"
|
||||
msgstr "Missatge Privat"
|
||||
|
||||
#: ../../mod/photos.php:1243
|
||||
#: ../../mod/photos.php:1367
|
||||
msgid "View Full Size"
|
||||
msgstr "Veure'l a Mida Completa"
|
||||
|
||||
#: ../../mod/photos.php:1311
|
||||
#: ../../mod/photos.php:1441
|
||||
msgid "Tags: "
|
||||
msgstr "Etiquetes:"
|
||||
|
||||
#: ../../mod/photos.php:1314
|
||||
#: ../../mod/photos.php:1444
|
||||
msgid "[Remove any tag]"
|
||||
msgstr "Treure etiquetes"
|
||||
|
||||
#: ../../mod/photos.php:1324
|
||||
#: ../../mod/photos.php:1484
|
||||
msgid "Rotate CW (right)"
|
||||
msgstr "Rotar CW (dreta)"
|
||||
|
||||
#: ../../mod/photos.php:1325
|
||||
#: ../../mod/photos.php:1485
|
||||
msgid "Rotate CCW (left)"
|
||||
msgstr "Rotar CCW (esquerra)"
|
||||
|
||||
#: ../../mod/photos.php:1327
|
||||
#: ../../mod/photos.php:1487
|
||||
msgid "New album name"
|
||||
msgstr "Nou nom d'àlbum"
|
||||
|
||||
#: ../../mod/photos.php:1330
|
||||
#: ../../mod/photos.php:1490
|
||||
msgid "Caption"
|
||||
msgstr "Títol"
|
||||
|
||||
#: ../../mod/photos.php:1332
|
||||
#: ../../mod/photos.php:1492
|
||||
msgid "Add a Tag"
|
||||
msgstr "Afegir una etiqueta"
|
||||
|
||||
#: ../../mod/photos.php:1336
|
||||
#: ../../mod/photos.php:1496
|
||||
msgid ""
|
||||
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
msgstr "Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping"
|
||||
|
||||
#: ../../mod/photos.php:1356 ../../mod/content.php:667
|
||||
#: ../../include/conversation.php:581 ../../object/Item.php:195
|
||||
#: ../../mod/photos.php:1505
|
||||
msgid "Private photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1506
|
||||
msgid "Public photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1526 ../../mod/content.php:684
|
||||
#: ../../object/Item.php:204
|
||||
msgid "I like this (toggle)"
|
||||
msgstr "M'agrada això (canviar)"
|
||||
|
||||
#: ../../mod/photos.php:1357 ../../mod/content.php:668
|
||||
#: ../../include/conversation.php:582 ../../object/Item.php:196
|
||||
#: ../../mod/photos.php:1527 ../../mod/content.php:685
|
||||
#: ../../object/Item.php:205
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr "No m'agrada això (canviar)"
|
||||
|
||||
#: ../../mod/photos.php:1358 ../../include/conversation.php:1268
|
||||
#: ../../mod/photos.php:1528 ../../include/conversation.php:1023
|
||||
msgid "Share"
|
||||
msgstr "Compartir"
|
||||
|
||||
#: ../../mod/photos.php:1359 ../../mod/editpost.php:112
|
||||
#: ../../mod/content.php:482 ../../mod/content.php:845
|
||||
#: ../../mod/wallmessage.php:152 ../../mod/message.php:293
|
||||
#: ../../mod/message.php:481 ../../include/conversation.php:686
|
||||
#: ../../include/conversation.php:944 ../../include/conversation.php:1287
|
||||
#: ../../object/Item.php:257
|
||||
#: ../../mod/photos.php:1529 ../../mod/editpost.php:124
|
||||
#: ../../mod/content.php:499 ../../mod/content.php:883
|
||||
#: ../../mod/wallmessage.php:156 ../../mod/message.php:334
|
||||
#: ../../mod/message.php:565 ../../include/conversation.php:646
|
||||
#: ../../include/conversation.php:1042 ../../object/Item.php:293
|
||||
msgid "Please wait"
|
||||
msgstr "Si us plau esperi"
|
||||
|
||||
#: ../../mod/photos.php:1375 ../../mod/photos.php:1416
|
||||
#: ../../mod/photos.php:1448 ../../mod/content.php:690
|
||||
#: ../../include/conversation.php:604 ../../object/Item.php:556
|
||||
#: ../../mod/photos.php:1546 ../../mod/photos.php:1590
|
||||
#: ../../mod/photos.php:1673 ../../mod/content.php:707
|
||||
#: ../../object/Item.php:601
|
||||
msgid "This is you"
|
||||
msgstr "Aquest ets tu"
|
||||
|
||||
#: ../../mod/photos.php:1377 ../../mod/photos.php:1418
|
||||
#: ../../mod/photos.php:1450 ../../mod/content.php:692
|
||||
#: ../../include/conversation.php:606 ../../boot.php:574
|
||||
#: ../../object/Item.php:558
|
||||
#: ../../mod/photos.php:1548 ../../mod/photos.php:1592
|
||||
#: ../../mod/photos.php:1675 ../../mod/content.php:709 ../../boot.php:641
|
||||
#: ../../object/Item.php:290 ../../object/Item.php:603
|
||||
msgid "Comment"
|
||||
msgstr "Comentari"
|
||||
|
||||
#: ../../mod/photos.php:1379 ../../mod/editpost.php:133
|
||||
#: ../../mod/content.php:702 ../../include/conversation.php:616
|
||||
#: ../../include/conversation.php:1305 ../../object/Item.php:568
|
||||
#: ../../mod/photos.php:1550 ../../mod/photos.php:1594
|
||||
#: ../../mod/photos.php:1677 ../../mod/editpost.php:145
|
||||
#: ../../mod/content.php:719 ../../include/conversation.php:1059
|
||||
#: ../../object/Item.php:613
|
||||
msgid "Preview"
|
||||
msgstr "Vista prèvia"
|
||||
|
||||
#: ../../mod/photos.php:1479 ../../mod/content.php:439
|
||||
#: ../../mod/content.php:723 ../../mod/settings.php:606
|
||||
#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696
|
||||
#: ../../include/conversation.php:448 ../../include/conversation.php:889
|
||||
#: ../../object/Item.php:116
|
||||
#: ../../mod/photos.php:1634 ../../mod/content.php:439
|
||||
#: ../../mod/content.php:741 ../../mod/settings.php:623
|
||||
#: ../../mod/group.php:171 ../../mod/admin.php:735
|
||||
#: ../../include/conversation.php:570 ../../object/Item.php:120
|
||||
msgid "Delete"
|
||||
msgstr "Esborrar"
|
||||
|
||||
#: ../../mod/photos.php:1569
|
||||
#: ../../mod/photos.php:1781
|
||||
msgid "View Album"
|
||||
msgstr "Veure Àlbum"
|
||||
|
||||
#: ../../mod/photos.php:1578
|
||||
#: ../../mod/photos.php:1790
|
||||
msgid "Recent Photos"
|
||||
msgstr "Fotos Recents"
|
||||
|
||||
|
|
@ -642,13 +735,13 @@ msgstr "Fotos Recents"
|
|||
msgid "Not available."
|
||||
msgstr "No disponible."
|
||||
|
||||
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133
|
||||
#: ../../include/nav.php:101
|
||||
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
|
||||
#: ../../include/nav.php:128
|
||||
msgid "Community"
|
||||
msgstr "Comunitat"
|
||||
|
||||
#: ../../mod/community.php:63 ../../mod/community.php:88
|
||||
#: ../../mod/search.php:148 ../../mod/search.php:174
|
||||
#: ../../mod/community.php:61 ../../mod/community.php:86
|
||||
#: ../../mod/search.php:162 ../../mod/search.php:188
|
||||
msgid "No results."
|
||||
msgstr "Sense resultats."
|
||||
|
||||
|
|
@ -688,77 +781,96 @@ msgstr "plugins/addons/apps no instal·lats"
|
|||
msgid "Item not found"
|
||||
msgstr "Element no trobat"
|
||||
|
||||
#: ../../mod/editpost.php:36
|
||||
#: ../../mod/editpost.php:39
|
||||
msgid "Edit post"
|
||||
msgstr "Editar Enviament"
|
||||
|
||||
#: ../../mod/editpost.php:88 ../../include/conversation.php:1254
|
||||
msgid "Post to Email"
|
||||
msgstr "Correu per enviar"
|
||||
|
||||
#: ../../mod/editpost.php:103 ../../mod/content.php:710
|
||||
#: ../../mod/settings.php:605 ../../include/conversation.php:441
|
||||
#: ../../object/Item.php:107
|
||||
#: ../../mod/editpost.php:109 ../../mod/content.php:728
|
||||
#: ../../mod/settings.php:622 ../../object/Item.php:110
|
||||
msgid "Edit"
|
||||
msgstr "Editar"
|
||||
|
||||
#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
|
||||
#: ../../mod/message.php:291 ../../mod/message.php:478
|
||||
#: ../../include/conversation.php:1269
|
||||
#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
|
||||
#: ../../mod/message.php:332 ../../mod/message.php:562
|
||||
#: ../../include/conversation.php:1024
|
||||
msgid "Upload photo"
|
||||
msgstr "Carregar foto"
|
||||
|
||||
#: ../../mod/editpost.php:105 ../../include/conversation.php:1271
|
||||
#: ../../mod/editpost.php:111 ../../include/conversation.php:1025
|
||||
msgid "upload photo"
|
||||
msgstr "carregar fotos"
|
||||
|
||||
#: ../../mod/editpost.php:112 ../../include/conversation.php:1026
|
||||
msgid "Attach file"
|
||||
msgstr "Adjunta fitxer"
|
||||
|
||||
#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
|
||||
#: ../../mod/message.php:292 ../../mod/message.php:479
|
||||
#: ../../include/conversation.php:1273
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:1027
|
||||
msgid "attach file"
|
||||
msgstr "adjuntar arxiu"
|
||||
|
||||
#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
|
||||
#: ../../mod/message.php:333 ../../mod/message.php:563
|
||||
#: ../../include/conversation.php:1028
|
||||
msgid "Insert web link"
|
||||
msgstr "Inserir enllaç web"
|
||||
|
||||
#: ../../mod/editpost.php:107
|
||||
msgid "Insert YouTube video"
|
||||
msgstr "Serà mostrat de forma preeminent a la pagina durant el procés de registre."
|
||||
#: ../../mod/editpost.php:115 ../../include/conversation.php:1029
|
||||
msgid "web link"
|
||||
msgstr "enllaç de web"
|
||||
|
||||
#: ../../mod/editpost.php:108
|
||||
msgid "Insert Vorbis [.ogg] video"
|
||||
msgstr "Inserir video Vorbis [.ogg]"
|
||||
#: ../../mod/editpost.php:116 ../../include/conversation.php:1030
|
||||
msgid "Insert video link"
|
||||
msgstr "Insertar enllaç de video"
|
||||
|
||||
#: ../../mod/editpost.php:109
|
||||
msgid "Insert Vorbis [.ogg] audio"
|
||||
msgstr "Inserir audio Vorbis [.ogg]"
|
||||
#: ../../mod/editpost.php:117 ../../include/conversation.php:1031
|
||||
msgid "video link"
|
||||
msgstr "enllaç de video"
|
||||
|
||||
#: ../../mod/editpost.php:110 ../../include/conversation.php:1279
|
||||
#: ../../mod/editpost.php:118 ../../include/conversation.php:1032
|
||||
msgid "Insert audio link"
|
||||
msgstr "Insertar enllaç de audio"
|
||||
|
||||
#: ../../mod/editpost.php:119 ../../include/conversation.php:1033
|
||||
msgid "audio link"
|
||||
msgstr "enllaç de audio"
|
||||
|
||||
#: ../../mod/editpost.php:120 ../../include/conversation.php:1034
|
||||
msgid "Set your location"
|
||||
msgstr "Canvia la teva ubicació"
|
||||
|
||||
#: ../../mod/editpost.php:111 ../../include/conversation.php:1281
|
||||
#: ../../mod/editpost.php:121 ../../include/conversation.php:1035
|
||||
msgid "set location"
|
||||
msgstr "establir la ubicació"
|
||||
|
||||
#: ../../mod/editpost.php:122 ../../include/conversation.php:1036
|
||||
msgid "Clear browser location"
|
||||
msgstr "neteja adreçes del navegador"
|
||||
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:1288
|
||||
#: ../../mod/editpost.php:123 ../../include/conversation.php:1037
|
||||
msgid "clear location"
|
||||
msgstr "netejar ubicació"
|
||||
|
||||
#: ../../mod/editpost.php:125 ../../include/conversation.php:1043
|
||||
msgid "Permission settings"
|
||||
msgstr "Configuració de permisos"
|
||||
|
||||
#: ../../mod/editpost.php:121 ../../include/conversation.php:1297
|
||||
#: ../../mod/editpost.php:133 ../../include/conversation.php:1052
|
||||
msgid "CC: email addresses"
|
||||
msgstr "CC: Adreça de correu"
|
||||
|
||||
#: ../../mod/editpost.php:122 ../../include/conversation.php:1298
|
||||
#: ../../mod/editpost.php:134 ../../include/conversation.php:1053
|
||||
msgid "Public post"
|
||||
msgstr "Enviament públic"
|
||||
|
||||
#: ../../mod/editpost.php:125 ../../include/conversation.php:1284
|
||||
#: ../../mod/editpost.php:137 ../../include/conversation.php:1039
|
||||
msgid "Set title"
|
||||
msgstr "Canviar títol"
|
||||
|
||||
#: ../../mod/editpost.php:127 ../../include/conversation.php:1286
|
||||
#: ../../mod/editpost.php:139 ../../include/conversation.php:1041
|
||||
msgid "Categories (comma-separated list)"
|
||||
msgstr "Categories (lista separada per comes)"
|
||||
|
||||
#: ../../mod/editpost.php:128 ../../include/conversation.php:1300
|
||||
#: ../../mod/editpost.php:140 ../../include/conversation.php:1055
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr "Exemple: bob@example.com, mary@example.com"
|
||||
|
||||
|
|
@ -766,19 +878,19 @@ msgstr "Exemple: bob@example.com, mary@example.com"
|
|||
msgid "This introduction has already been accepted."
|
||||
msgstr "Aquesta presentació ha estat acceptada."
|
||||
|
||||
#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512
|
||||
#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
|
||||
msgid "Profile location is not valid or does not contain profile information."
|
||||
msgstr "El perfil de situació no és vàlid o no contè informació de perfil"
|
||||
|
||||
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517
|
||||
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
|
||||
msgid "Warning: profile location has no identifiable owner name."
|
||||
msgstr "Atenció: El perfil de situació no te nom de propietari identificable."
|
||||
|
||||
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519
|
||||
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
|
||||
msgid "Warning: profile location has no profile photo."
|
||||
msgstr "Atenció: El perfil de situació no te foto de perfil"
|
||||
|
||||
#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522
|
||||
#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
|
||||
#, php-format
|
||||
msgid "%d required parameter was not found at the given location"
|
||||
msgid_plural "%d required parameters were not found at the given location"
|
||||
|
|
@ -818,139 +930,198 @@ msgstr "Localitzador no vàlid"
|
|||
msgid "Invalid email address."
|
||||
msgstr "Adreça de correu no vàlida."
|
||||
|
||||
#: ../../mod/dfrn_request.php:361
|
||||
#: ../../mod/dfrn_request.php:362
|
||||
msgid "This account has not been configured for email. Request failed."
|
||||
msgstr "Aquest compte no s'ha configurat per al correu electrònic. Ha fallat la sol·licitud."
|
||||
|
||||
#: ../../mod/dfrn_request.php:457
|
||||
#: ../../mod/dfrn_request.php:458
|
||||
msgid "Unable to resolve your name at the provided location."
|
||||
msgstr "Incapaç de resoldre el teu nom al lloc facilitat."
|
||||
|
||||
#: ../../mod/dfrn_request.php:470
|
||||
#: ../../mod/dfrn_request.php:471
|
||||
msgid "You have already introduced yourself here."
|
||||
msgstr "Has fer la teva presentació aquí."
|
||||
|
||||
#: ../../mod/dfrn_request.php:474
|
||||
#: ../../mod/dfrn_request.php:475
|
||||
#, php-format
|
||||
msgid "Apparently you are already friends with %s."
|
||||
msgstr "Aparentment, ja tens amistat amb %s"
|
||||
|
||||
#: ../../mod/dfrn_request.php:495
|
||||
#: ../../mod/dfrn_request.php:496
|
||||
msgid "Invalid profile URL."
|
||||
msgstr "Perfil URL no vàlid."
|
||||
|
||||
#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27
|
||||
#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
|
||||
msgid "Disallowed profile URL."
|
||||
msgstr "Perfil URL no permès."
|
||||
|
||||
#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123
|
||||
#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
|
||||
msgid "Failed to update contact record."
|
||||
msgstr "Error en actualitzar registre de contacte."
|
||||
|
||||
#: ../../mod/dfrn_request.php:591
|
||||
#: ../../mod/dfrn_request.php:592
|
||||
msgid "Your introduction has been sent."
|
||||
msgstr "La teva presentació ha estat enviada."
|
||||
|
||||
#: ../../mod/dfrn_request.php:644
|
||||
#: ../../mod/dfrn_request.php:645
|
||||
msgid "Please login to confirm introduction."
|
||||
msgstr "Si us plau, entri per confirmar la presentació."
|
||||
|
||||
#: ../../mod/dfrn_request.php:658
|
||||
#: ../../mod/dfrn_request.php:659
|
||||
msgid ""
|
||||
"Incorrect identity currently logged in. Please login to "
|
||||
"<strong>this</strong> profile."
|
||||
msgstr "Sesió iniciada amb la identificació incorrecta. Entra en <strong>aquest</strong> perfil."
|
||||
|
||||
#: ../../mod/dfrn_request.php:669
|
||||
#: ../../mod/dfrn_request.php:670
|
||||
msgid "Hide this contact"
|
||||
msgstr "Amaga aquest contacte"
|
||||
|
||||
#: ../../mod/dfrn_request.php:672
|
||||
#: ../../mod/dfrn_request.php:673
|
||||
#, php-format
|
||||
msgid "Welcome home %s."
|
||||
msgstr "Benvingut de nou %s"
|
||||
|
||||
#: ../../mod/dfrn_request.php:673
|
||||
#: ../../mod/dfrn_request.php:674
|
||||
#, php-format
|
||||
msgid "Please confirm your introduction/connection request to %s."
|
||||
msgstr "Si us plau, confirmi la seva sol·licitud de Presentació/Amistat a %s."
|
||||
|
||||
#: ../../mod/dfrn_request.php:674
|
||||
#: ../../mod/dfrn_request.php:675
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3287
|
||||
#: ../../mod/dfrn_request.php:716 ../../include/items.php:3366
|
||||
msgid "[Name Withheld]"
|
||||
msgstr "[Nom Amagat]"
|
||||
|
||||
#: ../../mod/dfrn_request.php:810
|
||||
#: ../../mod/dfrn_request.php:811
|
||||
msgid ""
|
||||
"Please enter your 'Identity Address' from one of the following supported "
|
||||
"communications networks:"
|
||||
msgstr "Si us plau, introdueixi la seva \"Adreça Identificativa\" d'una de les següents xarxes socials suportades:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:826
|
||||
#: ../../mod/dfrn_request.php:827
|
||||
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
|
||||
msgstr "<strike>Connectar com un seguidor de correu</strike> (Disponible aviat)"
|
||||
|
||||
#: ../../mod/dfrn_request.php:828
|
||||
#: ../../mod/dfrn_request.php:829
|
||||
msgid ""
|
||||
"If you are not yet a member of the free social web, <a "
|
||||
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
|
||||
" Friendica site and join us today</a>."
|
||||
msgstr "Si encara no ets membre de la web social lliure, <a href=\"http://dir.friendica.com/siteinfo\">segueix aquest enllaç per a trobar un lloc Friendica públic i uneix-te avui</a>."
|
||||
|
||||
#: ../../mod/dfrn_request.php:831
|
||||
#: ../../mod/dfrn_request.php:832
|
||||
msgid "Friend/Connection Request"
|
||||
msgstr "Sol·licitud d'Amistat"
|
||||
|
||||
#: ../../mod/dfrn_request.php:832
|
||||
#: ../../mod/dfrn_request.php:833
|
||||
msgid ""
|
||||
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
|
||||
"testuser@identi.ca"
|
||||
msgstr "Exemples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
|
||||
|
||||
#: ../../mod/dfrn_request.php:833
|
||||
#: ../../mod/dfrn_request.php:834
|
||||
msgid "Please answer the following:"
|
||||
msgstr "Si us plau, contesti les següents preguntes:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:834
|
||||
#: ../../mod/dfrn_request.php:835
|
||||
#, php-format
|
||||
msgid "Does %s know you?"
|
||||
msgstr "%s et coneix?"
|
||||
|
||||
#: ../../mod/dfrn_request.php:837
|
||||
#: ../../mod/dfrn_request.php:838
|
||||
msgid "Add a personal note:"
|
||||
msgstr "Afegir una nota personal:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76
|
||||
#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
|
||||
msgid "Friendica"
|
||||
msgstr "Friendica"
|
||||
|
||||
#: ../../mod/dfrn_request.php:840
|
||||
#: ../../mod/dfrn_request.php:841
|
||||
msgid "StatusNet/Federated Social Web"
|
||||
msgstr "Web Social StatusNet/Federated "
|
||||
|
||||
#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640
|
||||
#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681
|
||||
#: ../../include/contact_selectors.php:80
|
||||
msgid "Diaspora"
|
||||
msgstr "Diaspora"
|
||||
|
||||
#: ../../mod/dfrn_request.php:842
|
||||
#: ../../mod/dfrn_request.php:843
|
||||
#, php-format
|
||||
msgid ""
|
||||
" - please do not use this form. Instead, enter %s into your Diaspora search"
|
||||
" bar."
|
||||
msgstr " - per favor no utilitzi aquest formulari. Al contrari, entra %s en la barra de cerques de Diaspora."
|
||||
|
||||
#: ../../mod/dfrn_request.php:843
|
||||
#: ../../mod/dfrn_request.php:844
|
||||
msgid "Your Identity Address:"
|
||||
msgstr "La Teva Adreça Identificativa:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:846
|
||||
#: ../../mod/dfrn_request.php:847
|
||||
msgid "Submit Request"
|
||||
msgstr "Sol·licitud Enviada"
|
||||
|
||||
#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:167
|
||||
msgid "Account settings"
|
||||
msgstr "Configuració del compte"
|
||||
|
||||
#: ../../mod/uexport.php:14 ../../mod/settings.php:40
|
||||
msgid "Display settings"
|
||||
msgstr "Ajustos de pantalla"
|
||||
|
||||
#: ../../mod/uexport.php:20 ../../mod/settings.php:46
|
||||
msgid "Connector settings"
|
||||
msgstr "Configuració dels connectors"
|
||||
|
||||
#: ../../mod/uexport.php:25 ../../mod/settings.php:51
|
||||
msgid "Plugin settings"
|
||||
msgstr "Configuració del plugin"
|
||||
|
||||
#: ../../mod/uexport.php:30 ../../mod/settings.php:56
|
||||
msgid "Connected apps"
|
||||
msgstr "App connectada"
|
||||
|
||||
#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:61
|
||||
msgid "Export personal data"
|
||||
msgstr "Exportar dades personals"
|
||||
|
||||
#: ../../mod/uexport.php:40 ../../mod/settings.php:66
|
||||
msgid "Remove account"
|
||||
msgstr "Esborrar compte"
|
||||
|
||||
#: ../../mod/uexport.php:48 ../../mod/settings.php:74
|
||||
#: ../../mod/newmember.php:22 ../../mod/admin.php:824 ../../mod/admin.php:1033
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:225
|
||||
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:537
|
||||
#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:167
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:225
|
||||
#: ../../addon.old/mathjax/mathjax.php:36
|
||||
msgid "Settings"
|
||||
msgstr "Ajustos"
|
||||
|
||||
#: ../../mod/uexport.php:72
|
||||
msgid "Export account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/uexport.php:72
|
||||
msgid ""
|
||||
"Export your account info and contacts. Use this to make a backup of your "
|
||||
"account and/or to move it to another server."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/uexport.php:73
|
||||
msgid "Export all"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/uexport.php:73
|
||||
msgid ""
|
||||
"Export your accout info, contacts and all your items as json. Could be a "
|
||||
"very big file, and could take a lot of time. Use this to make a full backup "
|
||||
"of your account (photos are not exported)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/install.php:117
|
||||
msgid "Friendica Social Communications Server - Setup"
|
||||
msgstr "Friendica Social Communications Server - Ajustos"
|
||||
|
|
@ -973,240 +1144,269 @@ msgid ""
|
|||
"or mysql."
|
||||
msgstr "Pot ser que hagi d'importar l'arxiu \"database.sql\" manualment amb phpmyadmin o mysql."
|
||||
|
||||
#: ../../mod/install.php:139 ../../mod/install.php:204
|
||||
#: ../../mod/install.php:488
|
||||
#: ../../mod/install.php:139 ../../mod/install.php:206
|
||||
#: ../../mod/install.php:506
|
||||
msgid "Please see the file \"INSTALL.txt\"."
|
||||
msgstr "Per favor, consulti l'arxiu \"INSTALL.txt\"."
|
||||
|
||||
#: ../../mod/install.php:201
|
||||
#: ../../mod/install.php:203
|
||||
msgid "System check"
|
||||
msgstr "Comprovació del Sistema"
|
||||
|
||||
#: ../../mod/install.php:206
|
||||
#: ../../mod/install.php:208
|
||||
msgid "Check again"
|
||||
msgstr "Comprovi de nou"
|
||||
|
||||
#: ../../mod/install.php:225
|
||||
#: ../../mod/install.php:227
|
||||
msgid "Database connection"
|
||||
msgstr "Conexió a la base de dades"
|
||||
|
||||
#: ../../mod/install.php:226
|
||||
#: ../../mod/install.php:228
|
||||
msgid ""
|
||||
"In order to install Friendica we need to know how to connect to your "
|
||||
"database."
|
||||
msgstr "Per a instal·lar Friendica necessitem conèixer com connectar amb la deva base de dades."
|
||||
|
||||
#: ../../mod/install.php:227
|
||||
#: ../../mod/install.php:229
|
||||
msgid ""
|
||||
"Please contact your hosting provider or site administrator if you have "
|
||||
"questions about these settings."
|
||||
msgstr "Per favor, posi's en contacte amb el seu proveïdor de hosting o administrador del lloc si té alguna pregunta sobre aquestes opcions."
|
||||
|
||||
#: ../../mod/install.php:228
|
||||
#: ../../mod/install.php:230
|
||||
msgid ""
|
||||
"The database you specify below should already exist. If it does not, please "
|
||||
"create it before continuing."
|
||||
msgstr "La base de dades que especifiques ja hauria d'existir. Si no és així, crea-la abans de continuar."
|
||||
|
||||
#: ../../mod/install.php:232
|
||||
#: ../../mod/install.php:234
|
||||
msgid "Database Server Name"
|
||||
msgstr "Nom del Servidor de base de Dades"
|
||||
|
||||
#: ../../mod/install.php:233
|
||||
#: ../../mod/install.php:235
|
||||
msgid "Database Login Name"
|
||||
msgstr "Nom d'Usuari de la base de Dades"
|
||||
|
||||
#: ../../mod/install.php:234
|
||||
#: ../../mod/install.php:236
|
||||
msgid "Database Login Password"
|
||||
msgstr "Contrasenya d'Usuari de la base de Dades"
|
||||
|
||||
#: ../../mod/install.php:235
|
||||
#: ../../mod/install.php:237
|
||||
msgid "Database Name"
|
||||
msgstr "Nom de la base de Dades"
|
||||
|
||||
#: ../../mod/install.php:236 ../../mod/install.php:275
|
||||
#: ../../mod/install.php:238 ../../mod/install.php:277
|
||||
msgid "Site administrator email address"
|
||||
msgstr "Adreça de correu del administrador del lloc"
|
||||
|
||||
#: ../../mod/install.php:236 ../../mod/install.php:275
|
||||
#: ../../mod/install.php:238 ../../mod/install.php:277
|
||||
msgid ""
|
||||
"Your account email address must match this in order to use the web admin "
|
||||
"panel."
|
||||
msgstr "El seu compte d'adreça electrònica ha de coincidir per tal d'utilitzar el panell d'administració web."
|
||||
|
||||
#: ../../mod/install.php:240 ../../mod/install.php:278
|
||||
#: ../../mod/install.php:242 ../../mod/install.php:280
|
||||
msgid "Please select a default timezone for your website"
|
||||
msgstr "Per favor, seleccioni una zona horària per defecte per al seu lloc web"
|
||||
|
||||
#: ../../mod/install.php:265
|
||||
#: ../../mod/install.php:267
|
||||
msgid "Site settings"
|
||||
msgstr "Configuracions del lloc"
|
||||
|
||||
#: ../../mod/install.php:318
|
||||
#: ../../mod/install.php:320
|
||||
msgid "Could not find a command line version of PHP in the web server PATH."
|
||||
msgstr "No es va poder trobar una versió de línia de comandos de PHP en la ruta del servidor web."
|
||||
|
||||
#: ../../mod/install.php:319
|
||||
#: ../../mod/install.php:321
|
||||
msgid ""
|
||||
"If you don't have a command line version of PHP installed on server, you "
|
||||
"will not be able to run background polling via cron. See <a "
|
||||
"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
|
||||
msgstr "Si no tens una versió de línia de comandos instal·lada al teu servidor PHP, no podràs fer córrer els sondejos via cron. Mira <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
|
||||
|
||||
#: ../../mod/install.php:323
|
||||
#: ../../mod/install.php:325
|
||||
msgid "PHP executable path"
|
||||
msgstr "Direcció del executable PHP"
|
||||
|
||||
#: ../../mod/install.php:323
|
||||
#: ../../mod/install.php:325
|
||||
msgid ""
|
||||
"Enter full path to php executable. You can leave this blank to continue the "
|
||||
"installation."
|
||||
msgstr "Entra la ruta sencera fins l'executable de php. Pots deixar això buit per continuar l'instal·lació."
|
||||
|
||||
#: ../../mod/install.php:328
|
||||
#: ../../mod/install.php:330
|
||||
msgid "Command line PHP"
|
||||
msgstr "Linia de comandos PHP"
|
||||
|
||||
#: ../../mod/install.php:337
|
||||
#: ../../mod/install.php:339
|
||||
msgid ""
|
||||
"The command line version of PHP on your system does not have "
|
||||
"\"register_argc_argv\" enabled."
|
||||
msgstr "La versió de línia de comandos de PHP en el seu sistema no té \"register_argc_argv\" habilitat."
|
||||
|
||||
#: ../../mod/install.php:338
|
||||
#: ../../mod/install.php:340
|
||||
msgid "This is required for message delivery to work."
|
||||
msgstr "Això és necessari perquè funcioni el lliurament de missatges."
|
||||
|
||||
#: ../../mod/install.php:340
|
||||
#: ../../mod/install.php:342
|
||||
msgid "PHP register_argc_argv"
|
||||
msgstr "PHP register_argc_argv"
|
||||
|
||||
#: ../../mod/install.php:361
|
||||
#: ../../mod/install.php:363
|
||||
msgid ""
|
||||
"Error: the \"openssl_pkey_new\" function on this system is not able to "
|
||||
"generate encryption keys"
|
||||
msgstr "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifrat"
|
||||
|
||||
#: ../../mod/install.php:362
|
||||
#: ../../mod/install.php:364
|
||||
msgid ""
|
||||
"If running under Windows, please see "
|
||||
"\"http://www.php.net/manual/en/openssl.installation.php\"."
|
||||
msgstr "Si s'executa en Windows, per favor consulti la secció \"http://www.php.net/manual/en/openssl.installation.php\"."
|
||||
|
||||
#: ../../mod/install.php:364
|
||||
#: ../../mod/install.php:366
|
||||
msgid "Generate encryption keys"
|
||||
msgstr "Generar claus d'encripció"
|
||||
|
||||
#: ../../mod/install.php:371
|
||||
#: ../../mod/install.php:373
|
||||
msgid "libCurl PHP module"
|
||||
msgstr "Mòdul libCurl de PHP"
|
||||
|
||||
#: ../../mod/install.php:372
|
||||
#: ../../mod/install.php:374
|
||||
msgid "GD graphics PHP module"
|
||||
msgstr "Mòdul GD de gràfics de PHP"
|
||||
|
||||
#: ../../mod/install.php:373
|
||||
#: ../../mod/install.php:375
|
||||
msgid "OpenSSL PHP module"
|
||||
msgstr "Mòdul OpenSSl de PHP"
|
||||
|
||||
#: ../../mod/install.php:374
|
||||
#: ../../mod/install.php:376
|
||||
msgid "mysqli PHP module"
|
||||
msgstr "Mòdul mysqli de PHP"
|
||||
|
||||
#: ../../mod/install.php:375
|
||||
#: ../../mod/install.php:377
|
||||
msgid "mb_string PHP module"
|
||||
msgstr "Mòdul mb_string de PHP"
|
||||
|
||||
#: ../../mod/install.php:380 ../../mod/install.php:382
|
||||
#: ../../mod/install.php:382 ../../mod/install.php:384
|
||||
msgid "Apache mod_rewrite module"
|
||||
msgstr "Apache mod_rewrite modul "
|
||||
|
||||
#: ../../mod/install.php:380
|
||||
#: ../../mod/install.php:382
|
||||
msgid ""
|
||||
"Error: Apache webserver mod-rewrite module is required but not installed."
|
||||
msgstr "Error: el mòdul mod-rewrite del servidor web Apache és necessari però no està instal·lat."
|
||||
|
||||
#: ../../mod/install.php:388
|
||||
#: ../../mod/install.php:390
|
||||
msgid "Error: libCURL PHP module required but not installed."
|
||||
msgstr "Error: El mòdul libCURL de PHP és necessari però no està instal·lat."
|
||||
|
||||
#: ../../mod/install.php:392
|
||||
#: ../../mod/install.php:394
|
||||
msgid ""
|
||||
"Error: GD graphics PHP module with JPEG support required but not installed."
|
||||
msgstr "Error: el mòdul gràfic GD de PHP amb support per JPEG és necessari però no està instal·lat."
|
||||
|
||||
#: ../../mod/install.php:396
|
||||
#: ../../mod/install.php:398
|
||||
msgid "Error: openssl PHP module required but not installed."
|
||||
msgstr "Error: El mòdul enssl de PHP és necessari però no està instal·lat."
|
||||
|
||||
#: ../../mod/install.php:400
|
||||
#: ../../mod/install.php:402
|
||||
msgid "Error: mysqli PHP module required but not installed."
|
||||
msgstr "Error: El mòdul mysqli de PHP és necessari però no està instal·lat."
|
||||
|
||||
#: ../../mod/install.php:404
|
||||
#: ../../mod/install.php:406
|
||||
msgid "Error: mb_string PHP module required but not installed."
|
||||
msgstr "Error: mòdul mb_string de PHP requerit però no instal·lat."
|
||||
|
||||
#: ../../mod/install.php:421
|
||||
#: ../../mod/install.php:423
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr "L'instal·lador web necessita crear un arxiu anomenat \".htconfig.php\" en la carpeta superior del seu servidor web però alguna cosa ho va impedir."
|
||||
|
||||
#: ../../mod/install.php:422
|
||||
#: ../../mod/install.php:424
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr "Això freqüentment és a causa d'una configuració de permisos; el servidor web no pot escriure arxius en la carpeta - encara que sigui possible."
|
||||
|
||||
#: ../../mod/install.php:423
|
||||
#: ../../mod/install.php:425
|
||||
msgid ""
|
||||
"At the end of this procedure, we will give you a text to save in a file "
|
||||
"named .htconfig.php in your Friendica top folder."
|
||||
msgstr "Al final d'aquest procediment, et facilitarem un text que hauràs de guardar en un arxiu que s'anomena .htconfig.php que hi es a la carpeta principal del teu Friendica."
|
||||
|
||||
#: ../../mod/install.php:424
|
||||
#: ../../mod/install.php:426
|
||||
msgid ""
|
||||
"You can alternatively skip this procedure and perform a manual installation."
|
||||
" Please see the file \"INSTALL.txt\" for instructions."
|
||||
msgstr "Alternativament, pots saltar-te aquest procediment i configurar-ho manualment. Per favor, mira l'arxiu \"INTALL.txt\" per a instruccions."
|
||||
|
||||
#: ../../mod/install.php:427
|
||||
#: ../../mod/install.php:429
|
||||
msgid ".htconfig.php is writable"
|
||||
msgstr ".htconfig.php és escribible"
|
||||
|
||||
#: ../../mod/install.php:439
|
||||
msgid ""
|
||||
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
|
||||
"compiles templates to PHP to speed up rendering."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/install.php:440
|
||||
msgid ""
|
||||
"In order to store these compiled templates, the web server needs to have "
|
||||
"write access to the directory view/smarty3/ under the Friendica top level "
|
||||
"folder."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/install.php:441
|
||||
msgid ""
|
||||
"Please ensure that the user that your web server runs as (e.g. www-data) has"
|
||||
" write access to this folder."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/install.php:442
|
||||
msgid ""
|
||||
"Note: as a security measure, you should give the web server write access to "
|
||||
"view/smarty3/ only--not the template files (.tpl) that it contains."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/install.php:445
|
||||
msgid "view/smarty3 is writable"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/install.php:457
|
||||
msgid ""
|
||||
"Url rewrite in .htaccess is not working. Check your server configuration."
|
||||
msgstr "URL rewrite en .htaccess no esta treballant. Comprova la configuració del teu servidor."
|
||||
|
||||
#: ../../mod/install.php:441
|
||||
#: ../../mod/install.php:459
|
||||
msgid "Url rewrite is working"
|
||||
msgstr "URL rewrite està treballant"
|
||||
|
||||
#: ../../mod/install.php:451
|
||||
#: ../../mod/install.php:469
|
||||
msgid ""
|
||||
"The database configuration file \".htconfig.php\" could not be written. "
|
||||
"Please use the enclosed text to create a configuration file in your web "
|
||||
"server root."
|
||||
msgstr "L'arxiu per a la configuració de la base de dades \".htconfig.php\" no es pot escriure. Per favor, usi el text adjunt per crear un arxiu de configuració en l'arrel del servidor web."
|
||||
|
||||
#: ../../mod/install.php:475
|
||||
#: ../../mod/install.php:493
|
||||
msgid "Errors encountered creating database tables."
|
||||
msgstr "Trobats errors durant la creació de les taules de la base de dades."
|
||||
|
||||
#: ../../mod/install.php:486
|
||||
#: ../../mod/install.php:504
|
||||
msgid "<h1>What next</h1>"
|
||||
msgstr "<h1>Que es següent</h1>"
|
||||
|
||||
#: ../../mod/install.php:487
|
||||
#: ../../mod/install.php:505
|
||||
msgid ""
|
||||
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
|
||||
"poller."
|
||||
msgstr "IMPORTANT: necessitarà configurar [manualment] el programar una tasca pel sondejador (poller.php)"
|
||||
|
||||
#: ../../mod/localtime.php:12 ../../include/event.php:11
|
||||
#: ../../include/bb2diaspora.php:390
|
||||
#: ../../include/bb2diaspora.php:393
|
||||
msgid "l F d, Y \\@ g:i A"
|
||||
msgstr "l F d, Y \\@ g:i A"
|
||||
|
||||
|
|
@ -1218,7 +1418,7 @@ msgstr "Temps de Conversió"
|
|||
msgid ""
|
||||
"Friendica provides this service for sharing events with other networks and "
|
||||
"friends in unknown timezones."
|
||||
msgstr "Friendica ofereix aquest servei per compartir esdeveniments amb altres xarxes i amics a les zones horàries desconegudes."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/localtime.php:30
|
||||
#, php-format
|
||||
|
|
@ -1241,11 +1441,11 @@ msgstr "Si us plau, seleccioneu la vostra zona horària:"
|
|||
|
||||
#: ../../mod/poke.php:192
|
||||
msgid "Poke/Prod"
|
||||
msgstr ""
|
||||
msgstr "Atia/Punxa"
|
||||
|
||||
#: ../../mod/poke.php:193
|
||||
msgid "poke, prod or do other things to somebody"
|
||||
msgstr ""
|
||||
msgstr "Atiar, punxar o fer altres coses a algú"
|
||||
|
||||
#: ../../mod/poke.php:194
|
||||
msgid "Recipient"
|
||||
|
|
@ -1253,11 +1453,11 @@ msgstr "Recipient"
|
|||
|
||||
#: ../../mod/poke.php:195
|
||||
msgid "Choose what you wish to do to recipient"
|
||||
msgstr ""
|
||||
msgstr "Tria que vols fer amb el contenidor"
|
||||
|
||||
#: ../../mod/poke.php:198
|
||||
msgid "Make this post private"
|
||||
msgstr ""
|
||||
msgstr "Fes aquest missatge privat"
|
||||
|
||||
#: ../../mod/match.php:12
|
||||
msgid "Profile Match"
|
||||
|
|
@ -1271,8 +1471,8 @@ msgstr "No hi ha paraules clau que coincideixin. Si us plau, afegeixi paraules c
|
|||
msgid "is interested in:"
|
||||
msgstr "està interessat en:"
|
||||
|
||||
#: ../../mod/match.php:58 ../../mod/suggest.php:59
|
||||
#: ../../include/contact_widgets.php:9 ../../boot.php:1164
|
||||
#: ../../mod/match.php:58 ../../mod/suggest.php:88
|
||||
#: ../../include/contact_widgets.php:9 ../../boot.php:1317
|
||||
msgid "Connect"
|
||||
msgstr "Connexió"
|
||||
|
||||
|
|
@ -1280,180 +1480,157 @@ msgstr "Connexió"
|
|||
msgid "No matches"
|
||||
msgstr "No hi ha coincidències"
|
||||
|
||||
#: ../../mod/lockview.php:39
|
||||
#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
|
||||
msgid "Remote privacy information not available."
|
||||
msgstr "Informació de privacitat remota no disponible."
|
||||
|
||||
#: ../../mod/lockview.php:43
|
||||
#: ../../mod/lockview.php:48
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:124
|
||||
msgid "Visible to:"
|
||||
msgstr "Visible per a:"
|
||||
|
||||
#: ../../mod/content.php:119 ../../mod/network.php:436
|
||||
#: ../../mod/content.php:119 ../../mod/network.php:596
|
||||
msgid "No such group"
|
||||
msgstr "Cap grup com"
|
||||
|
||||
#: ../../mod/content.php:130 ../../mod/network.php:447
|
||||
#: ../../mod/content.php:130 ../../mod/network.php:607
|
||||
msgid "Group is empty"
|
||||
msgstr "El Grup es buit"
|
||||
|
||||
#: ../../mod/content.php:134 ../../mod/network.php:451
|
||||
#: ../../mod/content.php:134 ../../mod/network.php:611
|
||||
msgid "Group: "
|
||||
msgstr "Grup:"
|
||||
|
||||
#: ../../mod/content.php:438 ../../mod/content.php:722
|
||||
#: ../../include/conversation.php:447 ../../include/conversation.php:888
|
||||
#: ../../object/Item.php:115
|
||||
#: ../../mod/content.php:438 ../../mod/content.php:740
|
||||
#: ../../include/conversation.php:569 ../../object/Item.php:119
|
||||
msgid "Select"
|
||||
msgstr "Selecionar"
|
||||
|
||||
#: ../../mod/content.php:455 ../../mod/content.php:815
|
||||
#: ../../mod/content.php:816 ../../include/conversation.php:654
|
||||
#: ../../include/conversation.php:655 ../../include/conversation.php:907
|
||||
#: ../../object/Item.php:226 ../../object/Item.php:227
|
||||
#: ../../mod/content.php:472 ../../mod/content.php:852
|
||||
#: ../../mod/content.php:853 ../../include/conversation.php:609
|
||||
#: ../../object/Item.php:258 ../../object/Item.php:259
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr "Veure perfil de %s @ %s"
|
||||
|
||||
#: ../../mod/content.php:465 ../../mod/content.php:827
|
||||
#: ../../include/conversation.php:668 ../../include/conversation.php:927
|
||||
#: ../../object/Item.php:239
|
||||
#: ../../mod/content.php:482 ../../mod/content.php:864
|
||||
#: ../../include/conversation.php:629 ../../object/Item.php:272
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s des de %s"
|
||||
|
||||
#: ../../mod/content.php:480 ../../include/conversation.php:942
|
||||
#: ../../mod/content.php:497 ../../include/conversation.php:644
|
||||
msgid "View in context"
|
||||
msgstr "Veure en context"
|
||||
|
||||
#: ../../mod/content.php:586 ../../include/conversation.php:695
|
||||
#: ../../object/Item.php:276
|
||||
#: ../../mod/content.php:603 ../../object/Item.php:313
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] "%d comentari"
|
||||
msgstr[1] "%d comentaris"
|
||||
|
||||
#: ../../mod/content.php:588 ../../include/text.php:1443
|
||||
#: ../../include/conversation.php:697 ../../object/Item.php:278
|
||||
#: ../../object/Item.php:291
|
||||
#: ../../mod/content.php:605 ../../include/text.php:1514
|
||||
#: ../../object/Item.php:315 ../../object/Item.php:328
|
||||
msgid "comment"
|
||||
msgid_plural "comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] "comentari"
|
||||
|
||||
#: ../../mod/content.php:589 ../../addon/page/page.php:76
|
||||
#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119
|
||||
#: ../../include/contact_widgets.php:195 ../../include/conversation.php:698
|
||||
#: ../../boot.php:575 ../../object/Item.php:279
|
||||
#: ../../mod/content.php:606 ../../addon/page/page.php:77
|
||||
#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
|
||||
#: ../../include/contact_widgets.php:204 ../../boot.php:642
|
||||
#: ../../object/Item.php:316 ../../addon.old/page/page.php:77
|
||||
#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
|
||||
msgid "show more"
|
||||
msgstr "Mostrar més"
|
||||
|
||||
#: ../../mod/content.php:667 ../../include/conversation.php:581
|
||||
#: ../../object/Item.php:195
|
||||
#: ../../mod/content.php:684 ../../object/Item.php:204
|
||||
msgid "like"
|
||||
msgstr "Agrada"
|
||||
|
||||
#: ../../mod/content.php:668 ../../include/conversation.php:582
|
||||
#: ../../object/Item.php:196
|
||||
#: ../../mod/content.php:685 ../../object/Item.php:205
|
||||
msgid "dislike"
|
||||
msgstr "Desagrada"
|
||||
|
||||
#: ../../mod/content.php:670 ../../include/conversation.php:584
|
||||
#: ../../object/Item.php:198
|
||||
#: ../../mod/content.php:687 ../../object/Item.php:207
|
||||
msgid "Share this"
|
||||
msgstr "Compartir això"
|
||||
|
||||
#: ../../mod/content.php:670 ../../include/conversation.php:584
|
||||
#: ../../object/Item.php:198
|
||||
#: ../../mod/content.php:687 ../../object/Item.php:207
|
||||
msgid "share"
|
||||
msgstr "Compartir"
|
||||
|
||||
#: ../../mod/content.php:694 ../../include/conversation.php:608
|
||||
#: ../../object/Item.php:560
|
||||
#: ../../mod/content.php:711 ../../object/Item.php:605
|
||||
msgid "Bold"
|
||||
msgstr "Negreta"
|
||||
|
||||
#: ../../mod/content.php:695 ../../include/conversation.php:609
|
||||
#: ../../object/Item.php:561
|
||||
#: ../../mod/content.php:712 ../../object/Item.php:606
|
||||
msgid "Italic"
|
||||
msgstr "Itallica"
|
||||
|
||||
#: ../../mod/content.php:696 ../../include/conversation.php:610
|
||||
#: ../../object/Item.php:562
|
||||
#: ../../mod/content.php:713 ../../object/Item.php:607
|
||||
msgid "Underline"
|
||||
msgstr "Subratllat"
|
||||
|
||||
#: ../../mod/content.php:697 ../../include/conversation.php:611
|
||||
#: ../../object/Item.php:563
|
||||
#: ../../mod/content.php:714 ../../object/Item.php:608
|
||||
msgid "Quote"
|
||||
msgstr "Cometes"
|
||||
|
||||
#: ../../mod/content.php:698 ../../include/conversation.php:612
|
||||
#: ../../object/Item.php:564
|
||||
#: ../../mod/content.php:715 ../../object/Item.php:609
|
||||
msgid "Code"
|
||||
msgstr "Codi"
|
||||
|
||||
#: ../../mod/content.php:699 ../../include/conversation.php:613
|
||||
#: ../../object/Item.php:565
|
||||
#: ../../mod/content.php:716 ../../object/Item.php:610
|
||||
msgid "Image"
|
||||
msgstr "Imatge"
|
||||
|
||||
#: ../../mod/content.php:700 ../../include/conversation.php:614
|
||||
#: ../../object/Item.php:566
|
||||
#: ../../mod/content.php:717 ../../object/Item.php:611
|
||||
msgid "Link"
|
||||
msgstr "Enllaç"
|
||||
|
||||
#: ../../mod/content.php:701 ../../include/conversation.php:615
|
||||
#: ../../object/Item.php:567
|
||||
#: ../../mod/content.php:718 ../../object/Item.php:612
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: ../../mod/content.php:735 ../../include/conversation.php:545
|
||||
#: ../../object/Item.php:179
|
||||
#: ../../mod/content.php:753 ../../object/Item.php:183
|
||||
msgid "add star"
|
||||
msgstr "Afegir a favorits"
|
||||
|
||||
#: ../../mod/content.php:736 ../../include/conversation.php:546
|
||||
#: ../../object/Item.php:180
|
||||
#: ../../mod/content.php:754 ../../object/Item.php:184
|
||||
msgid "remove star"
|
||||
msgstr "Esborrar favorit"
|
||||
|
||||
#: ../../mod/content.php:737 ../../include/conversation.php:547
|
||||
#: ../../object/Item.php:181
|
||||
#: ../../mod/content.php:755 ../../object/Item.php:185
|
||||
msgid "toggle star status"
|
||||
msgstr "Canviar estatus de favorit"
|
||||
|
||||
#: ../../mod/content.php:740 ../../include/conversation.php:550
|
||||
#: ../../object/Item.php:184
|
||||
#: ../../mod/content.php:758 ../../object/Item.php:188
|
||||
msgid "starred"
|
||||
msgstr "favorit"
|
||||
|
||||
#: ../../mod/content.php:741 ../../include/conversation.php:551
|
||||
#: ../../object/Item.php:185
|
||||
#: ../../mod/content.php:759 ../../object/Item.php:193
|
||||
msgid "add tag"
|
||||
msgstr "afegir etiqueta"
|
||||
|
||||
#: ../../mod/content.php:745 ../../include/conversation.php:451
|
||||
#: ../../object/Item.php:119
|
||||
#: ../../mod/content.php:763 ../../object/Item.php:123
|
||||
msgid "save to folder"
|
||||
msgstr "guardat a la carpeta"
|
||||
|
||||
#: ../../mod/content.php:817 ../../include/conversation.php:656
|
||||
#: ../../object/Item.php:228
|
||||
#: ../../mod/content.php:854 ../../object/Item.php:260
|
||||
msgid "to"
|
||||
msgstr "a"
|
||||
|
||||
#: ../../mod/content.php:818 ../../include/conversation.php:657
|
||||
#: ../../object/Item.php:229
|
||||
#: ../../mod/content.php:855 ../../object/Item.php:262
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr "Mur-a-Mur"
|
||||
|
||||
#: ../../mod/content.php:819 ../../include/conversation.php:658
|
||||
#: ../../object/Item.php:230
|
||||
#: ../../mod/content.php:856 ../../object/Item.php:263
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr "via Mur-a-Mur"
|
||||
|
||||
#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179
|
||||
#: ../../mod/home.php:34 ../../addon/communityhome/communityhome.php:189
|
||||
#: ../../addon.old/communityhome/communityhome.php:179
|
||||
#, php-format
|
||||
msgid "Welcome to %s"
|
||||
msgstr "Benvingut a %s"
|
||||
|
|
@ -1462,1177 +1639,1187 @@ msgstr "Benvingut a %s"
|
|||
msgid "Invalid request identifier."
|
||||
msgstr "Sol·licitud d'identificació no vàlida."
|
||||
|
||||
#: ../../mod/notifications.php:35 ../../mod/notifications.php:161
|
||||
#: ../../mod/notifications.php:207
|
||||
#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
|
||||
#: ../../mod/notifications.php:211
|
||||
msgid "Discard"
|
||||
msgstr "Descartar"
|
||||
|
||||
#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
|
||||
#: ../../mod/notifications.php:206 ../../mod/contacts.php:321
|
||||
#: ../../mod/contacts.php:375
|
||||
#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
|
||||
#: ../../mod/notifications.php:210 ../../mod/contacts.php:359
|
||||
#: ../../mod/contacts.php:413
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorar"
|
||||
|
||||
#: ../../mod/notifications.php:75
|
||||
#: ../../mod/notifications.php:78
|
||||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: ../../mod/notifications.php:80 ../../include/nav.php:113
|
||||
#: ../../mod/notifications.php:83 ../../include/nav.php:140
|
||||
msgid "Network"
|
||||
msgstr "Xarxa"
|
||||
|
||||
#: ../../mod/notifications.php:85 ../../mod/network.php:300
|
||||
#: ../../mod/notifications.php:88 ../../mod/network.php:444
|
||||
msgid "Personal"
|
||||
msgstr "Personal"
|
||||
|
||||
#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127
|
||||
#: ../../include/nav.php:77 ../../include/nav.php:115
|
||||
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
|
||||
#: ../../include/nav.php:104 ../../include/nav.php:143
|
||||
msgid "Home"
|
||||
msgstr "Inici"
|
||||
|
||||
#: ../../mod/notifications.php:95 ../../include/nav.php:121
|
||||
#: ../../mod/notifications.php:98 ../../include/nav.php:149
|
||||
msgid "Introductions"
|
||||
msgstr "Presentacions"
|
||||
|
||||
#: ../../mod/notifications.php:100 ../../mod/message.php:176
|
||||
#: ../../include/nav.php:128
|
||||
#: ../../mod/notifications.php:103 ../../mod/message.php:182
|
||||
#: ../../include/nav.php:156
|
||||
msgid "Messages"
|
||||
msgstr "Missatges"
|
||||
|
||||
#: ../../mod/notifications.php:119
|
||||
#: ../../mod/notifications.php:122
|
||||
msgid "Show Ignored Requests"
|
||||
msgstr "Mostra les Sol·licituds Ignorades"
|
||||
|
||||
#: ../../mod/notifications.php:119
|
||||
#: ../../mod/notifications.php:122
|
||||
msgid "Hide Ignored Requests"
|
||||
msgstr "Amaga les Sol·licituds Ignorades"
|
||||
|
||||
#: ../../mod/notifications.php:145 ../../mod/notifications.php:191
|
||||
#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
|
||||
msgid "Notification type: "
|
||||
msgstr "Tipus de Notificació:"
|
||||
|
||||
#: ../../mod/notifications.php:146
|
||||
#: ../../mod/notifications.php:150
|
||||
msgid "Friend Suggestion"
|
||||
msgstr "Amics Suggerits "
|
||||
|
||||
#: ../../mod/notifications.php:148
|
||||
#: ../../mod/notifications.php:152
|
||||
#, php-format
|
||||
msgid "suggested by %s"
|
||||
msgstr "sugerit per %s"
|
||||
|
||||
#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
|
||||
#: ../../mod/contacts.php:381
|
||||
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
|
||||
#: ../../mod/contacts.php:419
|
||||
msgid "Hide this contact from others"
|
||||
msgstr "Amaga aquest contacte dels altres"
|
||||
|
||||
#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
|
||||
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
|
||||
msgid "Post a new friend activity"
|
||||
msgstr "Publica una activitat d'amic nova"
|
||||
|
||||
#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
|
||||
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
|
||||
msgid "if applicable"
|
||||
msgstr "si es pot aplicar"
|
||||
|
||||
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
|
||||
#: ../../mod/admin.php:694
|
||||
#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
|
||||
#: ../../mod/admin.php:733
|
||||
msgid "Approve"
|
||||
msgstr "Aprovar"
|
||||
|
||||
#: ../../mod/notifications.php:177
|
||||
#: ../../mod/notifications.php:181
|
||||
msgid "Claims to be known to you: "
|
||||
msgstr "Diu que et coneix:"
|
||||
|
||||
#: ../../mod/notifications.php:177
|
||||
#: ../../mod/notifications.php:181
|
||||
msgid "yes"
|
||||
msgstr "sí"
|
||||
|
||||
#: ../../mod/notifications.php:177
|
||||
#: ../../mod/notifications.php:181
|
||||
msgid "no"
|
||||
msgstr "no"
|
||||
|
||||
#: ../../mod/notifications.php:184
|
||||
#: ../../mod/notifications.php:188
|
||||
msgid "Approve as: "
|
||||
msgstr "Aprovat com:"
|
||||
|
||||
#: ../../mod/notifications.php:185
|
||||
#: ../../mod/notifications.php:189
|
||||
msgid "Friend"
|
||||
msgstr "Amic"
|
||||
|
||||
#: ../../mod/notifications.php:186
|
||||
#: ../../mod/notifications.php:190
|
||||
msgid "Sharer"
|
||||
msgstr "Partícip"
|
||||
|
||||
#: ../../mod/notifications.php:186
|
||||
#: ../../mod/notifications.php:190
|
||||
msgid "Fan/Admirer"
|
||||
msgstr "Fan/Admirador"
|
||||
|
||||
#: ../../mod/notifications.php:192
|
||||
#: ../../mod/notifications.php:196
|
||||
msgid "Friend/Connect Request"
|
||||
msgstr "Sol·licitud d'Amistat/Connexió"
|
||||
|
||||
#: ../../mod/notifications.php:192
|
||||
#: ../../mod/notifications.php:196
|
||||
msgid "New Follower"
|
||||
msgstr "Nou Seguidor"
|
||||
|
||||
#: ../../mod/notifications.php:213
|
||||
#: ../../mod/notifications.php:217
|
||||
msgid "No introductions."
|
||||
msgstr "Sense presentacions."
|
||||
|
||||
#: ../../mod/notifications.php:216 ../../include/nav.php:122
|
||||
#: ../../mod/notifications.php:220 ../../include/nav.php:150
|
||||
msgid "Notifications"
|
||||
msgstr "Notificacions"
|
||||
|
||||
#: ../../mod/notifications.php:253 ../../mod/notifications.php:378
|
||||
#: ../../mod/notifications.php:465
|
||||
#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
|
||||
#: ../../mod/notifications.php:469
|
||||
#, php-format
|
||||
msgid "%s liked %s's post"
|
||||
msgstr "A %s li agrada l'enviament de %s"
|
||||
|
||||
#: ../../mod/notifications.php:262 ../../mod/notifications.php:387
|
||||
#: ../../mod/notifications.php:474
|
||||
#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
|
||||
#: ../../mod/notifications.php:478
|
||||
#, php-format
|
||||
msgid "%s disliked %s's post"
|
||||
msgstr "A %s no li agrada l'enviament de %s"
|
||||
|
||||
#: ../../mod/notifications.php:276 ../../mod/notifications.php:401
|
||||
#: ../../mod/notifications.php:488
|
||||
#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
|
||||
#: ../../mod/notifications.php:492
|
||||
#, php-format
|
||||
msgid "%s is now friends with %s"
|
||||
msgstr "%s es ara amic de %s"
|
||||
|
||||
#: ../../mod/notifications.php:283 ../../mod/notifications.php:408
|
||||
#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
|
||||
#, php-format
|
||||
msgid "%s created a new post"
|
||||
msgstr "%s ha creat un enviament nou"
|
||||
|
||||
#: ../../mod/notifications.php:284 ../../mod/notifications.php:409
|
||||
#: ../../mod/notifications.php:497
|
||||
#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
|
||||
#: ../../mod/notifications.php:501
|
||||
#, php-format
|
||||
msgid "%s commented on %s's post"
|
||||
msgstr "%s va comentar en l'enviament de %s"
|
||||
|
||||
#: ../../mod/notifications.php:298
|
||||
#: ../../mod/notifications.php:302
|
||||
msgid "No more network notifications."
|
||||
msgstr "No més notificacions de xarxa."
|
||||
|
||||
#: ../../mod/notifications.php:302
|
||||
#: ../../mod/notifications.php:306
|
||||
msgid "Network Notifications"
|
||||
msgstr "Notificacions de la Xarxa"
|
||||
|
||||
#: ../../mod/notifications.php:328 ../../mod/notify.php:61
|
||||
#: ../../mod/notifications.php:332 ../../mod/notify.php:61
|
||||
msgid "No more system notifications."
|
||||
msgstr "No més notificacions del sistema."
|
||||
|
||||
#: ../../mod/notifications.php:332 ../../mod/notify.php:65
|
||||
#: ../../mod/notifications.php:336 ../../mod/notify.php:65
|
||||
msgid "System Notifications"
|
||||
msgstr "Notificacions del Sistema"
|
||||
|
||||
#: ../../mod/notifications.php:423
|
||||
#: ../../mod/notifications.php:427
|
||||
msgid "No more personal notifications."
|
||||
msgstr "No més notificacions personals."
|
||||
|
||||
#: ../../mod/notifications.php:427
|
||||
#: ../../mod/notifications.php:431
|
||||
msgid "Personal Notifications"
|
||||
msgstr "Notificacions Personals"
|
||||
|
||||
#: ../../mod/notifications.php:504
|
||||
#: ../../mod/notifications.php:508
|
||||
msgid "No more home notifications."
|
||||
msgstr "No més notificacions d'inici."
|
||||
|
||||
#: ../../mod/notifications.php:508
|
||||
#: ../../mod/notifications.php:512
|
||||
msgid "Home Notifications"
|
||||
msgstr "Notificacions d'Inici"
|
||||
|
||||
#: ../../mod/contacts.php:84 ../../mod/contacts.php:164
|
||||
#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
|
||||
msgid "Could not access contact record."
|
||||
msgstr "No puc accedir al registre del contacte."
|
||||
|
||||
#: ../../mod/contacts.php:98
|
||||
#: ../../mod/contacts.php:99
|
||||
msgid "Could not locate selected profile."
|
||||
msgstr "No puc localitzar el perfil seleccionat."
|
||||
|
||||
#: ../../mod/contacts.php:121
|
||||
#: ../../mod/contacts.php:122
|
||||
msgid "Contact updated."
|
||||
msgstr "Contacte actualitzat."
|
||||
|
||||
#: ../../mod/contacts.php:186
|
||||
#: ../../mod/contacts.php:187
|
||||
msgid "Contact has been blocked"
|
||||
msgstr "Elcontacte ha estat bloquejat"
|
||||
|
||||
#: ../../mod/contacts.php:186
|
||||
#: ../../mod/contacts.php:187
|
||||
msgid "Contact has been unblocked"
|
||||
msgstr "El contacte ha estat desbloquejat"
|
||||
|
||||
#: ../../mod/contacts.php:200
|
||||
#: ../../mod/contacts.php:201
|
||||
msgid "Contact has been ignored"
|
||||
msgstr "El contacte ha estat ignorat"
|
||||
|
||||
#: ../../mod/contacts.php:200
|
||||
#: ../../mod/contacts.php:201
|
||||
msgid "Contact has been unignored"
|
||||
msgstr "El contacte ha estat recordat"
|
||||
|
||||
#: ../../mod/contacts.php:216
|
||||
#: ../../mod/contacts.php:220
|
||||
msgid "Contact has been archived"
|
||||
msgstr "El contacte ha estat arxivat"
|
||||
|
||||
#: ../../mod/contacts.php:216
|
||||
#: ../../mod/contacts.php:220
|
||||
msgid "Contact has been unarchived"
|
||||
msgstr "El contacte ha estat desarxivat"
|
||||
|
||||
#: ../../mod/contacts.php:229
|
||||
#: ../../mod/contacts.php:244
|
||||
msgid "Do you really want to delete this contact?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:263
|
||||
msgid "Contact has been removed."
|
||||
msgstr "El contacte ha estat tret"
|
||||
|
||||
#: ../../mod/contacts.php:263
|
||||
#: ../../mod/contacts.php:301
|
||||
#, php-format
|
||||
msgid "You are mutual friends with %s"
|
||||
msgstr "Ara te una amistat mutua amb %s"
|
||||
|
||||
#: ../../mod/contacts.php:267
|
||||
#: ../../mod/contacts.php:305
|
||||
#, php-format
|
||||
msgid "You are sharing with %s"
|
||||
msgstr "Estas compartint amb %s"
|
||||
|
||||
#: ../../mod/contacts.php:272
|
||||
#: ../../mod/contacts.php:310
|
||||
#, php-format
|
||||
msgid "%s is sharing with you"
|
||||
msgstr "%s esta compartint amb tú"
|
||||
|
||||
#: ../../mod/contacts.php:289
|
||||
#: ../../mod/contacts.php:327
|
||||
msgid "Private communications are not available for this contact."
|
||||
msgstr "Comunicacions privades no disponibles per aquest contacte."
|
||||
|
||||
#: ../../mod/contacts.php:292
|
||||
#: ../../mod/contacts.php:330
|
||||
msgid "Never"
|
||||
msgstr "Mai"
|
||||
|
||||
#: ../../mod/contacts.php:296
|
||||
#: ../../mod/contacts.php:334
|
||||
msgid "(Update was successful)"
|
||||
msgstr "(L'actualització fou exitosa)"
|
||||
|
||||
#: ../../mod/contacts.php:296
|
||||
#: ../../mod/contacts.php:334
|
||||
msgid "(Update was not successful)"
|
||||
msgstr "(L'actualització fracassà)"
|
||||
|
||||
#: ../../mod/contacts.php:298
|
||||
#: ../../mod/contacts.php:336
|
||||
msgid "Suggest friends"
|
||||
msgstr "Suggerir amics"
|
||||
|
||||
#: ../../mod/contacts.php:302
|
||||
#: ../../mod/contacts.php:340
|
||||
#, php-format
|
||||
msgid "Network type: %s"
|
||||
msgstr "Xarxa tipus: %s"
|
||||
|
||||
#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190
|
||||
#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199
|
||||
#, php-format
|
||||
msgid "%d contact in common"
|
||||
msgid_plural "%d contacts in common"
|
||||
msgstr[0] "%d contacte en comú"
|
||||
msgstr[1] "%d contactes en comú"
|
||||
|
||||
#: ../../mod/contacts.php:310
|
||||
#: ../../mod/contacts.php:348
|
||||
msgid "View all contacts"
|
||||
msgstr "Veure tots els contactes"
|
||||
|
||||
#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
|
||||
#: ../../mod/admin.php:698
|
||||
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
|
||||
#: ../../mod/admin.php:737
|
||||
msgid "Unblock"
|
||||
msgstr "Desbloquejar"
|
||||
|
||||
#: ../../mod/contacts.php:315 ../../mod/contacts.php:374
|
||||
#: ../../mod/admin.php:697
|
||||
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
|
||||
#: ../../mod/admin.php:736
|
||||
msgid "Block"
|
||||
msgstr "Bloquejar"
|
||||
|
||||
#: ../../mod/contacts.php:318
|
||||
#: ../../mod/contacts.php:356
|
||||
msgid "Toggle Blocked status"
|
||||
msgstr "Canvi de estatus blocat"
|
||||
|
||||
#: ../../mod/contacts.php:321 ../../mod/contacts.php:375
|
||||
#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
|
||||
msgid "Unignore"
|
||||
msgstr "Treure d'Ignorats"
|
||||
|
||||
#: ../../mod/contacts.php:324
|
||||
#: ../../mod/contacts.php:362
|
||||
msgid "Toggle Ignored status"
|
||||
msgstr "Canvi de estatus ignorat"
|
||||
|
||||
#: ../../mod/contacts.php:328
|
||||
#: ../../mod/contacts.php:366
|
||||
msgid "Unarchive"
|
||||
msgstr "Desarxivat"
|
||||
|
||||
#: ../../mod/contacts.php:328
|
||||
#: ../../mod/contacts.php:366
|
||||
msgid "Archive"
|
||||
msgstr "Arxivat"
|
||||
|
||||
#: ../../mod/contacts.php:331
|
||||
#: ../../mod/contacts.php:369
|
||||
msgid "Toggle Archive status"
|
||||
msgstr "Canvi de estatus del arxiu"
|
||||
|
||||
#: ../../mod/contacts.php:334
|
||||
#: ../../mod/contacts.php:372
|
||||
msgid "Repair"
|
||||
msgstr "Reparar"
|
||||
|
||||
#: ../../mod/contacts.php:337
|
||||
#: ../../mod/contacts.php:375
|
||||
msgid "Advanced Contact Settings"
|
||||
msgstr "Ajustos Avançats per als Contactes"
|
||||
|
||||
#: ../../mod/contacts.php:343
|
||||
#: ../../mod/contacts.php:381
|
||||
msgid "Communications lost with this contact!"
|
||||
msgstr "La comunicació amb aquest contacte s'ha perdut!"
|
||||
|
||||
#: ../../mod/contacts.php:346
|
||||
#: ../../mod/contacts.php:384
|
||||
msgid "Contact Editor"
|
||||
msgstr "Editor de Contactes"
|
||||
|
||||
#: ../../mod/contacts.php:349
|
||||
#: ../../mod/contacts.php:387
|
||||
msgid "Profile Visibility"
|
||||
msgstr "Perfil de Visibilitat"
|
||||
|
||||
#: ../../mod/contacts.php:350
|
||||
#: ../../mod/contacts.php:388
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please choose the profile you would like to display to %s when viewing your "
|
||||
"profile securely."
|
||||
msgstr "Si us plau triï el perfil que voleu mostrar a %s quan estigui veient el teu de forma segura."
|
||||
|
||||
#: ../../mod/contacts.php:351
|
||||
#: ../../mod/contacts.php:389
|
||||
msgid "Contact Information / Notes"
|
||||
msgstr "Informació/Notes del contacte"
|
||||
|
||||
#: ../../mod/contacts.php:352
|
||||
#: ../../mod/contacts.php:390
|
||||
msgid "Edit contact notes"
|
||||
msgstr "Editar notes de contactes"
|
||||
|
||||
#: ../../mod/contacts.php:357 ../../mod/contacts.php:549
|
||||
#: ../../mod/contacts.php:395 ../../mod/contacts.php:585
|
||||
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr "Visitar perfil de %s [%s]"
|
||||
|
||||
#: ../../mod/contacts.php:358
|
||||
#: ../../mod/contacts.php:396
|
||||
msgid "Block/Unblock contact"
|
||||
msgstr "Bloquejar/Alliberar contacte"
|
||||
|
||||
#: ../../mod/contacts.php:359
|
||||
#: ../../mod/contacts.php:397
|
||||
msgid "Ignore contact"
|
||||
msgstr "Ignore contacte"
|
||||
|
||||
#: ../../mod/contacts.php:360
|
||||
#: ../../mod/contacts.php:398
|
||||
msgid "Repair URL settings"
|
||||
msgstr "Restablir configuració de URL"
|
||||
|
||||
#: ../../mod/contacts.php:361
|
||||
#: ../../mod/contacts.php:399
|
||||
msgid "View conversations"
|
||||
msgstr "Veient conversacions"
|
||||
|
||||
#: ../../mod/contacts.php:363
|
||||
#: ../../mod/contacts.php:401
|
||||
msgid "Delete contact"
|
||||
msgstr "Esborrar contacte"
|
||||
|
||||
#: ../../mod/contacts.php:367
|
||||
#: ../../mod/contacts.php:405
|
||||
msgid "Last update:"
|
||||
msgstr "Última actualització:"
|
||||
|
||||
#: ../../mod/contacts.php:369
|
||||
#: ../../mod/contacts.php:407
|
||||
msgid "Update public posts"
|
||||
msgstr "Actualitzar enviament públic"
|
||||
|
||||
#: ../../mod/contacts.php:371 ../../mod/admin.php:1170
|
||||
#: ../../mod/contacts.php:409 ../../mod/admin.php:1213
|
||||
msgid "Update now"
|
||||
msgstr "Actualitza ara"
|
||||
|
||||
#: ../../mod/contacts.php:378
|
||||
#: ../../mod/contacts.php:416
|
||||
msgid "Currently blocked"
|
||||
msgstr "Bloquejat actualment"
|
||||
|
||||
#: ../../mod/contacts.php:379
|
||||
#: ../../mod/contacts.php:417
|
||||
msgid "Currently ignored"
|
||||
msgstr "Ignorat actualment"
|
||||
|
||||
#: ../../mod/contacts.php:380
|
||||
#: ../../mod/contacts.php:418
|
||||
msgid "Currently archived"
|
||||
msgstr "Actualment arxivat"
|
||||
|
||||
#: ../../mod/contacts.php:381
|
||||
#: ../../mod/contacts.php:419
|
||||
msgid ""
|
||||
"Replies/likes to your public posts <strong>may</strong> still be visible"
|
||||
msgstr "Répliques/agraiments per als teus missatges públics <strong>poden</strong> romandre visibles"
|
||||
|
||||
#: ../../mod/contacts.php:434
|
||||
#: ../../mod/contacts.php:470
|
||||
msgid "Suggestions"
|
||||
msgstr "Suggeriments"
|
||||
|
||||
#: ../../mod/contacts.php:437
|
||||
#: ../../mod/contacts.php:473
|
||||
msgid "Suggest potential friends"
|
||||
msgstr "Suggerir amics potencials"
|
||||
|
||||
#: ../../mod/contacts.php:440 ../../mod/group.php:191
|
||||
#: ../../mod/contacts.php:476 ../../mod/group.php:194
|
||||
msgid "All Contacts"
|
||||
msgstr "Tots els Contactes"
|
||||
|
||||
#: ../../mod/contacts.php:443
|
||||
#: ../../mod/contacts.php:479
|
||||
msgid "Show all contacts"
|
||||
msgstr "Mostrar tots els contactes"
|
||||
|
||||
#: ../../mod/contacts.php:446
|
||||
#: ../../mod/contacts.php:482
|
||||
msgid "Unblocked"
|
||||
msgstr "Desblocat"
|
||||
|
||||
#: ../../mod/contacts.php:449
|
||||
#: ../../mod/contacts.php:485
|
||||
msgid "Only show unblocked contacts"
|
||||
msgstr "Mostrar únicament els contactes no blocats"
|
||||
|
||||
#: ../../mod/contacts.php:453
|
||||
#: ../../mod/contacts.php:489
|
||||
msgid "Blocked"
|
||||
msgstr "Blocat"
|
||||
|
||||
#: ../../mod/contacts.php:456
|
||||
#: ../../mod/contacts.php:492
|
||||
msgid "Only show blocked contacts"
|
||||
msgstr "Mostrar únicament els contactes blocats"
|
||||
|
||||
#: ../../mod/contacts.php:460
|
||||
#: ../../mod/contacts.php:496
|
||||
msgid "Ignored"
|
||||
msgstr "Ignorat"
|
||||
|
||||
#: ../../mod/contacts.php:463
|
||||
#: ../../mod/contacts.php:499
|
||||
msgid "Only show ignored contacts"
|
||||
msgstr "Mostrar únicament els contactes ignorats"
|
||||
|
||||
#: ../../mod/contacts.php:467
|
||||
#: ../../mod/contacts.php:503
|
||||
msgid "Archived"
|
||||
msgstr "Arxivat"
|
||||
|
||||
#: ../../mod/contacts.php:470
|
||||
#: ../../mod/contacts.php:506
|
||||
msgid "Only show archived contacts"
|
||||
msgstr "Mostrar únicament els contactes arxivats"
|
||||
|
||||
#: ../../mod/contacts.php:474
|
||||
#: ../../mod/contacts.php:510
|
||||
msgid "Hidden"
|
||||
msgstr "Amagat"
|
||||
|
||||
#: ../../mod/contacts.php:477
|
||||
#: ../../mod/contacts.php:513
|
||||
msgid "Only show hidden contacts"
|
||||
msgstr "Mostrar únicament els contactes amagats"
|
||||
|
||||
#: ../../mod/contacts.php:525
|
||||
#: ../../mod/contacts.php:561
|
||||
msgid "Mutual Friendship"
|
||||
msgstr "Amistat Mutua"
|
||||
|
||||
#: ../../mod/contacts.php:529
|
||||
#: ../../mod/contacts.php:565
|
||||
msgid "is a fan of yours"
|
||||
msgstr "Es un fan teu"
|
||||
|
||||
#: ../../mod/contacts.php:533
|
||||
#: ../../mod/contacts.php:569
|
||||
msgid "you are a fan of"
|
||||
msgstr "ets fan de"
|
||||
|
||||
#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41
|
||||
#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41
|
||||
msgid "Edit contact"
|
||||
msgstr "Editar contacte"
|
||||
|
||||
#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129
|
||||
#: ../../include/nav.php:139
|
||||
#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89
|
||||
#: ../../include/nav.php:171
|
||||
msgid "Contacts"
|
||||
msgstr "Contactes"
|
||||
|
||||
#: ../../mod/contacts.php:575
|
||||
#: ../../mod/contacts.php:611
|
||||
msgid "Search your contacts"
|
||||
msgstr "Cercant el seus contactes"
|
||||
|
||||
#: ../../mod/contacts.php:576 ../../mod/directory.php:59
|
||||
#: ../../mod/contacts.php:612 ../../mod/directory.php:59
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:81
|
||||
msgid "Finding: "
|
||||
msgstr "Cercant:"
|
||||
|
||||
#: ../../mod/contacts.php:577 ../../mod/directory.php:61
|
||||
#: ../../mod/contacts.php:613 ../../mod/directory.php:61
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:83
|
||||
#: ../../include/contact_widgets.php:33
|
||||
msgid "Find"
|
||||
msgstr "Cercar"
|
||||
|
||||
#: ../../mod/lostpass.php:16
|
||||
#: ../../mod/lostpass.php:17
|
||||
msgid "No valid account found."
|
||||
msgstr "compte no vàlid trobat."
|
||||
|
||||
#: ../../mod/lostpass.php:32
|
||||
#: ../../mod/lostpass.php:33
|
||||
msgid "Password reset request issued. Check your email."
|
||||
msgstr "Sol·licitut de restabliment de contrasenya enviat. Comprovi el seu correu."
|
||||
|
||||
#: ../../mod/lostpass.php:43
|
||||
#: ../../mod/lostpass.php:44
|
||||
#, php-format
|
||||
msgid "Password reset requested at %s"
|
||||
msgstr "Contrasenya restablerta enviada a %s"
|
||||
|
||||
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
|
||||
#: ../../mod/register.php:90 ../../mod/register.php:144
|
||||
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
|
||||
#: ../../addon/facebook/facebook.php:702
|
||||
#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
|
||||
#: ../../addon/public_server/public_server.php:62
|
||||
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3296
|
||||
#: ../../boot.php:788
|
||||
msgid "Administrator"
|
||||
msgstr "Administrador"
|
||||
|
||||
#: ../../mod/lostpass.php:65
|
||||
#: ../../mod/lostpass.php:66
|
||||
msgid ""
|
||||
"Request could not be verified. (You may have previously submitted it.) "
|
||||
"Password reset failed."
|
||||
msgstr "La sol·licitut no pot ser verificada. (Hauries de presentar-la abans). Restabliment de contrasenya fracassat."
|
||||
|
||||
#: ../../mod/lostpass.php:83 ../../boot.php:925
|
||||
#: ../../mod/lostpass.php:84 ../../boot.php:1051
|
||||
msgid "Password Reset"
|
||||
msgstr "Restabliment de Contrasenya"
|
||||
|
||||
#: ../../mod/lostpass.php:84
|
||||
#: ../../mod/lostpass.php:85
|
||||
msgid "Your password has been reset as requested."
|
||||
msgstr "La teva contrasenya fou restablerta com vas demanar."
|
||||
|
||||
#: ../../mod/lostpass.php:85
|
||||
#: ../../mod/lostpass.php:86
|
||||
msgid "Your new password is"
|
||||
msgstr "La teva nova contrasenya es"
|
||||
|
||||
#: ../../mod/lostpass.php:86
|
||||
#: ../../mod/lostpass.php:87
|
||||
msgid "Save or copy your new password - and then"
|
||||
msgstr "Guarda o copia la nova contrasenya - i llavors"
|
||||
|
||||
#: ../../mod/lostpass.php:87
|
||||
#: ../../mod/lostpass.php:88
|
||||
msgid "click here to login"
|
||||
msgstr "clica aquí per identificarte"
|
||||
|
||||
#: ../../mod/lostpass.php:88
|
||||
#: ../../mod/lostpass.php:89
|
||||
msgid ""
|
||||
"Your password may be changed from the <em>Settings</em> page after "
|
||||
"successful login."
|
||||
msgstr "Pots camviar la contrasenya des de la pàgina de <em>Configuración</em> desprès d'accedir amb èxit."
|
||||
|
||||
#: ../../mod/lostpass.php:119
|
||||
#: ../../mod/lostpass.php:107
|
||||
#, php-format
|
||||
msgid "Your password has been changed at %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:122
|
||||
msgid "Forgot your Password?"
|
||||
msgstr "Has Oblidat la Contrasenya?"
|
||||
|
||||
#: ../../mod/lostpass.php:120
|
||||
#: ../../mod/lostpass.php:123
|
||||
msgid ""
|
||||
"Enter your email address and submit to have your password reset. Then check "
|
||||
"your email for further instructions."
|
||||
msgstr "Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. "
|
||||
|
||||
#: ../../mod/lostpass.php:121
|
||||
#: ../../mod/lostpass.php:124
|
||||
msgid "Nickname or Email: "
|
||||
msgstr "Àlies o Correu:"
|
||||
|
||||
#: ../../mod/lostpass.php:122
|
||||
#: ../../mod/lostpass.php:125
|
||||
msgid "Reset"
|
||||
msgstr "Restablir"
|
||||
|
||||
#: ../../mod/settings.php:30 ../../include/nav.php:137
|
||||
msgid "Account settings"
|
||||
msgstr "Configuració del compte"
|
||||
|
||||
#: ../../mod/settings.php:35
|
||||
msgid "Display settings"
|
||||
msgstr "Ajustos de pantalla"
|
||||
msgid "Additional features"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:41
|
||||
msgid "Connector settings"
|
||||
msgstr "Configuració dels connectors"
|
||||
|
||||
#: ../../mod/settings.php:46
|
||||
msgid "Plugin settings"
|
||||
msgstr "Configuració del plugin"
|
||||
|
||||
#: ../../mod/settings.php:51
|
||||
msgid "Connected apps"
|
||||
msgstr "App connectada"
|
||||
|
||||
#: ../../mod/settings.php:56
|
||||
msgid "Export personal data"
|
||||
msgstr "Exportar dades personals"
|
||||
|
||||
#: ../../mod/settings.php:61
|
||||
msgid "Remove account"
|
||||
msgstr "Esborrar compte"
|
||||
|
||||
#: ../../mod/settings.php:69 ../../mod/newmember.php:22
|
||||
#: ../../mod/admin.php:785 ../../mod/admin.php:990
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:225
|
||||
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643
|
||||
#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137
|
||||
msgid "Settings"
|
||||
msgstr "Ajustos"
|
||||
|
||||
#: ../../mod/settings.php:113
|
||||
#: ../../mod/settings.php:118
|
||||
msgid "Missing some important data!"
|
||||
msgstr "Perdudes algunes dades importants!"
|
||||
|
||||
#: ../../mod/settings.php:116 ../../mod/settings.php:569
|
||||
#: ../../mod/settings.php:121 ../../mod/settings.php:586
|
||||
msgid "Update"
|
||||
msgstr "Actualitzar"
|
||||
|
||||
#: ../../mod/settings.php:221
|
||||
#: ../../mod/settings.php:227
|
||||
msgid "Failed to connect with email account using the settings provided."
|
||||
msgstr "Connexió fracassada amb el compte de correu emprant la configuració proveïda."
|
||||
|
||||
#: ../../mod/settings.php:226
|
||||
#: ../../mod/settings.php:232
|
||||
msgid "Email settings updated."
|
||||
msgstr "Configuració del correu electrònic actualitzada."
|
||||
|
||||
#: ../../mod/settings.php:290
|
||||
#: ../../mod/settings.php:247
|
||||
msgid "Features updated"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:307
|
||||
msgid "Passwords do not match. Password unchanged."
|
||||
msgstr "Les contrasenyes no coincideixen. Contrasenya no canviada."
|
||||
|
||||
#: ../../mod/settings.php:295
|
||||
#: ../../mod/settings.php:312
|
||||
msgid "Empty passwords are not allowed. Password unchanged."
|
||||
msgstr "No es permeten contasenyes buides. Contrasenya no canviada"
|
||||
|
||||
#: ../../mod/settings.php:306
|
||||
#: ../../mod/settings.php:323
|
||||
msgid "Password changed."
|
||||
msgstr "Contrasenya canviada."
|
||||
|
||||
#: ../../mod/settings.php:308
|
||||
#: ../../mod/settings.php:325
|
||||
msgid "Password update failed. Please try again."
|
||||
msgstr "Ha fallat l'actualització de la Contrasenya. Per favor, intenti-ho de nou."
|
||||
|
||||
#: ../../mod/settings.php:373
|
||||
#: ../../mod/settings.php:390
|
||||
msgid " Please use a shorter name."
|
||||
msgstr "Si us plau, faci servir un nom més curt."
|
||||
|
||||
#: ../../mod/settings.php:375
|
||||
#: ../../mod/settings.php:392
|
||||
msgid " Name too short."
|
||||
msgstr "Nom massa curt."
|
||||
|
||||
#: ../../mod/settings.php:381
|
||||
#: ../../mod/settings.php:398
|
||||
msgid " Not valid email."
|
||||
msgstr "Correu no vàlid."
|
||||
|
||||
#: ../../mod/settings.php:383
|
||||
#: ../../mod/settings.php:400
|
||||
msgid " Cannot change to that email."
|
||||
msgstr "No puc canviar a aquest correu."
|
||||
|
||||
#: ../../mod/settings.php:437
|
||||
#: ../../mod/settings.php:454
|
||||
msgid "Private forum has no privacy permissions. Using default privacy group."
|
||||
msgstr "Els Fòrums privats no tenen permisos de privacitat. Empra la privacitat de grup per defecte."
|
||||
|
||||
#: ../../mod/settings.php:441
|
||||
#: ../../mod/settings.php:458
|
||||
msgid "Private forum has no privacy permissions and no default privacy group."
|
||||
msgstr "Els Fòrums privats no tenen permisos de privacitat i tampoc privacitat per defecte de grup."
|
||||
|
||||
#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495
|
||||
#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:80
|
||||
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
|
||||
#: ../../addon/twitter/twitter.php:389
|
||||
#: ../../mod/settings.php:488 ../../addon/facebook/facebook.php:497
|
||||
#: ../../addon/fbpost/fbpost.php:155
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:205
|
||||
#: ../../addon/impressum/impressum.php:78
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:104
|
||||
#: ../../addon/altpager/altpager.php:107 ../../addon/mathjax/mathjax.php:66
|
||||
#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:550
|
||||
#: ../../addon.old/facebook/facebook.php:495
|
||||
#: ../../addon.old/fbpost/fbpost.php:144
|
||||
#: ../../addon.old/impressum/impressum.php:78
|
||||
#: ../../addon.old/openstreetmap/openstreetmap.php:80
|
||||
#: ../../addon.old/mathjax/mathjax.php:66 ../../addon.old/piwik/piwik.php:105
|
||||
#: ../../addon.old/twitter/twitter.php:389
|
||||
msgid "Settings updated."
|
||||
msgstr "Ajustos actualitzats."
|
||||
|
||||
#: ../../mod/settings.php:542 ../../mod/settings.php:568
|
||||
#: ../../mod/settings.php:604
|
||||
#: ../../mod/settings.php:559 ../../mod/settings.php:585
|
||||
#: ../../mod/settings.php:621
|
||||
msgid "Add application"
|
||||
msgstr "Afegir aplicació"
|
||||
|
||||
#: ../../mod/settings.php:546 ../../mod/settings.php:572
|
||||
#: ../../addon/statusnet/statusnet.php:570
|
||||
#: ../../mod/settings.php:563 ../../mod/settings.php:589
|
||||
#: ../../addon/statusnet/statusnet.php:747
|
||||
#: ../../addon.old/statusnet/statusnet.php:570
|
||||
msgid "Consumer Key"
|
||||
msgstr "Consumer Key"
|
||||
|
||||
#: ../../mod/settings.php:547 ../../mod/settings.php:573
|
||||
#: ../../addon/statusnet/statusnet.php:569
|
||||
#: ../../mod/settings.php:564 ../../mod/settings.php:590
|
||||
#: ../../addon/statusnet/statusnet.php:746
|
||||
#: ../../addon.old/statusnet/statusnet.php:569
|
||||
msgid "Consumer Secret"
|
||||
msgstr "Consumer Secret"
|
||||
|
||||
#: ../../mod/settings.php:548 ../../mod/settings.php:574
|
||||
#: ../../mod/settings.php:565 ../../mod/settings.php:591
|
||||
msgid "Redirect"
|
||||
msgstr "Redirigir"
|
||||
|
||||
#: ../../mod/settings.php:549 ../../mod/settings.php:575
|
||||
#: ../../mod/settings.php:566 ../../mod/settings.php:592
|
||||
msgid "Icon url"
|
||||
msgstr "icona de url"
|
||||
|
||||
#: ../../mod/settings.php:560
|
||||
#: ../../mod/settings.php:577
|
||||
msgid "You can't edit this application."
|
||||
msgstr "No pots editar aquesta aplicació."
|
||||
|
||||
#: ../../mod/settings.php:603
|
||||
#: ../../mod/settings.php:620
|
||||
msgid "Connected Apps"
|
||||
msgstr "Aplicacions conectades"
|
||||
|
||||
#: ../../mod/settings.php:607
|
||||
#: ../../mod/settings.php:624
|
||||
msgid "Client key starts with"
|
||||
msgstr "Les claus de client comançen amb"
|
||||
|
||||
#: ../../mod/settings.php:608
|
||||
#: ../../mod/settings.php:625
|
||||
msgid "No name"
|
||||
msgstr "Sense nom"
|
||||
|
||||
#: ../../mod/settings.php:609
|
||||
#: ../../mod/settings.php:626
|
||||
msgid "Remove authorization"
|
||||
msgstr "retirar l'autorització"
|
||||
|
||||
#: ../../mod/settings.php:620
|
||||
#: ../../mod/settings.php:638
|
||||
msgid "No Plugin settings configured"
|
||||
msgstr "No s'han configurat ajustos de Plugin"
|
||||
|
||||
#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123
|
||||
#: ../../mod/settings.php:646 ../../addon/widgets/widgets.php:124
|
||||
#: ../../addon.old/widgets/widgets.php:123
|
||||
msgid "Plugin Settings"
|
||||
msgstr "Ajustos de Plugin"
|
||||
|
||||
#: ../../mod/settings.php:640 ../../mod/settings.php:641
|
||||
#: ../../mod/settings.php:660
|
||||
msgid "Off"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:660
|
||||
msgid "On"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:668
|
||||
msgid "Additional Features"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:681 ../../mod/settings.php:682
|
||||
#, php-format
|
||||
msgid "Built-in support for %s connectivity is %s"
|
||||
msgstr "El suport integrat per a la connectivitat de %s és %s"
|
||||
|
||||
#: ../../mod/settings.php:640 ../../mod/settings.php:641
|
||||
#: ../../mod/settings.php:681 ../../mod/settings.php:682
|
||||
msgid "enabled"
|
||||
msgstr "habilitat"
|
||||
|
||||
#: ../../mod/settings.php:640 ../../mod/settings.php:641
|
||||
#: ../../mod/settings.php:681 ../../mod/settings.php:682
|
||||
msgid "disabled"
|
||||
msgstr "deshabilitat"
|
||||
|
||||
#: ../../mod/settings.php:641
|
||||
#: ../../mod/settings.php:682
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: ../../mod/settings.php:673
|
||||
#: ../../mod/settings.php:714
|
||||
msgid "Email access is disabled on this site."
|
||||
msgstr "L'accés al correu està deshabilitat en aquest lloc."
|
||||
|
||||
#: ../../mod/settings.php:679
|
||||
#: ../../mod/settings.php:721
|
||||
msgid "Connector Settings"
|
||||
msgstr "Configuració de connectors"
|
||||
|
||||
#: ../../mod/settings.php:684
|
||||
#: ../../mod/settings.php:726
|
||||
msgid "Email/Mailbox Setup"
|
||||
msgstr "Preparació de Correu/Bústia"
|
||||
|
||||
#: ../../mod/settings.php:685
|
||||
#: ../../mod/settings.php:727
|
||||
msgid ""
|
||||
"If you wish to communicate with email contacts using this service "
|
||||
"(optional), please specify how to connect to your mailbox."
|
||||
msgstr "Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia."
|
||||
|
||||
#: ../../mod/settings.php:686
|
||||
#: ../../mod/settings.php:728
|
||||
msgid "Last successful email check:"
|
||||
msgstr "Última comprovació de correu amb èxit:"
|
||||
|
||||
#: ../../mod/settings.php:688
|
||||
#: ../../mod/settings.php:730
|
||||
msgid "IMAP server name:"
|
||||
msgstr "Nom del servidor IMAP:"
|
||||
|
||||
#: ../../mod/settings.php:689
|
||||
#: ../../mod/settings.php:731
|
||||
msgid "IMAP port:"
|
||||
msgstr "Port IMAP:"
|
||||
|
||||
#: ../../mod/settings.php:690
|
||||
#: ../../mod/settings.php:732
|
||||
msgid "Security:"
|
||||
msgstr "Seguretat:"
|
||||
|
||||
#: ../../mod/settings.php:690 ../../mod/settings.php:695
|
||||
#: ../../mod/settings.php:732 ../../mod/settings.php:737
|
||||
#: ../../addon/fbpost/fbpost.php:255 ../../addon/fbpost/fbpost.php:257
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:191
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
|
||||
msgid "None"
|
||||
msgstr "Cap"
|
||||
|
||||
#: ../../mod/settings.php:691
|
||||
#: ../../mod/settings.php:733
|
||||
msgid "Email login name:"
|
||||
msgstr "Nom d'usuari del correu"
|
||||
|
||||
#: ../../mod/settings.php:692
|
||||
#: ../../mod/settings.php:734
|
||||
msgid "Email password:"
|
||||
msgstr "Contrasenya del correu:"
|
||||
|
||||
#: ../../mod/settings.php:693
|
||||
#: ../../mod/settings.php:735
|
||||
msgid "Reply-to address:"
|
||||
msgstr "Adreça de resposta:"
|
||||
|
||||
#: ../../mod/settings.php:694
|
||||
#: ../../mod/settings.php:736
|
||||
msgid "Send public posts to all email contacts:"
|
||||
msgstr "Enviar correu públic a tots els contactes del correu:"
|
||||
|
||||
#: ../../mod/settings.php:695
|
||||
#: ../../mod/settings.php:737
|
||||
msgid "Action after import:"
|
||||
msgstr "Acció després d'importar:"
|
||||
|
||||
#: ../../mod/settings.php:695
|
||||
#: ../../mod/settings.php:737
|
||||
msgid "Mark as seen"
|
||||
msgstr "Marcar com a vist"
|
||||
|
||||
#: ../../mod/settings.php:695
|
||||
#: ../../mod/settings.php:737
|
||||
msgid "Move to folder"
|
||||
msgstr "Moure a la carpeta"
|
||||
|
||||
#: ../../mod/settings.php:696
|
||||
#: ../../mod/settings.php:738
|
||||
msgid "Move to folder:"
|
||||
msgstr "Moure a la carpeta:"
|
||||
|
||||
#: ../../mod/settings.php:727 ../../mod/admin.php:402
|
||||
#: ../../mod/settings.php:769 ../../mod/admin.php:420
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:767
|
||||
#: ../../mod/settings.php:809
|
||||
msgid "Display Settings"
|
||||
msgstr "Ajustos de Pantalla"
|
||||
|
||||
#: ../../mod/settings.php:773 ../../mod/settings.php:784
|
||||
#: ../../mod/settings.php:815 ../../mod/settings.php:826
|
||||
msgid "Display Theme:"
|
||||
msgstr "Visualitzar el Tema:"
|
||||
|
||||
#: ../../mod/settings.php:774
|
||||
#: ../../mod/settings.php:816
|
||||
msgid "Mobile Theme:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:775
|
||||
#: ../../mod/settings.php:817
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Actualitzar navegador cada xx segons"
|
||||
|
||||
#: ../../mod/settings.php:775
|
||||
#: ../../mod/settings.php:817
|
||||
msgid "Minimum of 10 seconds, no maximum"
|
||||
msgstr "Mínim cada 10 segons, no hi ha màxim"
|
||||
|
||||
#: ../../mod/settings.php:776
|
||||
#: ../../mod/settings.php:818
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr ""
|
||||
msgstr "Número d'elements a mostrar per pàgina"
|
||||
|
||||
#: ../../mod/settings.php:776
|
||||
#: ../../mod/settings.php:818
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Màxim de 100 elements"
|
||||
|
||||
#: ../../mod/settings.php:777
|
||||
#: ../../mod/settings.php:819
|
||||
msgid "Don't show emoticons"
|
||||
msgstr "No mostrar emoticons"
|
||||
|
||||
#: ../../mod/settings.php:853
|
||||
#: ../../mod/settings.php:895
|
||||
msgid "Normal Account Page"
|
||||
msgstr "Pàgina Normal del Compte "
|
||||
|
||||
#: ../../mod/settings.php:854
|
||||
#: ../../mod/settings.php:896
|
||||
msgid "This account is a normal personal profile"
|
||||
msgstr "Aques compte es un compte personal normal"
|
||||
|
||||
#: ../../mod/settings.php:857
|
||||
#: ../../mod/settings.php:899
|
||||
msgid "Soapbox Page"
|
||||
msgstr "Pàgina de Soapbox"
|
||||
|
||||
#: ../../mod/settings.php:858
|
||||
#: ../../mod/settings.php:900
|
||||
msgid "Automatically approve all connection/friend requests as read-only fans"
|
||||
msgstr "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de només lectura."
|
||||
|
||||
#: ../../mod/settings.php:861
|
||||
#: ../../mod/settings.php:903
|
||||
msgid "Community Forum/Celebrity Account"
|
||||
msgstr "Compte de Comunitat/Celebritat"
|
||||
|
||||
#: ../../mod/settings.php:862
|
||||
#: ../../mod/settings.php:904
|
||||
msgid ""
|
||||
"Automatically approve all connection/friend requests as read-write fans"
|
||||
msgstr "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de lectura-escriptura"
|
||||
|
||||
#: ../../mod/settings.php:865
|
||||
#: ../../mod/settings.php:907
|
||||
msgid "Automatic Friend Page"
|
||||
msgstr "Compte d'Amistat Automàtica"
|
||||
|
||||
#: ../../mod/settings.php:866
|
||||
#: ../../mod/settings.php:908
|
||||
msgid "Automatically approve all connection/friend requests as friends"
|
||||
msgstr "Aprova totes les sol·licituds de amistat/connexió com a amic automàticament"
|
||||
|
||||
#: ../../mod/settings.php:869
|
||||
#: ../../mod/settings.php:911
|
||||
msgid "Private Forum [Experimental]"
|
||||
msgstr "Fòrum Privat [Experimental]"
|
||||
|
||||
#: ../../mod/settings.php:870
|
||||
#: ../../mod/settings.php:912
|
||||
msgid "Private forum - approved members only"
|
||||
msgstr "Fòrum privat - Només membres aprovats"
|
||||
|
||||
#: ../../mod/settings.php:882
|
||||
#: ../../mod/settings.php:924
|
||||
msgid "OpenID:"
|
||||
msgstr "OpenID:"
|
||||
|
||||
#: ../../mod/settings.php:882
|
||||
#: ../../mod/settings.php:924
|
||||
msgid "(Optional) Allow this OpenID to login to this account."
|
||||
msgstr "(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte."
|
||||
|
||||
#: ../../mod/settings.php:892
|
||||
#: ../../mod/settings.php:934
|
||||
msgid "Publish your default profile in your local site directory?"
|
||||
msgstr "Publicar el teu perfil predeterminat en el directori del lloc local?"
|
||||
|
||||
#: ../../mod/settings.php:898
|
||||
#: ../../mod/settings.php:940
|
||||
msgid "Publish your default profile in the global social directory?"
|
||||
msgstr "Publicar el teu perfil predeterminat al directori social global?"
|
||||
|
||||
#: ../../mod/settings.php:906
|
||||
#: ../../mod/settings.php:948
|
||||
msgid "Hide your contact/friend list from viewers of your default profile?"
|
||||
msgstr "Amaga la teva llista de contactes/amics dels espectadors del seu perfil per defecte?"
|
||||
|
||||
#: ../../mod/settings.php:910
|
||||
#: ../../mod/settings.php:952
|
||||
msgid "Hide your profile details from unknown viewers?"
|
||||
msgstr "Amagar els detalls del seu perfil a espectadors desconeguts?"
|
||||
|
||||
#: ../../mod/settings.php:915
|
||||
#: ../../mod/settings.php:957
|
||||
msgid "Allow friends to post to your profile page?"
|
||||
msgstr "Permet als amics publicar en la seva pàgina de perfil?"
|
||||
|
||||
#: ../../mod/settings.php:921
|
||||
#: ../../mod/settings.php:963
|
||||
msgid "Allow friends to tag your posts?"
|
||||
msgstr "Permet als amics d'etiquetar els teus missatges?"
|
||||
|
||||
#: ../../mod/settings.php:927
|
||||
#: ../../mod/settings.php:969
|
||||
msgid "Allow us to suggest you as a potential friend to new members?"
|
||||
msgstr "Permeteu-nos suggerir-li com un amic potencial dels nous membres?"
|
||||
|
||||
#: ../../mod/settings.php:933
|
||||
#: ../../mod/settings.php:975
|
||||
msgid "Permit unknown people to send you private mail?"
|
||||
msgstr "Permetre a desconeguts enviar missatges al teu correu privat?"
|
||||
|
||||
#: ../../mod/settings.php:941
|
||||
#: ../../mod/settings.php:983
|
||||
msgid "Profile is <strong>not published</strong>."
|
||||
msgstr "El Perfil <strong>no està publicat</strong>."
|
||||
|
||||
#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248
|
||||
#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
|
||||
msgid "or"
|
||||
msgstr "o"
|
||||
|
||||
#: ../../mod/settings.php:949
|
||||
#: ../../mod/settings.php:991
|
||||
msgid "Your Identity Address is"
|
||||
msgstr "La seva Adreça d'Identitat és"
|
||||
|
||||
#: ../../mod/settings.php:960
|
||||
#: ../../mod/settings.php:1002
|
||||
msgid "Automatically expire posts after this many days:"
|
||||
msgstr "Després de aquests nombre de dies, els missatges caduquen automàticament:"
|
||||
|
||||
#: ../../mod/settings.php:960
|
||||
#: ../../mod/settings.php:1002
|
||||
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
||||
msgstr "Si està buit, els missatges no caducarà. Missatges caducats s'eliminaran"
|
||||
|
||||
#: ../../mod/settings.php:961
|
||||
#: ../../mod/settings.php:1003
|
||||
msgid "Advanced expiration settings"
|
||||
msgstr "Configuració avançada d'expiració"
|
||||
|
||||
#: ../../mod/settings.php:962
|
||||
#: ../../mod/settings.php:1004
|
||||
msgid "Advanced Expiration"
|
||||
msgstr "Expiració Avançada"
|
||||
|
||||
#: ../../mod/settings.php:963
|
||||
#: ../../mod/settings.php:1005
|
||||
msgid "Expire posts:"
|
||||
msgstr "Expiració d'enviaments"
|
||||
|
||||
#: ../../mod/settings.php:964
|
||||
#: ../../mod/settings.php:1006
|
||||
msgid "Expire personal notes:"
|
||||
msgstr "Expiració de notes personals"
|
||||
|
||||
#: ../../mod/settings.php:965
|
||||
#: ../../mod/settings.php:1007
|
||||
msgid "Expire starred posts:"
|
||||
msgstr "Expiració de enviaments de favorits"
|
||||
|
||||
#: ../../mod/settings.php:966
|
||||
#: ../../mod/settings.php:1008
|
||||
msgid "Expire photos:"
|
||||
msgstr "Expiració de fotos"
|
||||
|
||||
#: ../../mod/settings.php:967
|
||||
#: ../../mod/settings.php:1009
|
||||
msgid "Only expire posts by others:"
|
||||
msgstr "Només expiren els enviaments dels altres:"
|
||||
|
||||
#: ../../mod/settings.php:974
|
||||
#: ../../mod/settings.php:1035
|
||||
msgid "Account Settings"
|
||||
msgstr "Ajustos de Compte"
|
||||
|
||||
#: ../../mod/settings.php:982
|
||||
#: ../../mod/settings.php:1043
|
||||
msgid "Password Settings"
|
||||
msgstr "Ajustos de Contrasenya"
|
||||
|
||||
#: ../../mod/settings.php:983
|
||||
#: ../../mod/settings.php:1044
|
||||
msgid "New Password:"
|
||||
msgstr "Nova Contrasenya:"
|
||||
|
||||
#: ../../mod/settings.php:984
|
||||
#: ../../mod/settings.php:1045
|
||||
msgid "Confirm:"
|
||||
msgstr "Confirmar:"
|
||||
|
||||
#: ../../mod/settings.php:984
|
||||
#: ../../mod/settings.php:1045
|
||||
msgid "Leave password fields blank unless changing"
|
||||
msgstr "Deixi els camps de contrasenya buits per a no fer canvis"
|
||||
|
||||
#: ../../mod/settings.php:988
|
||||
#: ../../mod/settings.php:1049
|
||||
msgid "Basic Settings"
|
||||
msgstr "Ajustos Basics"
|
||||
|
||||
#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15
|
||||
#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15
|
||||
msgid "Full Name:"
|
||||
msgstr "Nom Complet:"
|
||||
|
||||
#: ../../mod/settings.php:990
|
||||
#: ../../mod/settings.php:1051
|
||||
msgid "Email Address:"
|
||||
msgstr "Adreça de Correu:"
|
||||
|
||||
#: ../../mod/settings.php:991
|
||||
#: ../../mod/settings.php:1052
|
||||
msgid "Your Timezone:"
|
||||
msgstr "La teva zona Horària:"
|
||||
|
||||
#: ../../mod/settings.php:992
|
||||
#: ../../mod/settings.php:1053
|
||||
msgid "Default Post Location:"
|
||||
msgstr "Localització per Defecte del Missatge:"
|
||||
|
||||
#: ../../mod/settings.php:993
|
||||
#: ../../mod/settings.php:1054
|
||||
msgid "Use Browser Location:"
|
||||
msgstr "Ubicar-se amb el Navegador:"
|
||||
|
||||
#: ../../mod/settings.php:996
|
||||
#: ../../mod/settings.php:1057
|
||||
msgid "Security and Privacy Settings"
|
||||
msgstr "Ajustos de Seguretat i Privacitat"
|
||||
|
||||
#: ../../mod/settings.php:998
|
||||
#: ../../mod/settings.php:1059
|
||||
msgid "Maximum Friend Requests/Day:"
|
||||
msgstr "Nombre Màxim de Sol·licituds per Dia"
|
||||
|
||||
#: ../../mod/settings.php:998 ../../mod/settings.php:1017
|
||||
#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
|
||||
msgid "(to prevent spam abuse)"
|
||||
msgstr "(per a prevenir abusos de spam)"
|
||||
|
||||
#: ../../mod/settings.php:999
|
||||
#: ../../mod/settings.php:1060
|
||||
msgid "Default Post Permissions"
|
||||
msgstr "Permisos de Correu per Defecte"
|
||||
|
||||
#: ../../mod/settings.php:1000
|
||||
#: ../../mod/settings.php:1061
|
||||
msgid "(click to open/close)"
|
||||
msgstr "(clicar per a obrir/tancar)"
|
||||
|
||||
#: ../../mod/settings.php:1017
|
||||
#: ../../mod/settings.php:1072
|
||||
msgid "Default Private Post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1073
|
||||
msgid "Default Public Post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1077
|
||||
msgid "Default Permissions for New Posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:1089
|
||||
msgid "Maximum private messages per day from unknown people:"
|
||||
msgstr "Màxim nombre de missatges, per dia, de desconeguts:"
|
||||
|
||||
#: ../../mod/settings.php:1020
|
||||
#: ../../mod/settings.php:1092
|
||||
msgid "Notification Settings"
|
||||
msgstr "Ajustos de Notificació"
|
||||
|
||||
#: ../../mod/settings.php:1021
|
||||
#: ../../mod/settings.php:1093
|
||||
msgid "By default post a status message when:"
|
||||
msgstr "Enviar per defecte un missatge de estatus quan:"
|
||||
|
||||
#: ../../mod/settings.php:1022
|
||||
#: ../../mod/settings.php:1094
|
||||
msgid "accepting a friend request"
|
||||
msgstr "Acceptar una sol·licitud d'amistat"
|
||||
|
||||
#: ../../mod/settings.php:1023
|
||||
#: ../../mod/settings.php:1095
|
||||
msgid "joining a forum/community"
|
||||
msgstr "Unint-se a un fòrum/comunitat"
|
||||
|
||||
#: ../../mod/settings.php:1024
|
||||
#: ../../mod/settings.php:1096
|
||||
msgid "making an <em>interesting</em> profile change"
|
||||
msgstr "fent un <em interesant</em> canvi al perfil"
|
||||
|
||||
#: ../../mod/settings.php:1025
|
||||
#: ../../mod/settings.php:1097
|
||||
msgid "Send a notification email when:"
|
||||
msgstr "Envia un correu notificant quan:"
|
||||
|
||||
#: ../../mod/settings.php:1026
|
||||
#: ../../mod/settings.php:1098
|
||||
msgid "You receive an introduction"
|
||||
msgstr "Has rebut una presentació"
|
||||
|
||||
#: ../../mod/settings.php:1027
|
||||
#: ../../mod/settings.php:1099
|
||||
msgid "Your introductions are confirmed"
|
||||
msgstr "La teva presentació està confirmada"
|
||||
|
||||
#: ../../mod/settings.php:1028
|
||||
#: ../../mod/settings.php:1100
|
||||
msgid "Someone writes on your profile wall"
|
||||
msgstr "Algú ha escrit en el teu mur de perfil"
|
||||
|
||||
#: ../../mod/settings.php:1029
|
||||
#: ../../mod/settings.php:1101
|
||||
msgid "Someone writes a followup comment"
|
||||
msgstr "Algú ha escrit un comentari de seguiment"
|
||||
|
||||
#: ../../mod/settings.php:1030
|
||||
#: ../../mod/settings.php:1102
|
||||
msgid "You receive a private message"
|
||||
msgstr "Has rebut un missatge privat"
|
||||
|
||||
#: ../../mod/settings.php:1031
|
||||
#: ../../mod/settings.php:1103
|
||||
msgid "You receive a friend suggestion"
|
||||
msgstr "Has rebut una suggerencia d'un amic"
|
||||
|
||||
#: ../../mod/settings.php:1032
|
||||
#: ../../mod/settings.php:1104
|
||||
msgid "You are tagged in a post"
|
||||
msgstr "Estàs etiquetat en un enviament"
|
||||
|
||||
#: ../../mod/settings.php:1033
|
||||
#: ../../mod/settings.php:1105
|
||||
msgid "You are poked/prodded/etc. in a post"
|
||||
msgstr ""
|
||||
msgstr "Has estat Atiat/punxat/etc, en un enviament"
|
||||
|
||||
#: ../../mod/settings.php:1036
|
||||
#: ../../mod/settings.php:1108
|
||||
msgid "Advanced Account/Page Type Settings"
|
||||
msgstr "Ajustos Avançats de Compte/ Pàgina"
|
||||
|
||||
#: ../../mod/settings.php:1037
|
||||
#: ../../mod/settings.php:1109
|
||||
msgid "Change the behaviour of this account for special situations"
|
||||
msgstr "Canviar el comportament d'aquest compte en situacions especials"
|
||||
|
||||
#: ../../mod/manage.php:91
|
||||
#: ../../mod/manage.php:106
|
||||
msgid "Manage Identities and/or Pages"
|
||||
msgstr "Administrar Identitats i/o Pàgines"
|
||||
|
||||
#: ../../mod/manage.php:94
|
||||
#: ../../mod/manage.php:107
|
||||
msgid ""
|
||||
"Toggle between different identities or community/group pages which share "
|
||||
"your account details or which you have been granted \"manage\" permissions"
|
||||
msgstr "Alternar entre les diferents identitats o les pàgines de comunitats/grups que comparteixen les dades del seu compte o que se li ha concedit els permisos de \"administrar\""
|
||||
|
||||
#: ../../mod/manage.php:96
|
||||
#: ../../mod/manage.php:108
|
||||
msgid "Select an identity to manage: "
|
||||
msgstr "Seleccionar identitat a administrar:"
|
||||
|
||||
#: ../../mod/network.php:97
|
||||
#: ../../mod/network.php:181
|
||||
msgid "Search Results For:"
|
||||
msgstr "Resultats de la Cerca Per a:"
|
||||
|
||||
#: ../../mod/network.php:137 ../../mod/search.php:16
|
||||
#: ../../mod/network.php:224 ../../mod/search.php:21
|
||||
msgid "Remove term"
|
||||
msgstr "Traieu termini"
|
||||
|
||||
#: ../../mod/network.php:146 ../../mod/search.php:13
|
||||
#: ../../mod/network.php:233 ../../mod/search.php:30
|
||||
#: ../../include/features.php:41
|
||||
msgid "Saved Searches"
|
||||
msgstr "Cerques Guardades"
|
||||
|
||||
#: ../../mod/network.php:147 ../../include/group.php:244
|
||||
#: ../../mod/network.php:234 ../../include/group.php:275
|
||||
msgid "add"
|
||||
msgstr "afegir"
|
||||
|
||||
#: ../../mod/network.php:287
|
||||
#: ../../mod/network.php:397
|
||||
msgid "Commented Order"
|
||||
msgstr "Ordre dels Comentaris"
|
||||
|
||||
#: ../../mod/network.php:290
|
||||
#: ../../mod/network.php:400
|
||||
msgid "Sort by Comment Date"
|
||||
msgstr "Ordenar per Data de Comentari"
|
||||
|
||||
#: ../../mod/network.php:293
|
||||
#: ../../mod/network.php:403
|
||||
msgid "Posted Order"
|
||||
msgstr "Ordre dels Enviaments"
|
||||
|
||||
#: ../../mod/network.php:296
|
||||
#: ../../mod/network.php:406
|
||||
msgid "Sort by Post Date"
|
||||
msgstr "Ordenar per Data d'Enviament"
|
||||
|
||||
#: ../../mod/network.php:303
|
||||
#: ../../mod/network.php:447
|
||||
msgid "Posts that mention or involve you"
|
||||
msgstr "Missatge que et menciona o t'impliquen"
|
||||
|
||||
#: ../../mod/network.php:306
|
||||
#: ../../mod/network.php:453
|
||||
msgid "New"
|
||||
msgstr "Nou"
|
||||
|
||||
#: ../../mod/network.php:309
|
||||
#: ../../mod/network.php:456
|
||||
msgid "Activity Stream - by date"
|
||||
msgstr "Activitat del Flux - per data"
|
||||
|
||||
#: ../../mod/network.php:312
|
||||
msgid "Starred"
|
||||
msgstr "Favorits"
|
||||
|
||||
#: ../../mod/network.php:315
|
||||
msgid "Favourite Posts"
|
||||
msgstr "Enviaments Favorits"
|
||||
|
||||
#: ../../mod/network.php:318
|
||||
#: ../../mod/network.php:462
|
||||
msgid "Shared Links"
|
||||
msgstr "Enllaços Compartits"
|
||||
|
||||
#: ../../mod/network.php:321
|
||||
#: ../../mod/network.php:465
|
||||
msgid "Interesting Links"
|
||||
msgstr "Enllaços Interesants"
|
||||
|
||||
#: ../../mod/network.php:388
|
||||
#: ../../mod/network.php:471
|
||||
msgid "Starred"
|
||||
msgstr "Favorits"
|
||||
|
||||
#: ../../mod/network.php:474
|
||||
msgid "Favourite Posts"
|
||||
msgstr "Enviaments Favorits"
|
||||
|
||||
#: ../../mod/network.php:546
|
||||
#, php-format
|
||||
msgid "Warning: This group contains %s member from an insecure network."
|
||||
msgid_plural ""
|
||||
|
|
@ -2640,41 +2827,87 @@ msgid_plural ""
|
|||
msgstr[0] "Advertència: Aquest grup conté el membre %s en una xarxa insegura."
|
||||
msgstr[1] "Advertència: Aquest grup conté %s membres d'una xarxa insegura."
|
||||
|
||||
#: ../../mod/network.php:391
|
||||
#: ../../mod/network.php:549
|
||||
msgid "Private messages to this group are at risk of public disclosure."
|
||||
msgstr "Els missatges privats a aquest grup es troben en risc de divulgació pública."
|
||||
|
||||
#: ../../mod/network.php:461
|
||||
#: ../../mod/network.php:621
|
||||
msgid "Contact: "
|
||||
msgstr "Contacte:"
|
||||
|
||||
#: ../../mod/network.php:463
|
||||
#: ../../mod/network.php:623
|
||||
msgid "Private messages to this person are at risk of public disclosure."
|
||||
msgstr "Els missatges privats a aquesta persona es troben en risc de divulgació pública."
|
||||
|
||||
#: ../../mod/network.php:468
|
||||
#: ../../mod/network.php:628
|
||||
msgid "Invalid contact."
|
||||
msgstr "Contacte no vàlid."
|
||||
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1696
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1864
|
||||
msgid "Personal Notes"
|
||||
msgstr "Notes Personals"
|
||||
|
||||
#: ../../mod/notes.php:63 ../../mod/filer.php:30
|
||||
#: ../../addon/facebook/facebook.php:770
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:263
|
||||
#: ../../addon/fbpost/fbpost.php:267
|
||||
#: ../../mod/notes.php:63 ../../mod/filer.php:31
|
||||
#: ../../addon/facebook/facebook.php:772
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:354
|
||||
#: ../../addon/fbpost/fbpost.php:322
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:441
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:741
|
||||
#: ../../addon.old/facebook/facebook.php:770
|
||||
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
|
||||
#: ../../addon.old/fbpost/fbpost.php:267
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:441
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:488
|
||||
msgid "Save"
|
||||
msgstr "Guardar"
|
||||
|
||||
#: ../../mod/uimport.php:50 ../../mod/register.php:192
|
||||
msgid ""
|
||||
"This site has exceeded the number of allowed daily account registrations. "
|
||||
"Please try again tomorrow."
|
||||
msgstr "Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà."
|
||||
|
||||
#: ../../mod/uimport.php:64
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/uimport.php:66
|
||||
msgid "Move account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/uimport.php:67
|
||||
msgid "You can import an account from another Friendica server."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/uimport.php:68
|
||||
msgid ""
|
||||
"You need to export your account from the old server and upload it here. We "
|
||||
"will recreate your old account here with all your contacts. We will try also"
|
||||
" to inform your friends that you moved here."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/uimport.php:69
|
||||
msgid ""
|
||||
"This feature is experimental. We can't import contacts from the OStatus "
|
||||
"network (statusnet/identi.ca) or from Diaspora"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/uimport.php:70
|
||||
msgid "Account file"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/uimport.php:70
|
||||
msgid ""
|
||||
"To export your accont, go to \"Settings->Export your porsonal data\" and "
|
||||
"select \"Export account\""
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
|
||||
#, php-format
|
||||
msgid "Number of daily wall messages for %s exceeded. Message failed."
|
||||
msgstr "Nombre diari de missatges al mur per %s excedit. El missatge ha fallat."
|
||||
|
||||
#: ../../mod/wallmessage.php:56 ../../mod/message.php:59
|
||||
#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
|
||||
msgid "No recipient selected."
|
||||
msgstr "No s'ha seleccionat destinatari."
|
||||
|
||||
|
|
@ -2682,15 +2915,15 @@ msgstr "No s'ha seleccionat destinatari."
|
|||
msgid "Unable to check your home location."
|
||||
msgstr "Incapaç de comprovar la localització."
|
||||
|
||||
#: ../../mod/wallmessage.php:62 ../../mod/message.php:66
|
||||
#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
|
||||
msgid "Message could not be sent."
|
||||
msgstr "El Missatge no ha estat enviat."
|
||||
|
||||
#: ../../mod/wallmessage.php:65 ../../mod/message.php:69
|
||||
#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
|
||||
msgid "Message collection failure."
|
||||
msgstr "Ha fallat la recollida del missatge."
|
||||
|
||||
#: ../../mod/wallmessage.php:68 ../../mod/message.php:72
|
||||
#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
|
||||
msgid "Message sent."
|
||||
msgstr "Missatge enviat."
|
||||
|
||||
|
|
@ -2698,35 +2931,36 @@ msgstr "Missatge enviat."
|
|||
msgid "No recipient."
|
||||
msgstr "Sense destinatari."
|
||||
|
||||
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
|
||||
#: ../../mod/message.php:242 ../../mod/message.php:250
|
||||
#: ../../include/conversation.php:1205 ../../include/conversation.php:1222
|
||||
#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
|
||||
#: ../../mod/message.php:283 ../../mod/message.php:291
|
||||
#: ../../mod/message.php:466 ../../mod/message.php:474
|
||||
#: ../../include/conversation.php:940 ../../include/conversation.php:958
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr "Sius plau, entri l'enllaç URL:"
|
||||
|
||||
#: ../../mod/wallmessage.php:138 ../../mod/message.php:278
|
||||
#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
|
||||
msgid "Send Private Message"
|
||||
msgstr "Enviant Missatge Privat"
|
||||
|
||||
#: ../../mod/wallmessage.php:139
|
||||
#: ../../mod/wallmessage.php:143
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you wish for %s to respond, please check that the privacy settings on "
|
||||
"your site allow private mail from unknown senders."
|
||||
msgstr "si vols respondre a %s, comprova que els ajustos de privacitat del lloc permeten correus privats de remitents desconeguts."
|
||||
|
||||
#: ../../mod/wallmessage.php:140 ../../mod/message.php:279
|
||||
#: ../../mod/message.php:469
|
||||
#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
|
||||
#: ../../mod/message.php:553
|
||||
msgid "To:"
|
||||
msgstr "Per a:"
|
||||
|
||||
#: ../../mod/wallmessage.php:141 ../../mod/message.php:284
|
||||
#: ../../mod/message.php:471
|
||||
#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
|
||||
#: ../../mod/message.php:555
|
||||
msgid "Subject:"
|
||||
msgstr "Assumpte::"
|
||||
|
||||
#: ../../mod/wallmessage.php:147 ../../mod/message.php:288
|
||||
#: ../../mod/message.php:474 ../../mod/invite.php:113
|
||||
#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
|
||||
#: ../../mod/message.php:558 ../../mod/invite.php:134
|
||||
msgid "Your message:"
|
||||
msgstr "El teu missatge:"
|
||||
|
||||
|
|
@ -2763,7 +2997,7 @@ msgstr ""
|
|||
|
||||
#: ../../mod/newmember.php:26
|
||||
msgid "Go to Your Settings"
|
||||
msgstr ""
|
||||
msgstr "Anar als Teus Ajustos"
|
||||
|
||||
#: ../../mod/newmember.php:26
|
||||
msgid ""
|
||||
|
|
@ -2781,9 +3015,9 @@ msgid ""
|
|||
msgstr "Reviseu les altres configuracions, en particular la configuració de privadesa. Una llista de directoris no publicada és com tenir un número de telèfon no llistat. Normalment, hauria de publicar la seva llista - a menys que tots els seus amics i els amics potencials sàpiguen exactament com trobar-li."
|
||||
|
||||
#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
|
||||
#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7
|
||||
#: ../../include/profile_advanced.php:84 ../../include/nav.php:50
|
||||
#: ../../boot.php:1672
|
||||
#: ../../view/theme/diabook/theme.php:88 ../../include/profile_advanced.php:7
|
||||
#: ../../include/profile_advanced.php:84 ../../include/nav.php:77
|
||||
#: ../../boot.php:1840
|
||||
msgid "Profile"
|
||||
msgstr "Perfil"
|
||||
|
||||
|
|
@ -2800,7 +3034,7 @@ msgstr "Puji una foto del seu perfil si encara no ho ha fet. Els estudis han dem
|
|||
|
||||
#: ../../mod/newmember.php:38
|
||||
msgid "Edit Your Profile"
|
||||
msgstr ""
|
||||
msgstr "Editar el Teu Perfil"
|
||||
|
||||
#: ../../mod/newmember.php:38
|
||||
msgid ""
|
||||
|
|
@ -2811,7 +3045,7 @@ msgstr "Editi el perfil per <strong>defecte</strong> al seu gust. Reviseu la co
|
|||
|
||||
#: ../../mod/newmember.php:40
|
||||
msgid "Profile Keywords"
|
||||
msgstr ""
|
||||
msgstr "Paraules clau del Perfil"
|
||||
|
||||
#: ../../mod/newmember.php:40
|
||||
msgid ""
|
||||
|
|
@ -2822,11 +3056,13 @@ msgstr "Estableix algunes paraules clau públiques al teu perfil predeterminat q
|
|||
|
||||
#: ../../mod/newmember.php:44
|
||||
msgid "Connecting"
|
||||
msgstr ""
|
||||
msgstr "Connectant"
|
||||
|
||||
#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
|
||||
#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239
|
||||
#: ../../addon/facebook/facebook.php:730 ../../addon/fbpost/fbpost.php:294
|
||||
#: ../../include/contact_selectors.php:81
|
||||
#: ../../addon.old/facebook/facebook.php:728
|
||||
#: ../../addon.old/fbpost/fbpost.php:239
|
||||
msgid "Facebook"
|
||||
msgstr "Facebook"
|
||||
|
||||
|
|
@ -2844,7 +3080,7 @@ msgstr "<em>Si </em> aquesta és el seu servidor personal, la instal·lació del
|
|||
|
||||
#: ../../mod/newmember.php:56
|
||||
msgid "Importing Emails"
|
||||
msgstr ""
|
||||
msgstr "Important Emails"
|
||||
|
||||
#: ../../mod/newmember.php:56
|
||||
msgid ""
|
||||
|
|
@ -2855,7 +3091,7 @@ msgstr "Introduïu les dades d'accés al correu electrònic a la seva pàgina de
|
|||
|
||||
#: ../../mod/newmember.php:58
|
||||
msgid "Go to Your Contacts Page"
|
||||
msgstr ""
|
||||
msgstr "Anar a la Teva Pàgina de Contactes"
|
||||
|
||||
#: ../../mod/newmember.php:58
|
||||
msgid ""
|
||||
|
|
@ -2866,7 +3102,7 @@ msgstr "La seva pàgina de Contactes és la seva porta d'entrada a la gestió de
|
|||
|
||||
#: ../../mod/newmember.php:60
|
||||
msgid "Go to Your Site's Directory"
|
||||
msgstr ""
|
||||
msgstr "Anar al Teu Directori"
|
||||
|
||||
#: ../../mod/newmember.php:60
|
||||
msgid ""
|
||||
|
|
@ -2877,7 +3113,7 @@ msgstr "La pàgina del Directori li permet trobar altres persones en aquesta xar
|
|||
|
||||
#: ../../mod/newmember.php:62
|
||||
msgid "Finding New People"
|
||||
msgstr ""
|
||||
msgstr "Trobar Gent Nova"
|
||||
|
||||
#: ../../mod/newmember.php:62
|
||||
msgid ""
|
||||
|
|
@ -2888,13 +3124,13 @@ msgid ""
|
|||
"hours."
|
||||
msgstr "Al tauler lateral de la pàgina de contacte Hi ha diverses eines per trobar nous amics. Podem coincidir amb les persones per interesos, buscar persones pel nom o per interès, i oferir suggeriments basats en les relacions de la xarxa. En un nou lloc, els suggeriments d'amics, en general comencen a poblar el lloc a les 24 hores."
|
||||
|
||||
#: ../../mod/newmember.php:66 ../../include/group.php:239
|
||||
#: ../../mod/newmember.php:66 ../../include/group.php:270
|
||||
msgid "Groups"
|
||||
msgstr "Grups"
|
||||
|
||||
#: ../../mod/newmember.php:70
|
||||
msgid "Group Your Contacts"
|
||||
msgstr ""
|
||||
msgstr "Agrupar els Teus Contactes"
|
||||
|
||||
#: ../../mod/newmember.php:70
|
||||
msgid ""
|
||||
|
|
@ -2905,22 +3141,22 @@ msgstr "Una vegada que s'han fet alguns amics, organitzi'ls en grups de conversa
|
|||
|
||||
#: ../../mod/newmember.php:73
|
||||
msgid "Why Aren't My Posts Public?"
|
||||
msgstr ""
|
||||
msgstr "Per que no es public el meu enviament?"
|
||||
|
||||
#: ../../mod/newmember.php:73
|
||||
msgid ""
|
||||
"Friendica respects your privacy. By default, your posts will only show up to"
|
||||
" people you've added as friends. For more information, see the help section "
|
||||
"from the link above."
|
||||
msgstr ""
|
||||
msgstr "Friendica respecta la teva privacitat. Per defecte, els teus enviaments només s'envien a gent que has afegit com a amic. Per més informació, mira la secció d'ajuda des de l'enllaç de dalt."
|
||||
|
||||
#: ../../mod/newmember.php:78
|
||||
msgid "Getting Help"
|
||||
msgstr ""
|
||||
msgstr "Demanant Ajuda"
|
||||
|
||||
#: ../../mod/newmember.php:82
|
||||
msgid "Go to the Help Section"
|
||||
msgstr ""
|
||||
msgstr "Anar a la secció d'Ajuda"
|
||||
|
||||
#: ../../mod/newmember.php:82
|
||||
msgid ""
|
||||
|
|
@ -2944,7 +3180,7 @@ msgstr "Grup creat."
|
|||
msgid "Could not create group."
|
||||
msgstr "No puc crear grup."
|
||||
|
||||
#: ../../mod/group.php:47 ../../mod/group.php:137
|
||||
#: ../../mod/group.php:47 ../../mod/group.php:140
|
||||
msgid "Group not found."
|
||||
msgstr "Grup no trobat"
|
||||
|
||||
|
|
@ -2952,35 +3188,35 @@ msgstr "Grup no trobat"
|
|||
msgid "Group name changed."
|
||||
msgstr "Nom de Grup canviat."
|
||||
|
||||
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316
|
||||
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:340
|
||||
msgid "Permission denied"
|
||||
msgstr "Permís denegat"
|
||||
|
||||
#: ../../mod/group.php:90
|
||||
#: ../../mod/group.php:93
|
||||
msgid "Create a group of contacts/friends."
|
||||
msgstr "Crear un grup de contactes/amics."
|
||||
|
||||
#: ../../mod/group.php:91 ../../mod/group.php:177
|
||||
#: ../../mod/group.php:94 ../../mod/group.php:180
|
||||
msgid "Group Name: "
|
||||
msgstr "Nom del Grup:"
|
||||
|
||||
#: ../../mod/group.php:110
|
||||
#: ../../mod/group.php:113
|
||||
msgid "Group removed."
|
||||
msgstr "Grup esborrat."
|
||||
|
||||
#: ../../mod/group.php:112
|
||||
#: ../../mod/group.php:115
|
||||
msgid "Unable to remove group."
|
||||
msgstr "Incapaç de esborrar Grup."
|
||||
|
||||
#: ../../mod/group.php:176
|
||||
#: ../../mod/group.php:179
|
||||
msgid "Group Editor"
|
||||
msgstr "Editor de Grup:"
|
||||
|
||||
#: ../../mod/group.php:189
|
||||
#: ../../mod/group.php:192
|
||||
msgid "Members"
|
||||
msgstr "Membres"
|
||||
|
||||
#: ../../mod/group.php:221 ../../mod/profperm.php:105
|
||||
#: ../../mod/group.php:224 ../../mod/profperm.php:105
|
||||
msgid "Click on a contact to add or remove."
|
||||
msgstr "Clicar sobre el contacte per afegir o esborrar."
|
||||
|
||||
|
|
@ -3004,95 +3240,89 @@ msgstr "Tots els Contactes (amb accés segur al perfil)"
|
|||
msgid "No contacts."
|
||||
msgstr "Sense Contactes"
|
||||
|
||||
#: ../../mod/viewcontacts.php:76 ../../include/text.php:618
|
||||
#: ../../mod/viewcontacts.php:76 ../../include/text.php:678
|
||||
msgid "View Contacts"
|
||||
msgstr "Veure Contactes"
|
||||
|
||||
#: ../../mod/register.php:88 ../../mod/regmod.php:52
|
||||
#: ../../mod/register.php:91 ../../mod/regmod.php:54
|
||||
#, php-format
|
||||
msgid "Registration details for %s"
|
||||
msgstr "Detalls del registre per a %s"
|
||||
|
||||
#: ../../mod/register.php:96
|
||||
#: ../../mod/register.php:99
|
||||
msgid ""
|
||||
"Registration successful. Please check your email for further instructions."
|
||||
msgstr "Registrat amb èxit. Per favor, comprovi el seu correu per a posteriors instruccions."
|
||||
|
||||
#: ../../mod/register.php:100
|
||||
#: ../../mod/register.php:103
|
||||
msgid "Failed to send email message. Here is the message that failed."
|
||||
msgstr "Error en enviar missatge de correu electrònic. Aquí està el missatge que ha fallat."
|
||||
|
||||
#: ../../mod/register.php:105
|
||||
#: ../../mod/register.php:108
|
||||
msgid "Your registration can not be processed."
|
||||
msgstr "El seu registre no pot ser processat."
|
||||
|
||||
#: ../../mod/register.php:142
|
||||
#: ../../mod/register.php:145
|
||||
#, php-format
|
||||
msgid "Registration request at %s"
|
||||
msgstr "Sol·licitud de registre a %s"
|
||||
|
||||
#: ../../mod/register.php:151
|
||||
#: ../../mod/register.php:154
|
||||
msgid "Your registration is pending approval by the site owner."
|
||||
msgstr "El seu registre està pendent d'aprovació pel propietari del lloc."
|
||||
|
||||
#: ../../mod/register.php:189
|
||||
msgid ""
|
||||
"This site has exceeded the number of allowed daily account registrations. "
|
||||
"Please try again tomorrow."
|
||||
msgstr "Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà."
|
||||
|
||||
#: ../../mod/register.php:217
|
||||
#: ../../mod/register.php:220
|
||||
msgid ""
|
||||
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
||||
"and clicking 'Register'."
|
||||
msgstr "Vostè pot (opcionalment), omplir aquest formulari a través de OpenID mitjançant el subministrament de la seva OpenID i fent clic a 'Registrar'."
|
||||
|
||||
#: ../../mod/register.php:218
|
||||
#: ../../mod/register.php:221
|
||||
msgid ""
|
||||
"If you are not familiar with OpenID, please leave that field blank and fill "
|
||||
"in the rest of the items."
|
||||
msgstr "Si vostè no està familiaritzat amb Twitter, si us plau deixi aquest camp en blanc i completi la resta dels elements."
|
||||
|
||||
#: ../../mod/register.php:219
|
||||
#: ../../mod/register.php:222
|
||||
msgid "Your OpenID (optional): "
|
||||
msgstr "El seu OpenID (opcional):"
|
||||
|
||||
#: ../../mod/register.php:233
|
||||
#: ../../mod/register.php:236
|
||||
msgid "Include your profile in member directory?"
|
||||
msgstr "Incloc el seu perfil al directori de membres?"
|
||||
|
||||
#: ../../mod/register.php:255
|
||||
#: ../../mod/register.php:257
|
||||
msgid "Membership on this site is by invitation only."
|
||||
msgstr "Lloc accesible mitjançant invitació."
|
||||
|
||||
#: ../../mod/register.php:256
|
||||
#: ../../mod/register.php:258
|
||||
msgid "Your invitation ID: "
|
||||
msgstr "El teu ID de invitació:"
|
||||
|
||||
#: ../../mod/register.php:259 ../../mod/admin.php:444
|
||||
#: ../../mod/register.php:261 ../../mod/admin.php:462
|
||||
msgid "Registration"
|
||||
msgstr "Procés de Registre"
|
||||
|
||||
#: ../../mod/register.php:267
|
||||
#: ../../mod/register.php:269
|
||||
msgid "Your Full Name (e.g. Joe Smith): "
|
||||
msgstr "El seu nom complet (per exemple, Joan Ningú):"
|
||||
|
||||
#: ../../mod/register.php:268
|
||||
#: ../../mod/register.php:270
|
||||
msgid "Your Email Address: "
|
||||
msgstr "La Seva Adreça de Correu:"
|
||||
|
||||
#: ../../mod/register.php:269
|
||||
#: ../../mod/register.php:271
|
||||
msgid ""
|
||||
"Choose a profile nickname. This must begin with a text character. Your "
|
||||
"profile address on this site will then be "
|
||||
"'<strong>nickname@$sitename</strong>'."
|
||||
msgstr "Tria un nom de perfil. Això ha de començar amb un caràcter de text. La seva adreça de perfil en aquest lloc serà '<strong>alies@$sitename</strong>'."
|
||||
|
||||
#: ../../mod/register.php:270
|
||||
#: ../../mod/register.php:272
|
||||
msgid "Choose a nickname: "
|
||||
msgstr "Tria un àlies:"
|
||||
|
||||
#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887
|
||||
#: ../../mod/register.php:275 ../../include/nav.php:108 ../../boot.php:1012
|
||||
msgid "Register"
|
||||
msgstr "Registrar"
|
||||
|
||||
|
|
@ -3100,33 +3330,47 @@ msgstr "Registrar"
|
|||
msgid "People Search"
|
||||
msgstr "Cercant Gent"
|
||||
|
||||
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62
|
||||
#: ../../addon/facebook/facebook.php:1598
|
||||
#: ../../addon/communityhome/communityhome.php:158
|
||||
#: ../../addon/communityhome/communityhome.php:167
|
||||
#: ../../view/theme/diabook/theme.php:565
|
||||
#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824
|
||||
#: ../../include/conversation.php:120 ../../include/conversation.php:129
|
||||
#: ../../include/conversation.php:248 ../../include/conversation.php:257
|
||||
#: ../../mod/like.php:151 ../../mod/subthread.php:87 ../../mod/tagger.php:62
|
||||
#: ../../addon/communityhome/communityhome.php:171
|
||||
#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1510
|
||||
#: ../../include/diaspora.php:1860 ../../include/conversation.php:126
|
||||
#: ../../include/conversation.php:254
|
||||
#: ../../addon.old/communityhome/communityhome.php:163
|
||||
msgid "photo"
|
||||
msgstr "foto"
|
||||
|
||||
#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87
|
||||
#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1600
|
||||
#: ../../addon/communityhome/communityhome.php:166
|
||||
#: ../../addon/communityhome/communityhome.php:175
|
||||
#: ../../view/theme/diabook/theme.php:459
|
||||
#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1860
|
||||
#: ../../include/conversation.php:121 ../../include/conversation.php:130
|
||||
#: ../../include/conversation.php:249 ../../include/conversation.php:258
|
||||
#: ../../addon.old/facebook/facebook.php:1598
|
||||
#: ../../addon.old/communityhome/communityhome.php:158
|
||||
#: ../../addon.old/communityhome/communityhome.php:167
|
||||
msgid "status"
|
||||
msgstr "estatus"
|
||||
|
||||
#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602
|
||||
#: ../../addon/communityhome/communityhome.php:172
|
||||
#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840
|
||||
#: ../../include/conversation.php:136
|
||||
#: ../../mod/like.php:168 ../../addon/facebook/facebook.php:1604
|
||||
#: ../../addon/communityhome/communityhome.php:180
|
||||
#: ../../view/theme/diabook/theme.php:473 ../../include/diaspora.php:1876
|
||||
#: ../../include/conversation.php:137
|
||||
#: ../../addon.old/facebook/facebook.php:1602
|
||||
#: ../../addon.old/communityhome/communityhome.php:172
|
||||
#, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
msgstr "a %1$s agrada %2$s de %3$s"
|
||||
|
||||
#: ../../mod/like.php:164 ../../include/conversation.php:139
|
||||
#: ../../mod/like.php:170 ../../include/conversation.php:140
|
||||
#, php-format
|
||||
msgid "%1$s doesn't like %2$s's %3$s"
|
||||
msgstr "a %1$s no agrada %2$s de %3$s"
|
||||
|
||||
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
|
||||
#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29
|
||||
#: ../../mod/display.php:145 ../../include/items.php:3774
|
||||
#: ../../mod/admin.php:773 ../../mod/admin.php:972 ../../mod/display.php:51
|
||||
#: ../../mod/display.php:184 ../../include/items.php:3853
|
||||
msgid "Item not found."
|
||||
msgstr "Article no trobat."
|
||||
|
||||
|
|
@ -3134,73 +3378,73 @@ msgstr "Article no trobat."
|
|||
msgid "Access denied."
|
||||
msgstr "Accés denegat."
|
||||
|
||||
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130
|
||||
#: ../../include/nav.php:51 ../../boot.php:1679
|
||||
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
|
||||
#: ../../include/nav.php:78 ../../boot.php:1847
|
||||
msgid "Photos"
|
||||
msgstr "Fotos"
|
||||
|
||||
#: ../../mod/fbrowser.php:96
|
||||
#: ../../mod/fbrowser.php:113
|
||||
msgid "Files"
|
||||
msgstr "Arxius"
|
||||
|
||||
#: ../../mod/regmod.php:61
|
||||
#: ../../mod/regmod.php:63
|
||||
msgid "Account approved."
|
||||
msgstr "Compte aprovat."
|
||||
|
||||
#: ../../mod/regmod.php:98
|
||||
#: ../../mod/regmod.php:100
|
||||
#, php-format
|
||||
msgid "Registration revoked for %s"
|
||||
msgstr "Procés de Registre revocat per a %s"
|
||||
|
||||
#: ../../mod/regmod.php:110
|
||||
#: ../../mod/regmod.php:112
|
||||
msgid "Please login."
|
||||
msgstr "Si us plau, ingressa."
|
||||
|
||||
#: ../../mod/item.php:91
|
||||
#: ../../mod/item.php:104
|
||||
msgid "Unable to locate original post."
|
||||
msgstr "No es pot localitzar post original."
|
||||
|
||||
#: ../../mod/item.php:275
|
||||
#: ../../mod/item.php:292
|
||||
msgid "Empty post discarded."
|
||||
msgstr "Buidat després de rebutjar."
|
||||
|
||||
#: ../../mod/item.php:407 ../../mod/wall_upload.php:133
|
||||
#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149
|
||||
#: ../../mod/item.php:428 ../../mod/wall_upload.php:135
|
||||
#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151
|
||||
#: ../../include/message.php:144
|
||||
msgid "Wall Photos"
|
||||
msgstr "Fotos del Mur"
|
||||
|
||||
#: ../../mod/item.php:820
|
||||
#: ../../mod/item.php:841
|
||||
msgid "System error. Post not saved."
|
||||
msgstr "Error del sistema. Publicació no guardada."
|
||||
|
||||
#: ../../mod/item.php:845
|
||||
#: ../../mod/item.php:866
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This message was sent to you by %s, a member of the Friendica social "
|
||||
"network."
|
||||
msgstr "Aquest missatge va ser enviat a vostè per %s, un membre de la xarxa social Friendica."
|
||||
|
||||
#: ../../mod/item.php:847
|
||||
#: ../../mod/item.php:868
|
||||
#, php-format
|
||||
msgid "You may visit them online at %s"
|
||||
msgstr "El pot visitar en línia a %s"
|
||||
|
||||
#: ../../mod/item.php:848
|
||||
#: ../../mod/item.php:869
|
||||
msgid ""
|
||||
"Please contact the sender by replying to this post if you do not wish to "
|
||||
"receive these messages."
|
||||
msgstr "Si us plau, poseu-vos en contacte amb el remitent responent a aquest missatge si no voleu rebre aquests missatges."
|
||||
|
||||
#: ../../mod/item.php:850
|
||||
#: ../../mod/item.php:871
|
||||
#, php-format
|
||||
msgid "%s posted an update."
|
||||
msgstr "%s ha publicat una actualització."
|
||||
|
||||
#: ../../mod/mood.php:62 ../../include/conversation.php:226
|
||||
#: ../../mod/mood.php:62 ../../include/conversation.php:227
|
||||
#, php-format
|
||||
msgid "%1$s is currently %2$s"
|
||||
msgstr ""
|
||||
msgstr "%1$s es normalment %2$s"
|
||||
|
||||
#: ../../mod/mood.php:133
|
||||
msgid "Mood"
|
||||
|
|
@ -3230,7 +3474,7 @@ msgstr "Recarregui la pàgina o netegi la caché del navegador si la nova foto n
|
|||
msgid "Unable to process image"
|
||||
msgstr "No es pot processar la imatge"
|
||||
|
||||
#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88
|
||||
#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90
|
||||
#, php-format
|
||||
msgid "Image exceeds size limit of %d"
|
||||
msgstr "La imatge sobrepassa el límit de mida de %d"
|
||||
|
|
@ -3245,6 +3489,7 @@ msgstr ""
|
|||
|
||||
#: ../../mod/profile_photo.php:245
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:152
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:152
|
||||
msgid "Upload"
|
||||
msgstr "Pujar"
|
||||
|
||||
|
|
@ -3290,71 +3535,83 @@ msgstr "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no se
|
|||
msgid "Please enter your password for verification:"
|
||||
msgstr "Si us plau, introduïu la contrasenya per a la verificació:"
|
||||
|
||||
#: ../../mod/message.php:9 ../../include/nav.php:131
|
||||
#: ../../mod/navigation.php:20 ../../include/nav.php:34
|
||||
msgid "Nothing new here"
|
||||
msgstr "Res nou aquí"
|
||||
|
||||
#: ../../mod/navigation.php:24 ../../include/nav.php:38
|
||||
msgid "Clear notifications"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:9 ../../include/nav.php:159
|
||||
msgid "New Message"
|
||||
msgstr "Nou Missatge"
|
||||
|
||||
#: ../../mod/message.php:63
|
||||
#: ../../mod/message.php:67
|
||||
msgid "Unable to locate contact information."
|
||||
msgstr "No es pot trobar informació de contacte."
|
||||
|
||||
#: ../../mod/message.php:191
|
||||
#: ../../mod/message.php:207
|
||||
msgid "Do you really want to delete this message?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:227
|
||||
msgid "Message deleted."
|
||||
msgstr "Missatge eliminat."
|
||||
|
||||
#: ../../mod/message.php:221
|
||||
#: ../../mod/message.php:258
|
||||
msgid "Conversation removed."
|
||||
msgstr "Conversació esborrada."
|
||||
|
||||
#: ../../mod/message.php:327
|
||||
#: ../../mod/message.php:371
|
||||
msgid "No messages."
|
||||
msgstr "Sense missatges."
|
||||
|
||||
#: ../../mod/message.php:334
|
||||
#: ../../mod/message.php:378
|
||||
#, php-format
|
||||
msgid "Unknown sender - %s"
|
||||
msgstr "remitent desconegut - %s"
|
||||
|
||||
#: ../../mod/message.php:337
|
||||
#: ../../mod/message.php:381
|
||||
#, php-format
|
||||
msgid "You and %s"
|
||||
msgstr "Tu i %s"
|
||||
|
||||
#: ../../mod/message.php:340
|
||||
#: ../../mod/message.php:384
|
||||
#, php-format
|
||||
msgid "%s and You"
|
||||
msgstr "%s i Tu"
|
||||
|
||||
#: ../../mod/message.php:350 ../../mod/message.php:462
|
||||
#: ../../mod/message.php:405 ../../mod/message.php:546
|
||||
msgid "Delete conversation"
|
||||
msgstr "Esborrar conversació"
|
||||
|
||||
#: ../../mod/message.php:353
|
||||
#: ../../mod/message.php:408
|
||||
msgid "D, d M Y - g:i A"
|
||||
msgstr "D, d M Y - g:i A"
|
||||
|
||||
#: ../../mod/message.php:356
|
||||
#: ../../mod/message.php:411
|
||||
#, php-format
|
||||
msgid "%d message"
|
||||
msgid_plural "%d messages"
|
||||
msgstr[0] "%d missatge"
|
||||
msgstr[1] "%d missatges"
|
||||
|
||||
#: ../../mod/message.php:391
|
||||
#: ../../mod/message.php:450
|
||||
msgid "Message not available."
|
||||
msgstr "Missatge no disponible."
|
||||
|
||||
#: ../../mod/message.php:444
|
||||
#: ../../mod/message.php:520
|
||||
msgid "Delete message"
|
||||
msgstr "Esborra missatge"
|
||||
|
||||
#: ../../mod/message.php:464
|
||||
#: ../../mod/message.php:548
|
||||
msgid ""
|
||||
"No secure communications available. You <strong>may</strong> be able to "
|
||||
"respond from the sender's profile page."
|
||||
msgstr "Comunicacions degures no disponibles. Tú <strong>pots</strong> respondre des de la pàgina de perfil del remitent."
|
||||
|
||||
#: ../../mod/message.php:468
|
||||
#: ../../mod/message.php:552
|
||||
msgid "Send Reply"
|
||||
msgstr "Enviar Resposta"
|
||||
|
||||
|
|
@ -3371,19 +3628,19 @@ msgstr "No hi ha amics que mostrar"
|
|||
msgid "Theme settings updated."
|
||||
msgstr "Ajustos de Tema actualitzats"
|
||||
|
||||
#: ../../mod/admin.php:96 ../../mod/admin.php:442
|
||||
#: ../../mod/admin.php:96 ../../mod/admin.php:460
|
||||
msgid "Site"
|
||||
msgstr "Lloc"
|
||||
|
||||
#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701
|
||||
#: ../../mod/admin.php:97 ../../mod/admin.php:727 ../../mod/admin.php:740
|
||||
msgid "Users"
|
||||
msgstr "Usuaris"
|
||||
|
||||
#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825
|
||||
#: ../../mod/admin.php:98 ../../mod/admin.php:822 ../../mod/admin.php:864
|
||||
msgid "Plugins"
|
||||
msgstr "Plugins"
|
||||
|
||||
#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024
|
||||
#: ../../mod/admin.php:99 ../../mod/admin.php:1031 ../../mod/admin.php:1067
|
||||
msgid "Themes"
|
||||
msgstr "Temes"
|
||||
|
||||
|
|
@ -3391,11 +3648,11 @@ msgstr "Temes"
|
|||
msgid "DB updates"
|
||||
msgstr "Actualitzacions de BD"
|
||||
|
||||
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111
|
||||
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1154
|
||||
msgid "Logs"
|
||||
msgstr "Registres"
|
||||
|
||||
#: ../../mod/admin.php:120 ../../include/nav.php:146
|
||||
#: ../../mod/admin.php:120 ../../include/nav.php:178
|
||||
msgid "Admin"
|
||||
msgstr "Admin"
|
||||
|
||||
|
|
@ -3407,19 +3664,19 @@ msgstr "Característiques del Plugin"
|
|||
msgid "User registrations waiting for confirmation"
|
||||
msgstr "Registre d'usuari a l'espera de confirmació"
|
||||
|
||||
#: ../../mod/admin.php:183 ../../mod/admin.php:669
|
||||
#: ../../mod/admin.php:183 ../../mod/admin.php:698
|
||||
msgid "Normal Account"
|
||||
msgstr "Compte Normal"
|
||||
|
||||
#: ../../mod/admin.php:184 ../../mod/admin.php:670
|
||||
#: ../../mod/admin.php:184 ../../mod/admin.php:699
|
||||
msgid "Soapbox Account"
|
||||
msgstr "Compte Tribuna"
|
||||
|
||||
#: ../../mod/admin.php:185 ../../mod/admin.php:671
|
||||
#: ../../mod/admin.php:185 ../../mod/admin.php:700
|
||||
msgid "Community/Celebrity Account"
|
||||
msgstr "Compte de Comunitat/Celebritat"
|
||||
|
||||
#: ../../mod/admin.php:186 ../../mod/admin.php:672
|
||||
#: ../../mod/admin.php:186 ../../mod/admin.php:701
|
||||
msgid "Automatic Friend Account"
|
||||
msgstr "Compte d'Amistat Automàtic"
|
||||
|
||||
|
|
@ -3435,9 +3692,9 @@ msgstr "Fòrum Privat"
|
|||
msgid "Message queues"
|
||||
msgstr "Cues de missatges"
|
||||
|
||||
#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687
|
||||
#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987
|
||||
#: ../../mod/admin.php:1023 ../../mod/admin.php:1110
|
||||
#: ../../mod/admin.php:212 ../../mod/admin.php:459 ../../mod/admin.php:726
|
||||
#: ../../mod/admin.php:821 ../../mod/admin.php:863 ../../mod/admin.php:1030
|
||||
#: ../../mod/admin.php:1066 ../../mod/admin.php:1153
|
||||
msgid "Administration"
|
||||
msgstr "Administració"
|
||||
|
||||
|
|
@ -3461,614 +3718,675 @@ msgstr "Versió"
|
|||
msgid "Active plugins"
|
||||
msgstr "Plugins actius"
|
||||
|
||||
#: ../../mod/admin.php:373
|
||||
#: ../../mod/admin.php:391
|
||||
msgid "Site settings updated."
|
||||
msgstr "Ajustos del lloc actualitzats."
|
||||
|
||||
#: ../../mod/admin.php:428
|
||||
#: ../../mod/admin.php:446
|
||||
msgid "Closed"
|
||||
msgstr "Tancat"
|
||||
|
||||
#: ../../mod/admin.php:429
|
||||
#: ../../mod/admin.php:447
|
||||
msgid "Requires approval"
|
||||
msgstr "Requereix aprovació"
|
||||
|
||||
#: ../../mod/admin.php:430
|
||||
#: ../../mod/admin.php:448
|
||||
msgid "Open"
|
||||
msgstr "Obert"
|
||||
|
||||
#: ../../mod/admin.php:434
|
||||
#: ../../mod/admin.php:452
|
||||
msgid "No SSL policy, links will track page SSL state"
|
||||
msgstr "No existe una política de SSL, se hará un seguimiento de los vínculos de la página con SSL"
|
||||
|
||||
#: ../../mod/admin.php:435
|
||||
#: ../../mod/admin.php:453
|
||||
msgid "Force all links to use SSL"
|
||||
msgstr "Forzar a tots els enllaços a utilitzar SSL"
|
||||
|
||||
#: ../../mod/admin.php:436
|
||||
#: ../../mod/admin.php:454
|
||||
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
||||
msgstr "Certificat auto-signat, utilitzar SSL només per a enllaços locals (desaconsellat)"
|
||||
|
||||
#: ../../mod/admin.php:445
|
||||
#: ../../mod/admin.php:463
|
||||
msgid "File upload"
|
||||
msgstr "Fitxer carregat"
|
||||
|
||||
#: ../../mod/admin.php:446
|
||||
#: ../../mod/admin.php:464
|
||||
msgid "Policies"
|
||||
msgstr "Polítiques"
|
||||
|
||||
#: ../../mod/admin.php:447
|
||||
#: ../../mod/admin.php:465
|
||||
msgid "Advanced"
|
||||
msgstr "Avançat"
|
||||
|
||||
#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567
|
||||
#: ../../mod/admin.php:466
|
||||
msgid "Performance"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:470 ../../addon/statusnet/statusnet.php:744
|
||||
#: ../../addon.old/statusnet/statusnet.php:567
|
||||
msgid "Site name"
|
||||
msgstr "Nom del lloc"
|
||||
|
||||
#: ../../mod/admin.php:452
|
||||
#: ../../mod/admin.php:471
|
||||
msgid "Banner/Logo"
|
||||
msgstr "Senyera/Logo"
|
||||
|
||||
#: ../../mod/admin.php:453
|
||||
#: ../../mod/admin.php:472
|
||||
msgid "System language"
|
||||
msgstr "Idioma del Sistema"
|
||||
|
||||
#: ../../mod/admin.php:454
|
||||
#: ../../mod/admin.php:473
|
||||
msgid "System theme"
|
||||
msgstr "Tema del sistema"
|
||||
|
||||
#: ../../mod/admin.php:454
|
||||
#: ../../mod/admin.php:473
|
||||
msgid ""
|
||||
"Default system theme - may be over-ridden by user profiles - <a href='#' "
|
||||
"id='cnftheme'>change theme settings</a>"
|
||||
msgstr "Tema per defecte del sistema - pot ser obviat pels perfils del usuari - <a href='#' id='cnftheme'>Canviar ajustos de tema</a>"
|
||||
|
||||
#: ../../mod/admin.php:455
|
||||
#: ../../mod/admin.php:474
|
||||
msgid "Mobile system theme"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:455
|
||||
#: ../../mod/admin.php:474
|
||||
msgid "Theme for mobile devices"
|
||||
msgstr ""
|
||||
msgstr "Tema per a aparells mòbils"
|
||||
|
||||
#: ../../mod/admin.php:456
|
||||
#: ../../mod/admin.php:475
|
||||
msgid "SSL link policy"
|
||||
msgstr "Política SSL per als enllaços"
|
||||
|
||||
#: ../../mod/admin.php:456
|
||||
#: ../../mod/admin.php:475
|
||||
msgid "Determines whether generated links should be forced to use SSL"
|
||||
msgstr "Determina si els enllaços generats han de ser forçats a utilitzar SSL"
|
||||
|
||||
#: ../../mod/admin.php:457
|
||||
#: ../../mod/admin.php:476
|
||||
msgid "'Share' element"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:476
|
||||
msgid "Activates the bbcode element 'share' for repeating items."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:477
|
||||
msgid "Maximum image size"
|
||||
msgstr "Mida màxima de les imatges"
|
||||
|
||||
#: ../../mod/admin.php:457
|
||||
#: ../../mod/admin.php:477
|
||||
msgid ""
|
||||
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
||||
"limits."
|
||||
msgstr "Mida màxima en bytes de les imatges a pujar. Per defecte es 0, que vol dir sense límits."
|
||||
|
||||
#: ../../mod/admin.php:458
|
||||
#: ../../mod/admin.php:478
|
||||
msgid "Maximum image length"
|
||||
msgstr ""
|
||||
msgstr "Maxima longitud d'imatge"
|
||||
|
||||
#: ../../mod/admin.php:458
|
||||
#: ../../mod/admin.php:478
|
||||
msgid ""
|
||||
"Maximum length in pixels of the longest side of uploaded images. Default is "
|
||||
"-1, which means no limits."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:459
|
||||
#: ../../mod/admin.php:479
|
||||
msgid "JPEG image quality"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:459
|
||||
#: ../../mod/admin.php:479
|
||||
msgid ""
|
||||
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
|
||||
"100, which is full quality."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:461
|
||||
#: ../../mod/admin.php:481
|
||||
msgid "Register policy"
|
||||
msgstr "Política per a registrar"
|
||||
|
||||
#: ../../mod/admin.php:462
|
||||
#: ../../mod/admin.php:482
|
||||
msgid "Maximum Daily Registrations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:482
|
||||
msgid ""
|
||||
"If registration is permitted above, this sets the maximum number of new user"
|
||||
" registrations to accept per day. If register is set to closed, this "
|
||||
"setting has no effect."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:483
|
||||
msgid "Register text"
|
||||
msgstr "Text al registrar"
|
||||
|
||||
#: ../../mod/admin.php:462
|
||||
#: ../../mod/admin.php:483
|
||||
msgid "Will be displayed prominently on the registration page."
|
||||
msgstr "Serà mostrat de forma preminent a la pàgina durant el procés de registre."
|
||||
|
||||
#: ../../mod/admin.php:463
|
||||
#: ../../mod/admin.php:484
|
||||
msgid "Accounts abandoned after x days"
|
||||
msgstr "Comptes abandonats després de x dies"
|
||||
|
||||
#: ../../mod/admin.php:463
|
||||
#: ../../mod/admin.php:484
|
||||
msgid ""
|
||||
"Will not waste system resources polling external sites for abandonded "
|
||||
"accounts. Enter 0 for no time limit."
|
||||
msgstr "No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal."
|
||||
|
||||
#: ../../mod/admin.php:464
|
||||
#: ../../mod/admin.php:485
|
||||
msgid "Allowed friend domains"
|
||||
msgstr "Dominis amics permesos"
|
||||
|
||||
#: ../../mod/admin.php:464
|
||||
#: ../../mod/admin.php:485
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed to establish friendships "
|
||||
"with this site. Wildcards are accepted. Empty to allow any domains"
|
||||
msgstr "Llista de dominis separada per comes, de adreçes de correu que són permeses per establir amistats. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis."
|
||||
|
||||
#: ../../mod/admin.php:465
|
||||
#: ../../mod/admin.php:486
|
||||
msgid "Allowed email domains"
|
||||
msgstr "Dominis de correu permesos"
|
||||
|
||||
#: ../../mod/admin.php:465
|
||||
#: ../../mod/admin.php:486
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed in email addresses for "
|
||||
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
||||
"domains"
|
||||
msgstr "Llista de dominis separada per comes, de adreçes de correu que són permeses per registrtar-se. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis."
|
||||
|
||||
#: ../../mod/admin.php:466
|
||||
#: ../../mod/admin.php:487
|
||||
msgid "Block public"
|
||||
msgstr "Bloqueig públic"
|
||||
|
||||
#: ../../mod/admin.php:466
|
||||
#: ../../mod/admin.php:487
|
||||
msgid ""
|
||||
"Check to block public access to all otherwise public personal pages on this "
|
||||
"site unless you are currently logged in."
|
||||
msgstr "Bloqueja l'accés públic a qualsevol pàgina del lloc fins que t'hagis identificat."
|
||||
|
||||
#: ../../mod/admin.php:467
|
||||
#: ../../mod/admin.php:488
|
||||
msgid "Force publish"
|
||||
msgstr "Forçar publicació"
|
||||
|
||||
#: ../../mod/admin.php:467
|
||||
#: ../../mod/admin.php:488
|
||||
msgid ""
|
||||
"Check to force all profiles on this site to be listed in the site directory."
|
||||
msgstr "Obliga a que tots el perfils en aquest lloc siguin mostrats en el directori del lloc."
|
||||
|
||||
#: ../../mod/admin.php:468
|
||||
#: ../../mod/admin.php:489
|
||||
msgid "Global directory update URL"
|
||||
msgstr "Actualitzar URL del directori global"
|
||||
|
||||
#: ../../mod/admin.php:468
|
||||
#: ../../mod/admin.php:489
|
||||
msgid ""
|
||||
"URL to update the global directory. If this is not set, the global directory"
|
||||
" is completely unavailable to the application."
|
||||
msgstr "URL per actualitzar el directori global. Si no es configura, el directori global serà completament inaccesible per a l'aplicació. "
|
||||
|
||||
#: ../../mod/admin.php:469
|
||||
#: ../../mod/admin.php:490
|
||||
msgid "Allow threaded items"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:469
|
||||
#: ../../mod/admin.php:490
|
||||
msgid "Allow infinite level threading for items on this site."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:470
|
||||
#: ../../mod/admin.php:491
|
||||
msgid "Private posts by default for new users"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:470
|
||||
#: ../../mod/admin.php:491
|
||||
msgid ""
|
||||
"Set default post permissions for all new members to the default privacy "
|
||||
"group rather than public."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:472
|
||||
#: ../../mod/admin.php:493
|
||||
msgid "Block multiple registrations"
|
||||
msgstr "Bloquejar multiples registracions"
|
||||
|
||||
#: ../../mod/admin.php:472
|
||||
#: ../../mod/admin.php:493
|
||||
msgid "Disallow users to register additional accounts for use as pages."
|
||||
msgstr "Inhabilita als usuaris el crear comptes adicionals per a usar com a pàgines."
|
||||
|
||||
#: ../../mod/admin.php:473
|
||||
#: ../../mod/admin.php:494
|
||||
msgid "OpenID support"
|
||||
msgstr "Suport per a OpenID"
|
||||
|
||||
#: ../../mod/admin.php:473
|
||||
#: ../../mod/admin.php:494
|
||||
msgid "OpenID support for registration and logins."
|
||||
msgstr "Suport per a registre i validació a OpenID."
|
||||
|
||||
#: ../../mod/admin.php:474
|
||||
#: ../../mod/admin.php:495
|
||||
msgid "Fullname check"
|
||||
msgstr "Comprobació de nom complet"
|
||||
|
||||
#: ../../mod/admin.php:474
|
||||
#: ../../mod/admin.php:495
|
||||
msgid ""
|
||||
"Force users to register with a space between firstname and lastname in Full "
|
||||
"name, as an antispam measure"
|
||||
msgstr "Obliga els usuaris a col·locar un espai en blanc entre nom i cognoms, com a mesura antispam"
|
||||
|
||||
#: ../../mod/admin.php:475
|
||||
#: ../../mod/admin.php:496
|
||||
msgid "UTF-8 Regular expressions"
|
||||
msgstr "expresions regulars UTF-8"
|
||||
|
||||
#: ../../mod/admin.php:475
|
||||
#: ../../mod/admin.php:496
|
||||
msgid "Use PHP UTF8 regular expressions"
|
||||
msgstr "Empri expresions regulars de PHP amb format UTF8"
|
||||
|
||||
#: ../../mod/admin.php:476
|
||||
#: ../../mod/admin.php:497
|
||||
msgid "Show Community Page"
|
||||
msgstr "Mostra la Pàgina de Comunitat"
|
||||
|
||||
#: ../../mod/admin.php:476
|
||||
#: ../../mod/admin.php:497
|
||||
msgid ""
|
||||
"Display a Community page showing all recent public postings on this site."
|
||||
msgstr "Mostra a la pàgina de comunitat tots els missatges públics recents, d'aquest lloc."
|
||||
|
||||
#: ../../mod/admin.php:477
|
||||
#: ../../mod/admin.php:498
|
||||
msgid "Enable OStatus support"
|
||||
msgstr "Activa el suport per a OStatus"
|
||||
|
||||
#: ../../mod/admin.php:477
|
||||
#: ../../mod/admin.php:498
|
||||
msgid ""
|
||||
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
|
||||
"communications in OStatus are public, so privacy warnings will be "
|
||||
"occasionally displayed."
|
||||
msgstr "Proveeix de compatibilitat integrada amb OStatus (identi.ca, status.net, etc). Totes les comunicacions a OStatus són públiques amb el que ocasionalment pots veure advertències."
|
||||
|
||||
#: ../../mod/admin.php:478
|
||||
#: ../../mod/admin.php:499
|
||||
msgid "Enable Diaspora support"
|
||||
msgstr "Habilitar suport per Diaspora"
|
||||
|
||||
#: ../../mod/admin.php:478
|
||||
#: ../../mod/admin.php:499
|
||||
msgid "Provide built-in Diaspora network compatibility."
|
||||
msgstr "Proveeix compatibilitat integrada amb la xarxa Diaspora"
|
||||
|
||||
#: ../../mod/admin.php:479
|
||||
#: ../../mod/admin.php:500
|
||||
msgid "Only allow Friendica contacts"
|
||||
msgstr "Només permetre contactes de Friendica"
|
||||
|
||||
#: ../../mod/admin.php:479
|
||||
#: ../../mod/admin.php:500
|
||||
msgid ""
|
||||
"All contacts must use Friendica protocols. All other built-in communication "
|
||||
"protocols disabled."
|
||||
msgstr "Tots els contactes "
|
||||
|
||||
#: ../../mod/admin.php:480
|
||||
#: ../../mod/admin.php:501
|
||||
msgid "Verify SSL"
|
||||
msgstr "Verificar SSL"
|
||||
|
||||
#: ../../mod/admin.php:480
|
||||
#: ../../mod/admin.php:501
|
||||
msgid ""
|
||||
"If you wish, you can turn on strict certificate checking. This will mean you"
|
||||
" cannot connect (at all) to self-signed SSL sites."
|
||||
msgstr "Si ho vols, pots comprovar el certificat estrictament. Això farà que no puguis connectar (de cap manera) amb llocs amb certificats SSL autosignats."
|
||||
|
||||
#: ../../mod/admin.php:481
|
||||
#: ../../mod/admin.php:502
|
||||
msgid "Proxy user"
|
||||
msgstr "proxy d'usuari"
|
||||
|
||||
#: ../../mod/admin.php:482
|
||||
#: ../../mod/admin.php:503
|
||||
msgid "Proxy URL"
|
||||
msgstr "URL del proxy"
|
||||
|
||||
#: ../../mod/admin.php:483
|
||||
#: ../../mod/admin.php:504
|
||||
msgid "Network timeout"
|
||||
msgstr "Temps excedit a la xarxa"
|
||||
|
||||
#: ../../mod/admin.php:483
|
||||
#: ../../mod/admin.php:504
|
||||
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
||||
msgstr "Valor en segons. Canviat a 0 es sense límits (no recomenat)"
|
||||
|
||||
#: ../../mod/admin.php:484
|
||||
#: ../../mod/admin.php:505
|
||||
msgid "Delivery interval"
|
||||
msgstr "Interval d'entrega"
|
||||
|
||||
#: ../../mod/admin.php:484
|
||||
#: ../../mod/admin.php:505
|
||||
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 "Retardar processos d'entrega, en segon pla, en aquesta quantitat de segons, per reduir la càrrega del sistema . Recomanem : 4-5 per als servidors compartits , 2-3 per a servidors privats virtuals . 0-1 per els grans servidors dedicats."
|
||||
|
||||
#: ../../mod/admin.php:485
|
||||
#: ../../mod/admin.php:506
|
||||
msgid "Poll interval"
|
||||
msgstr "Interval entre sondejos"
|
||||
|
||||
#: ../../mod/admin.php:485
|
||||
#: ../../mod/admin.php:506
|
||||
msgid ""
|
||||
"Delay background polling processes by this many seconds to reduce system "
|
||||
"load. If 0, use delivery interval."
|
||||
msgstr "Endarrerir els processos de sondeig en segon pla durant aquest període, en segons, per tal de reduir la càrrega de treball del sistema, Si s'empra 0, s'utilitza l'interval d'entregues. "
|
||||
|
||||
#: ../../mod/admin.php:486
|
||||
#: ../../mod/admin.php:507
|
||||
msgid "Maximum Load Average"
|
||||
msgstr "Càrrega Màxima Sostinguda"
|
||||
|
||||
#: ../../mod/admin.php:486
|
||||
#: ../../mod/admin.php:507
|
||||
msgid ""
|
||||
"Maximum system load before delivery and poll processes are deferred - "
|
||||
"default 50."
|
||||
msgstr "Càrrega màxima del sistema abans d'apaçar els processos d'entrega i sondeig - predeterminat a 50."
|
||||
|
||||
#: ../../mod/admin.php:503
|
||||
#: ../../mod/admin.php:509
|
||||
msgid "Use MySQL full text engine"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:509
|
||||
msgid ""
|
||||
"Activates the full text engine. Speeds up search - but can only search for "
|
||||
"four and more characters."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:510
|
||||
msgid "Path to item cache"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:511
|
||||
msgid "Cache duration in seconds"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:511
|
||||
msgid ""
|
||||
"How long should the cache files be hold? Default value is 86400 seconds (One"
|
||||
" day)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:512
|
||||
msgid "Path for lock file"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:513
|
||||
msgid "Temp path"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:514
|
||||
msgid "Base path to installation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:532
|
||||
msgid "Update has been marked successful"
|
||||
msgstr "L'actualització ha estat marcada amb èxit"
|
||||
|
||||
#: ../../mod/admin.php:513
|
||||
#: ../../mod/admin.php:542
|
||||
#, php-format
|
||||
msgid "Executing %s failed. Check system logs."
|
||||
msgstr "Ha fracassat l'execució de %s. Comprova el registre del sistema."
|
||||
|
||||
#: ../../mod/admin.php:516
|
||||
#: ../../mod/admin.php:545
|
||||
#, php-format
|
||||
msgid "Update %s was successfully applied."
|
||||
msgstr "L'actualització de %s es va aplicar amb èxit."
|
||||
|
||||
#: ../../mod/admin.php:520
|
||||
#: ../../mod/admin.php:549
|
||||
#, php-format
|
||||
msgid "Update %s did not return a status. Unknown if it succeeded."
|
||||
msgstr "L'actualització de %s no ha retornat el seu estatus. Es desconeix si ha estat amb èxit."
|
||||
|
||||
#: ../../mod/admin.php:523
|
||||
#: ../../mod/admin.php:552
|
||||
#, php-format
|
||||
msgid "Update function %s could not be found."
|
||||
msgstr "L'actualització de la funció %s no es pot trobar."
|
||||
|
||||
#: ../../mod/admin.php:538
|
||||
#: ../../mod/admin.php:567
|
||||
msgid "No failed updates."
|
||||
msgstr "No hi ha actualitzacions fallides."
|
||||
|
||||
#: ../../mod/admin.php:542
|
||||
#: ../../mod/admin.php:571
|
||||
msgid "Failed Updates"
|
||||
msgstr "Actualitzacions Fallides"
|
||||
|
||||
#: ../../mod/admin.php:543
|
||||
#: ../../mod/admin.php:572
|
||||
msgid ""
|
||||
"This does not include updates prior to 1139, which did not return a status."
|
||||
msgstr "Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l'estatus."
|
||||
|
||||
#: ../../mod/admin.php:544
|
||||
#: ../../mod/admin.php:573
|
||||
msgid "Mark success (if update was manually applied)"
|
||||
msgstr "Marcat am èxit (si l'actualització es va fer manualment)"
|
||||
|
||||
#: ../../mod/admin.php:545
|
||||
#: ../../mod/admin.php:574
|
||||
msgid "Attempt to execute this update step automatically"
|
||||
msgstr "Intentant executar aquest pas d'actualització automàticament"
|
||||
|
||||
#: ../../mod/admin.php:570
|
||||
#: ../../mod/admin.php:599
|
||||
#, php-format
|
||||
msgid "%s user blocked/unblocked"
|
||||
msgid_plural "%s users blocked/unblocked"
|
||||
msgstr[0] "%s usuari bloquejar/desbloquejar"
|
||||
msgstr[1] "%s usuaris bloquejar/desbloquejar"
|
||||
|
||||
#: ../../mod/admin.php:577
|
||||
#: ../../mod/admin.php:606
|
||||
#, php-format
|
||||
msgid "%s user deleted"
|
||||
msgid_plural "%s users deleted"
|
||||
msgstr[0] "%s usuari esborrat"
|
||||
msgstr[1] "%s usuaris esborrats"
|
||||
|
||||
#: ../../mod/admin.php:616
|
||||
#: ../../mod/admin.php:645
|
||||
#, php-format
|
||||
msgid "User '%s' deleted"
|
||||
msgstr "Usuari %s' esborrat"
|
||||
|
||||
#: ../../mod/admin.php:624
|
||||
#: ../../mod/admin.php:653
|
||||
#, php-format
|
||||
msgid "User '%s' unblocked"
|
||||
msgstr "Usuari %s' desbloquejat"
|
||||
|
||||
#: ../../mod/admin.php:624
|
||||
#: ../../mod/admin.php:653
|
||||
#, php-format
|
||||
msgid "User '%s' blocked"
|
||||
msgstr "L'usuari '%s' és bloquejat"
|
||||
|
||||
#: ../../mod/admin.php:690
|
||||
#: ../../mod/admin.php:729
|
||||
msgid "select all"
|
||||
msgstr "Seleccionar tot"
|
||||
|
||||
#: ../../mod/admin.php:691
|
||||
#: ../../mod/admin.php:730
|
||||
msgid "User registrations waiting for confirm"
|
||||
msgstr "Registre d'usuari esperant confirmació"
|
||||
|
||||
#: ../../mod/admin.php:692
|
||||
#: ../../mod/admin.php:731
|
||||
msgid "Request date"
|
||||
msgstr "Data de sol·licitud"
|
||||
|
||||
#: ../../mod/admin.php:692 ../../mod/admin.php:702
|
||||
#: ../../mod/admin.php:731 ../../mod/admin.php:741
|
||||
#: ../../include/contact_selectors.php:79
|
||||
#: ../../include/contact_selectors.php:86
|
||||
msgid "Email"
|
||||
msgstr "Correu"
|
||||
|
||||
#: ../../mod/admin.php:693
|
||||
#: ../../mod/admin.php:732
|
||||
msgid "No registrations."
|
||||
msgstr "Sense registres."
|
||||
|
||||
#: ../../mod/admin.php:695
|
||||
#: ../../mod/admin.php:734
|
||||
msgid "Deny"
|
||||
msgstr "Denegar"
|
||||
|
||||
#: ../../mod/admin.php:699
|
||||
#: ../../mod/admin.php:738
|
||||
msgid "Site admin"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:702
|
||||
#: ../../mod/admin.php:741
|
||||
msgid "Register date"
|
||||
msgstr "Data de registre"
|
||||
|
||||
#: ../../mod/admin.php:702
|
||||
#: ../../mod/admin.php:741
|
||||
msgid "Last login"
|
||||
msgstr "Últim accés"
|
||||
|
||||
#: ../../mod/admin.php:702
|
||||
#: ../../mod/admin.php:741
|
||||
msgid "Last item"
|
||||
msgstr "Últim element"
|
||||
|
||||
#: ../../mod/admin.php:702
|
||||
#: ../../mod/admin.php:741
|
||||
msgid "Account"
|
||||
msgstr "Compte"
|
||||
|
||||
#: ../../mod/admin.php:704
|
||||
#: ../../mod/admin.php:743
|
||||
msgid ""
|
||||
"Selected users will be deleted!\\n\\nEverything these users had posted on "
|
||||
"this site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr "Els usuaris seleccionats seran esborrats!\\n\\nqualsevol cosa que aquests usuaris hagin publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?"
|
||||
|
||||
#: ../../mod/admin.php:705
|
||||
#: ../../mod/admin.php:744
|
||||
msgid ""
|
||||
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
|
||||
"site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr "L'usuari {0} s'eliminarà!\\n\\nQualsevol cosa que aquest usuari hagi publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?"
|
||||
|
||||
#: ../../mod/admin.php:746
|
||||
#: ../../mod/admin.php:785
|
||||
#, php-format
|
||||
msgid "Plugin %s disabled."
|
||||
msgstr "Plugin %s deshabilitat."
|
||||
|
||||
#: ../../mod/admin.php:750
|
||||
#: ../../mod/admin.php:789
|
||||
#, php-format
|
||||
msgid "Plugin %s enabled."
|
||||
msgstr "Plugin %s habilitat."
|
||||
|
||||
#: ../../mod/admin.php:760 ../../mod/admin.php:958
|
||||
#: ../../mod/admin.php:799 ../../mod/admin.php:1001
|
||||
msgid "Disable"
|
||||
msgstr "Deshabilitar"
|
||||
|
||||
#: ../../mod/admin.php:762 ../../mod/admin.php:960
|
||||
#: ../../mod/admin.php:801 ../../mod/admin.php:1003
|
||||
msgid "Enable"
|
||||
msgstr "Habilitar"
|
||||
|
||||
#: ../../mod/admin.php:784 ../../mod/admin.php:989
|
||||
#: ../../mod/admin.php:823 ../../mod/admin.php:1032
|
||||
msgid "Toggle"
|
||||
msgstr "Canviar"
|
||||
|
||||
#: ../../mod/admin.php:792 ../../mod/admin.php:999
|
||||
#: ../../mod/admin.php:831 ../../mod/admin.php:1042
|
||||
msgid "Author: "
|
||||
msgstr "Autor:"
|
||||
|
||||
#: ../../mod/admin.php:793 ../../mod/admin.php:1000
|
||||
#: ../../mod/admin.php:832 ../../mod/admin.php:1043
|
||||
msgid "Maintainer: "
|
||||
msgstr "Encarregat:"
|
||||
msgstr "Responsable:"
|
||||
|
||||
#: ../../mod/admin.php:922
|
||||
#: ../../mod/admin.php:961
|
||||
msgid "No themes found."
|
||||
msgstr "No s'ha trobat temes."
|
||||
|
||||
#: ../../mod/admin.php:981
|
||||
#: ../../mod/admin.php:1024
|
||||
msgid "Screenshot"
|
||||
msgstr "Captura de pantalla"
|
||||
|
||||
#: ../../mod/admin.php:1029
|
||||
#: ../../mod/admin.php:1072
|
||||
msgid "[Experimental]"
|
||||
msgstr "[Experimental]"
|
||||
|
||||
#: ../../mod/admin.php:1030
|
||||
#: ../../mod/admin.php:1073
|
||||
msgid "[Unsupported]"
|
||||
msgstr "[No soportat]"
|
||||
|
||||
#: ../../mod/admin.php:1057
|
||||
#: ../../mod/admin.php:1100
|
||||
msgid "Log settings updated."
|
||||
msgstr "Configuració del registre actualitzada."
|
||||
|
||||
#: ../../mod/admin.php:1113
|
||||
#: ../../mod/admin.php:1156
|
||||
msgid "Clear"
|
||||
msgstr "Netejar"
|
||||
|
||||
#: ../../mod/admin.php:1119
|
||||
#: ../../mod/admin.php:1162
|
||||
msgid "Debugging"
|
||||
msgstr "Esplugar"
|
||||
|
||||
#: ../../mod/admin.php:1120
|
||||
#: ../../mod/admin.php:1163
|
||||
msgid "Log file"
|
||||
msgstr "Arxiu de registre"
|
||||
|
||||
#: ../../mod/admin.php:1120
|
||||
#: ../../mod/admin.php:1163
|
||||
msgid ""
|
||||
"Must be writable by web server. Relative to your Friendica top-level "
|
||||
"directory."
|
||||
msgstr "Ha de tenir permisos d'escriptura pel servidor web. En relació amb el seu directori Friendica de nivell superior."
|
||||
|
||||
#: ../../mod/admin.php:1121
|
||||
#: ../../mod/admin.php:1164
|
||||
msgid "Log level"
|
||||
msgstr "Nivell de transcripció"
|
||||
|
||||
#: ../../mod/admin.php:1171
|
||||
#: ../../mod/admin.php:1214
|
||||
msgid "Close"
|
||||
msgstr "Tancar"
|
||||
|
||||
#: ../../mod/admin.php:1177
|
||||
#: ../../mod/admin.php:1220
|
||||
msgid "FTP Host"
|
||||
msgstr "Amfitrió FTP"
|
||||
|
||||
#: ../../mod/admin.php:1178
|
||||
#: ../../mod/admin.php:1221
|
||||
msgid "FTP Path"
|
||||
msgstr "Direcció FTP"
|
||||
|
||||
#: ../../mod/admin.php:1179
|
||||
#: ../../mod/admin.php:1222
|
||||
msgid "FTP User"
|
||||
msgstr "Usuari FTP"
|
||||
|
||||
#: ../../mod/admin.php:1180
|
||||
#: ../../mod/admin.php:1223
|
||||
msgid "FTP Password"
|
||||
msgstr "Contrasenya FTP"
|
||||
|
||||
#: ../../mod/profile.php:22 ../../boot.php:1074
|
||||
#: ../../mod/profile.php:21 ../../boot.php:1225
|
||||
msgid "Requested profile is not available."
|
||||
msgstr "El perfil sol·licitat no està disponible."
|
||||
|
||||
#: ../../mod/profile.php:152 ../../mod/display.php:77
|
||||
#: ../../mod/profile.php:155 ../../mod/display.php:99
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr "L'accés a aquest perfil ha estat restringit."
|
||||
|
||||
#: ../../mod/profile.php:177
|
||||
#: ../../mod/profile.php:180
|
||||
msgid "Tips for New Members"
|
||||
msgstr "Consells per a nous membres"
|
||||
|
||||
#: ../../mod/ping.php:235
|
||||
#: ../../mod/ping.php:238
|
||||
msgid "{0} wants to be your friend"
|
||||
msgstr "{0} vol ser el teu amic"
|
||||
|
||||
#: ../../mod/ping.php:240
|
||||
#: ../../mod/ping.php:243
|
||||
msgid "{0} sent you a message"
|
||||
msgstr "{0} t'ha enviat un missatge de"
|
||||
|
||||
#: ../../mod/ping.php:245
|
||||
#: ../../mod/ping.php:248
|
||||
msgid "{0} requested registration"
|
||||
msgstr "{0} solicituts de registre"
|
||||
|
||||
#: ../../mod/ping.php:251
|
||||
#: ../../mod/ping.php:254
|
||||
#, php-format
|
||||
msgid "{0} commented %s's post"
|
||||
msgstr "{0} va comentar l'enviament de %s"
|
||||
|
||||
#: ../../mod/ping.php:256
|
||||
#: ../../mod/ping.php:259
|
||||
#, php-format
|
||||
msgid "{0} liked %s's post"
|
||||
msgstr "A {0} l'ha agradat l'enviament de %s"
|
||||
|
||||
#: ../../mod/ping.php:261
|
||||
#: ../../mod/ping.php:264
|
||||
#, php-format
|
||||
msgid "{0} disliked %s's post"
|
||||
msgstr "A {0} no l'ha agradat l'enviament de %s"
|
||||
|
||||
#: ../../mod/ping.php:266
|
||||
#: ../../mod/ping.php:269
|
||||
#, php-format
|
||||
msgid "{0} is now friends with %s"
|
||||
msgstr "{0} ara és amic de %s"
|
||||
|
||||
#: ../../mod/ping.php:271
|
||||
#: ../../mod/ping.php:274
|
||||
msgid "{0} posted"
|
||||
msgstr "{0} publicat"
|
||||
|
||||
#: ../../mod/ping.php:276
|
||||
#: ../../mod/ping.php:279
|
||||
#, php-format
|
||||
msgid "{0} tagged %s's post with #%s"
|
||||
msgstr "{0} va etiquetar la publicació de %s com #%s"
|
||||
|
||||
#: ../../mod/ping.php:282
|
||||
#: ../../mod/ping.php:285
|
||||
msgid "{0} mentioned you in a post"
|
||||
msgstr "{0} et menciona en un missatge"
|
||||
|
||||
#: ../../mod/nogroup.php:58
|
||||
#: ../../mod/nogroup.php:59
|
||||
msgid "Contacts who are not members of a group"
|
||||
msgstr "Contactes que no pertanyen a cap grup"
|
||||
|
||||
|
|
@ -4081,8 +4399,8 @@ msgid ""
|
|||
"Account not found and OpenID registration is not permitted on this site."
|
||||
msgstr "Compte no trobat i el registrar-se amb OpenID no està permès en aquest lloc."
|
||||
|
||||
#: ../../mod/openid.php:93 ../../include/auth.php:98
|
||||
#: ../../include/auth.php:161
|
||||
#: ../../mod/openid.php:93 ../../include/auth.php:112
|
||||
#: ../../include/auth.php:175
|
||||
msgid "Login failed."
|
||||
msgstr "Error d'accés."
|
||||
|
||||
|
|
@ -4098,11 +4416,16 @@ msgstr "Amics Comuns"
|
|||
msgid "No contacts in common."
|
||||
msgstr "Sense contactes en comú."
|
||||
|
||||
#: ../../mod/share.php:28
|
||||
#: ../../mod/subthread.php:103
|
||||
#, php-format
|
||||
msgid "%1$s is following %2$s's %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/share.php:44
|
||||
msgid "link"
|
||||
msgstr "enllaç"
|
||||
|
||||
#: ../../mod/display.php:138
|
||||
#: ../../mod/display.php:177
|
||||
msgid "Item has been removed."
|
||||
msgstr "El element ha estat esborrat."
|
||||
|
||||
|
|
@ -4114,328 +4437,335 @@ msgstr "Aplicacions"
|
|||
msgid "No installed applications."
|
||||
msgstr "Aplicacions no instal·lades."
|
||||
|
||||
#: ../../mod/search.php:85 ../../include/text.php:678
|
||||
#: ../../include/text.php:679 ../../include/nav.php:91
|
||||
#: ../../mod/search.php:99 ../../include/text.php:738
|
||||
#: ../../include/text.php:739 ../../include/nav.php:118
|
||||
msgid "Search"
|
||||
msgstr "Cercar"
|
||||
|
||||
#: ../../mod/profiles.php:21 ../../mod/profiles.php:423
|
||||
#: ../../mod/profiles.php:537 ../../mod/dfrn_confirm.php:62
|
||||
#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
|
||||
#: ../../mod/profiles.php:160 ../../mod/profiles.php:579
|
||||
#: ../../mod/dfrn_confirm.php:62
|
||||
msgid "Profile not found."
|
||||
msgstr "Perfil no trobat."
|
||||
|
||||
#: ../../mod/profiles.php:31
|
||||
#: ../../mod/profiles.php:37
|
||||
msgid "Profile deleted."
|
||||
msgstr "Perfil esborrat."
|
||||
|
||||
#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
|
||||
msgid "Profile-"
|
||||
msgstr "Perfil-"
|
||||
|
||||
#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
|
||||
msgid "New profile created."
|
||||
msgstr "Nou perfil creat."
|
||||
|
||||
#: ../../mod/profiles.php:95
|
||||
msgid "Profile unavailable to clone."
|
||||
msgstr "No es pot clonar el perfil."
|
||||
|
||||
#: ../../mod/profiles.php:170
|
||||
msgid "Profile Name is required."
|
||||
msgstr "Nom de perfil requerit."
|
||||
|
||||
#: ../../mod/profiles.php:160
|
||||
#: ../../mod/profiles.php:317
|
||||
msgid "Marital Status"
|
||||
msgstr "Estatus Marital"
|
||||
|
||||
#: ../../mod/profiles.php:164
|
||||
#: ../../mod/profiles.php:321
|
||||
msgid "Romantic Partner"
|
||||
msgstr "Soci Romàntic"
|
||||
|
||||
#: ../../mod/profiles.php:168
|
||||
#: ../../mod/profiles.php:325
|
||||
msgid "Likes"
|
||||
msgstr "Agrada"
|
||||
|
||||
#: ../../mod/profiles.php:172
|
||||
#: ../../mod/profiles.php:329
|
||||
msgid "Dislikes"
|
||||
msgstr "No agrada"
|
||||
|
||||
#: ../../mod/profiles.php:176
|
||||
#: ../../mod/profiles.php:333
|
||||
msgid "Work/Employment"
|
||||
msgstr "Treball/Ocupació"
|
||||
|
||||
#: ../../mod/profiles.php:179
|
||||
#: ../../mod/profiles.php:336
|
||||
msgid "Religion"
|
||||
msgstr "Religió"
|
||||
|
||||
#: ../../mod/profiles.php:183
|
||||
#: ../../mod/profiles.php:340
|
||||
msgid "Political Views"
|
||||
msgstr "Idees Polítiques"
|
||||
|
||||
#: ../../mod/profiles.php:187
|
||||
#: ../../mod/profiles.php:344
|
||||
msgid "Gender"
|
||||
msgstr "Gènere"
|
||||
|
||||
#: ../../mod/profiles.php:191
|
||||
#: ../../mod/profiles.php:348
|
||||
msgid "Sexual Preference"
|
||||
msgstr "Preferència sexual"
|
||||
|
||||
#: ../../mod/profiles.php:195
|
||||
#: ../../mod/profiles.php:352
|
||||
msgid "Homepage"
|
||||
msgstr "Inici"
|
||||
|
||||
#: ../../mod/profiles.php:199
|
||||
#: ../../mod/profiles.php:356
|
||||
msgid "Interests"
|
||||
msgstr "Interesos"
|
||||
|
||||
#: ../../mod/profiles.php:203
|
||||
#: ../../mod/profiles.php:360
|
||||
msgid "Address"
|
||||
msgstr "Adreça"
|
||||
|
||||
#: ../../mod/profiles.php:210 ../../addon/dav/common/wdcal_edit.inc.php:183
|
||||
#: ../../mod/profiles.php:367 ../../addon/dav/common/wdcal_edit.inc.php:183
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
|
||||
msgid "Location"
|
||||
msgstr "Ubicació"
|
||||
|
||||
#: ../../mod/profiles.php:293
|
||||
#: ../../mod/profiles.php:450
|
||||
msgid "Profile updated."
|
||||
msgstr "Perfil actualitzat."
|
||||
|
||||
#: ../../mod/profiles.php:360
|
||||
#: ../../mod/profiles.php:517
|
||||
msgid " and "
|
||||
msgstr " i "
|
||||
|
||||
#: ../../mod/profiles.php:368
|
||||
#: ../../mod/profiles.php:525
|
||||
msgid "public profile"
|
||||
msgstr "perfil públic"
|
||||
|
||||
#: ../../mod/profiles.php:371
|
||||
#: ../../mod/profiles.php:528
|
||||
#, php-format
|
||||
msgid "%1$s changed %2$s to “%3$s”"
|
||||
msgstr "%1$s s'ha canviat de %2$s a “%3$s”"
|
||||
|
||||
#: ../../mod/profiles.php:372
|
||||
#: ../../mod/profiles.php:529
|
||||
#, php-format
|
||||
msgid " - Visit %1$s's %2$s"
|
||||
msgstr " - Visita %1$s de %2$s"
|
||||
|
||||
#: ../../mod/profiles.php:375
|
||||
#: ../../mod/profiles.php:532
|
||||
#, php-format
|
||||
msgid "%1$s has an updated %2$s, changing %3$s."
|
||||
msgstr "%1$s te una actualització %2$s, canviant %3$s."
|
||||
|
||||
#: ../../mod/profiles.php:442
|
||||
msgid "Profile deleted."
|
||||
msgstr "Perfil esborrat."
|
||||
|
||||
#: ../../mod/profiles.php:460 ../../mod/profiles.php:494
|
||||
msgid "Profile-"
|
||||
msgstr "Perfil-"
|
||||
|
||||
#: ../../mod/profiles.php:479 ../../mod/profiles.php:521
|
||||
msgid "New profile created."
|
||||
msgstr "Nou perfil creat."
|
||||
|
||||
#: ../../mod/profiles.php:500
|
||||
msgid "Profile unavailable to clone."
|
||||
msgstr "No es pot clonar el perfil."
|
||||
|
||||
#: ../../mod/profiles.php:562
|
||||
#: ../../mod/profiles.php:605
|
||||
msgid "Hide your contact/friend list from viewers of this profile?"
|
||||
msgstr "Amaga la llista de contactes/amics en la vista d'aquest perfil?"
|
||||
|
||||
#: ../../mod/profiles.php:582
|
||||
#: ../../mod/profiles.php:625
|
||||
msgid "Edit Profile Details"
|
||||
msgstr "Editor de Detalls del Perfil"
|
||||
|
||||
#: ../../mod/profiles.php:584
|
||||
#: ../../mod/profiles.php:627
|
||||
msgid "Change Profile Photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:628
|
||||
msgid "View this profile"
|
||||
msgstr "Veure aquest perfil"
|
||||
|
||||
#: ../../mod/profiles.php:585
|
||||
#: ../../mod/profiles.php:629
|
||||
msgid "Create a new profile using these settings"
|
||||
msgstr "Crear un nou perfil amb aquests ajustos"
|
||||
|
||||
#: ../../mod/profiles.php:586
|
||||
#: ../../mod/profiles.php:630
|
||||
msgid "Clone this profile"
|
||||
msgstr "Clonar aquest perfil"
|
||||
|
||||
#: ../../mod/profiles.php:587
|
||||
#: ../../mod/profiles.php:631
|
||||
msgid "Delete this profile"
|
||||
msgstr "Esborrar aquest perfil"
|
||||
|
||||
#: ../../mod/profiles.php:588
|
||||
#: ../../mod/profiles.php:632
|
||||
msgid "Profile Name:"
|
||||
msgstr "Nom de Perfil:"
|
||||
|
||||
#: ../../mod/profiles.php:589
|
||||
#: ../../mod/profiles.php:633
|
||||
msgid "Your Full Name:"
|
||||
msgstr "El Teu Nom Complet."
|
||||
|
||||
#: ../../mod/profiles.php:590
|
||||
#: ../../mod/profiles.php:634
|
||||
msgid "Title/Description:"
|
||||
msgstr "Títol/Descripció:"
|
||||
|
||||
#: ../../mod/profiles.php:591
|
||||
#: ../../mod/profiles.php:635
|
||||
msgid "Your Gender:"
|
||||
msgstr "Gènere:"
|
||||
|
||||
#: ../../mod/profiles.php:592
|
||||
#: ../../mod/profiles.php:636
|
||||
#, php-format
|
||||
msgid "Birthday (%s):"
|
||||
msgstr "Aniversari (%s)"
|
||||
|
||||
#: ../../mod/profiles.php:593
|
||||
#: ../../mod/profiles.php:637
|
||||
msgid "Street Address:"
|
||||
msgstr "Direcció:"
|
||||
|
||||
#: ../../mod/profiles.php:594
|
||||
#: ../../mod/profiles.php:638
|
||||
msgid "Locality/City:"
|
||||
msgstr "Localitat/Ciutat:"
|
||||
|
||||
#: ../../mod/profiles.php:595
|
||||
#: ../../mod/profiles.php:639
|
||||
msgid "Postal/Zip Code:"
|
||||
msgstr "Codi Postal:"
|
||||
|
||||
#: ../../mod/profiles.php:596
|
||||
#: ../../mod/profiles.php:640
|
||||
msgid "Country:"
|
||||
msgstr "País"
|
||||
|
||||
#: ../../mod/profiles.php:597
|
||||
#: ../../mod/profiles.php:641
|
||||
msgid "Region/State:"
|
||||
msgstr "Regió/Estat:"
|
||||
|
||||
#: ../../mod/profiles.php:598
|
||||
#: ../../mod/profiles.php:642
|
||||
msgid "<span class=\"heart\">♥</span> Marital Status:"
|
||||
msgstr "<span class=\"heart\">♥</span> Estat Civil:"
|
||||
|
||||
#: ../../mod/profiles.php:599
|
||||
#: ../../mod/profiles.php:643
|
||||
msgid "Who: (if applicable)"
|
||||
msgstr "Qui? (si és aplicable)"
|
||||
|
||||
#: ../../mod/profiles.php:600
|
||||
#: ../../mod/profiles.php:644
|
||||
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
|
||||
msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
|
||||
|
||||
#: ../../mod/profiles.php:601
|
||||
#: ../../mod/profiles.php:645
|
||||
msgid "Since [date]:"
|
||||
msgstr "Des de [data]"
|
||||
|
||||
#: ../../mod/profiles.php:602 ../../include/profile_advanced.php:46
|
||||
#: ../../mod/profiles.php:646 ../../include/profile_advanced.php:46
|
||||
msgid "Sexual Preference:"
|
||||
msgstr "Preferència Sexual:"
|
||||
|
||||
#: ../../mod/profiles.php:603
|
||||
#: ../../mod/profiles.php:647
|
||||
msgid "Homepage URL:"
|
||||
msgstr "Pàgina web URL:"
|
||||
|
||||
#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:50
|
||||
#: ../../mod/profiles.php:648 ../../include/profile_advanced.php:50
|
||||
msgid "Hometown:"
|
||||
msgstr "Lloc de residència:"
|
||||
|
||||
#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:54
|
||||
#: ../../mod/profiles.php:649 ../../include/profile_advanced.php:54
|
||||
msgid "Political Views:"
|
||||
msgstr "Idees Polítiques:"
|
||||
|
||||
#: ../../mod/profiles.php:606
|
||||
#: ../../mod/profiles.php:650
|
||||
msgid "Religious Views:"
|
||||
msgstr "Creencies Religioses:"
|
||||
|
||||
#: ../../mod/profiles.php:607
|
||||
#: ../../mod/profiles.php:651
|
||||
msgid "Public Keywords:"
|
||||
msgstr "Paraules Clau Públiques"
|
||||
|
||||
#: ../../mod/profiles.php:608
|
||||
#: ../../mod/profiles.php:652
|
||||
msgid "Private Keywords:"
|
||||
msgstr "Paraules Clau Privades:"
|
||||
|
||||
#: ../../mod/profiles.php:609 ../../include/profile_advanced.php:62
|
||||
#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:62
|
||||
msgid "Likes:"
|
||||
msgstr "Agrada:"
|
||||
|
||||
#: ../../mod/profiles.php:610 ../../include/profile_advanced.php:64
|
||||
#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:64
|
||||
msgid "Dislikes:"
|
||||
msgstr "No Agrada"
|
||||
|
||||
#: ../../mod/profiles.php:611
|
||||
#: ../../mod/profiles.php:655
|
||||
msgid "Example: fishing photography software"
|
||||
msgstr "Exemple: pesca fotografia programari"
|
||||
|
||||
#: ../../mod/profiles.php:612
|
||||
#: ../../mod/profiles.php:656
|
||||
msgid "(Used for suggesting potential friends, can be seen by others)"
|
||||
msgstr "(Emprat per suggerir potencials amics, Altres poden veure-ho)"
|
||||
|
||||
#: ../../mod/profiles.php:613
|
||||
#: ../../mod/profiles.php:657
|
||||
msgid "(Used for searching profiles, never shown to others)"
|
||||
msgstr "(Emprat durant la cerca de perfils, mai mostrat a ningú)"
|
||||
|
||||
#: ../../mod/profiles.php:614
|
||||
#: ../../mod/profiles.php:658
|
||||
msgid "Tell us about yourself..."
|
||||
msgstr "Parla'ns de tú....."
|
||||
|
||||
#: ../../mod/profiles.php:615
|
||||
#: ../../mod/profiles.php:659
|
||||
msgid "Hobbies/Interests"
|
||||
msgstr "Aficions/Interessos"
|
||||
|
||||
#: ../../mod/profiles.php:616
|
||||
#: ../../mod/profiles.php:660
|
||||
msgid "Contact information and Social Networks"
|
||||
msgstr "Informació de contacte i Xarxes Socials"
|
||||
|
||||
#: ../../mod/profiles.php:617
|
||||
#: ../../mod/profiles.php:661
|
||||
msgid "Musical interests"
|
||||
msgstr "Gustos musicals"
|
||||
|
||||
#: ../../mod/profiles.php:618
|
||||
#: ../../mod/profiles.php:662
|
||||
msgid "Books, literature"
|
||||
msgstr "Llibres, Literatura"
|
||||
|
||||
#: ../../mod/profiles.php:619
|
||||
#: ../../mod/profiles.php:663
|
||||
msgid "Television"
|
||||
msgstr "Televisió"
|
||||
|
||||
#: ../../mod/profiles.php:620
|
||||
#: ../../mod/profiles.php:664
|
||||
msgid "Film/dance/culture/entertainment"
|
||||
msgstr "Cinema/ball/cultura/entreteniments"
|
||||
|
||||
#: ../../mod/profiles.php:621
|
||||
#: ../../mod/profiles.php:665
|
||||
msgid "Love/romance"
|
||||
msgstr "Amor/sentiments"
|
||||
|
||||
#: ../../mod/profiles.php:622
|
||||
#: ../../mod/profiles.php:666
|
||||
msgid "Work/employment"
|
||||
msgstr "Treball/ocupació"
|
||||
|
||||
#: ../../mod/profiles.php:623
|
||||
#: ../../mod/profiles.php:667
|
||||
msgid "School/education"
|
||||
msgstr "Ensenyament/estudis"
|
||||
|
||||
#: ../../mod/profiles.php:628
|
||||
#: ../../mod/profiles.php:672
|
||||
msgid ""
|
||||
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
|
||||
"be visible to anybody using the internet."
|
||||
msgstr "Aquest és el teu perfil <strong>públic</strong>.<br />El qual <strong>pot</strong> ser visible per qualsevol qui faci servir Internet."
|
||||
|
||||
#: ../../mod/profiles.php:638 ../../mod/directory.php:111
|
||||
#: ../../mod/profiles.php:682 ../../mod/directory.php:111
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:133
|
||||
msgid "Age: "
|
||||
msgstr "Edat:"
|
||||
|
||||
#: ../../mod/profiles.php:677
|
||||
#: ../../mod/profiles.php:721
|
||||
msgid "Edit/Manage Profiles"
|
||||
msgstr "Editar/Gestionar Perfils"
|
||||
|
||||
#: ../../mod/profiles.php:678 ../../boot.php:1192
|
||||
#: ../../mod/profiles.php:722 ../../boot.php:1345
|
||||
msgid "Change profile photo"
|
||||
msgstr "Canviar la foto del perfil"
|
||||
|
||||
#: ../../mod/profiles.php:679 ../../boot.php:1193
|
||||
#: ../../mod/profiles.php:723 ../../boot.php:1346
|
||||
msgid "Create New Profile"
|
||||
msgstr "Crear un Nou Perfil"
|
||||
|
||||
#: ../../mod/profiles.php:690 ../../boot.php:1203
|
||||
#: ../../mod/profiles.php:734 ../../boot.php:1356
|
||||
msgid "Profile Image"
|
||||
msgstr "Imatge del Perfil"
|
||||
|
||||
#: ../../mod/profiles.php:692 ../../boot.php:1206
|
||||
#: ../../mod/profiles.php:736 ../../boot.php:1359
|
||||
msgid "visible to everybody"
|
||||
msgstr "Visible per tothom"
|
||||
|
||||
#: ../../mod/profiles.php:693 ../../boot.php:1207
|
||||
#: ../../mod/profiles.php:737 ../../boot.php:1360
|
||||
msgid "Edit visibility"
|
||||
msgstr "Editar visibilitat"
|
||||
|
||||
#: ../../mod/filer.php:29 ../../include/conversation.php:1209
|
||||
#: ../../include/conversation.php:1226
|
||||
#: ../../mod/filer.php:30 ../../include/conversation.php:944
|
||||
#: ../../include/conversation.php:962
|
||||
msgid "Save to Folder:"
|
||||
msgstr "Guardar a la Carpeta:"
|
||||
|
||||
#: ../../mod/filer.php:29
|
||||
#: ../../mod/filer.php:30
|
||||
msgid "- select -"
|
||||
msgstr "- seleccionar -"
|
||||
|
||||
#: ../../mod/tagger.php:95 ../../include/conversation.php:265
|
||||
#: ../../mod/tagger.php:95 ../../include/conversation.php:266
|
||||
#, php-format
|
||||
msgid "%1$s tagged %2$s's %3$s with %4$s"
|
||||
msgstr "%1$s etiquetats %2$s %3$s amb %4$s"
|
||||
|
|
@ -4444,7 +4774,7 @@ msgstr "%1$s etiquetats %2$s %3$s amb %4$s"
|
|||
msgid "No potential page delegates located."
|
||||
msgstr "No es troben pàgines potencialment delegades."
|
||||
|
||||
#: ../../mod/delegate.php:121
|
||||
#: ../../mod/delegate.php:121 ../../include/nav.php:165
|
||||
msgid "Delegate Page Management"
|
||||
msgstr "Gestió de les Pàgines Delegades"
|
||||
|
||||
|
|
@ -4488,117 +4818,141 @@ msgid "Source input: "
|
|||
msgstr "Entrada de Codi:"
|
||||
|
||||
#: ../../mod/babel.php:35
|
||||
msgid "bb2html (raw HTML): "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/babel.php:39
|
||||
msgid "bb2html: "
|
||||
msgstr "bb2html: "
|
||||
|
||||
#: ../../mod/babel.php:39
|
||||
#: ../../mod/babel.php:43
|
||||
msgid "bb2html2bb: "
|
||||
msgstr "bb2html2bb: "
|
||||
|
||||
#: ../../mod/babel.php:43
|
||||
#: ../../mod/babel.php:47
|
||||
msgid "bb2md: "
|
||||
msgstr "bb2md: "
|
||||
|
||||
#: ../../mod/babel.php:47
|
||||
#: ../../mod/babel.php:51
|
||||
msgid "bb2md2html: "
|
||||
msgstr "bb2md2html: "
|
||||
|
||||
#: ../../mod/babel.php:51
|
||||
#: ../../mod/babel.php:55
|
||||
msgid "bb2dia2bb: "
|
||||
msgstr "bb2dia2bb: "
|
||||
|
||||
#: ../../mod/babel.php:55
|
||||
#: ../../mod/babel.php:59
|
||||
msgid "bb2md2html2bb: "
|
||||
msgstr "bb2md2html2bb: "
|
||||
|
||||
#: ../../mod/babel.php:65
|
||||
#: ../../mod/babel.php:69
|
||||
msgid "Source input (Diaspora format): "
|
||||
msgstr "Font d'entrada (format de Diaspora)"
|
||||
|
||||
#: ../../mod/babel.php:70
|
||||
#: ../../mod/babel.php:74
|
||||
msgid "diaspora2bb: "
|
||||
msgstr "diaspora2bb: "
|
||||
|
||||
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626
|
||||
#: ../../mod/suggest.php:27
|
||||
msgid "Do you really want to delete this suggestion?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520
|
||||
#: ../../include/contact_widgets.php:34
|
||||
msgid "Friend Suggestions"
|
||||
msgstr "Amics Suggerits"
|
||||
|
||||
#: ../../mod/suggest.php:44
|
||||
#: ../../mod/suggest.php:72
|
||||
msgid ""
|
||||
"No suggestions available. If this is a new site, please try again in 24 "
|
||||
"hours."
|
||||
msgstr "Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores."
|
||||
|
||||
#: ../../mod/suggest.php:61
|
||||
#: ../../mod/suggest.php:90
|
||||
msgid "Ignore/Hide"
|
||||
msgstr "Ignorar/Amagar"
|
||||
|
||||
#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624
|
||||
#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71
|
||||
#: ../../view/theme/diabook/theme.php:518
|
||||
msgid "Global Directory"
|
||||
msgstr "Directori Global"
|
||||
|
||||
#: ../../mod/directory.php:57
|
||||
#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79
|
||||
msgid "Find on this site"
|
||||
msgstr "Trobat en aquest lloc"
|
||||
|
||||
#: ../../mod/directory.php:60
|
||||
#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82
|
||||
msgid "Site Directory"
|
||||
msgstr "Directori Local"
|
||||
|
||||
#: ../../mod/directory.php:114
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:136
|
||||
msgid "Gender: "
|
||||
msgstr "Gènere:"
|
||||
|
||||
#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17
|
||||
#: ../../boot.php:1228
|
||||
#: ../../mod/directory.php:136
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:158
|
||||
#: ../../include/profile_advanced.php:17 ../../boot.php:1381
|
||||
msgid "Gender:"
|
||||
msgstr "Gènere:"
|
||||
|
||||
#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37
|
||||
#: ../../boot.php:1231
|
||||
#: ../../mod/directory.php:138
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:160
|
||||
#: ../../include/profile_advanced.php:37 ../../boot.php:1384
|
||||
msgid "Status:"
|
||||
msgstr "Estatus:"
|
||||
|
||||
#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48
|
||||
#: ../../boot.php:1233
|
||||
#: ../../mod/directory.php:140
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:162
|
||||
#: ../../include/profile_advanced.php:48 ../../boot.php:1386
|
||||
msgid "Homepage:"
|
||||
msgstr "Pàgina web:"
|
||||
|
||||
#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
|
||||
#: ../../mod/directory.php:142
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:164
|
||||
#: ../../include/profile_advanced.php:58
|
||||
msgid "About:"
|
||||
msgstr "Acerca de:"
|
||||
|
||||
#: ../../mod/directory.php:180
|
||||
#: ../../mod/directory.php:187
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:201
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr "No hi ha entrades (algunes de les entrades poden estar amagades)."
|
||||
|
||||
#: ../../mod/invite.php:35
|
||||
#: ../../mod/invite.php:27
|
||||
msgid "Total invitation limit exceeded."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:49
|
||||
#, php-format
|
||||
msgid "%s : Not a valid email address."
|
||||
msgstr "%s : No es una adreça de correu vàlida"
|
||||
|
||||
#: ../../mod/invite.php:59
|
||||
#: ../../mod/invite.php:73
|
||||
msgid "Please join us on Friendica"
|
||||
msgstr "Per favor, uneixi's a nosaltres en Friendica"
|
||||
|
||||
#: ../../mod/invite.php:69
|
||||
#: ../../mod/invite.php:84
|
||||
msgid "Invitation limit exceeded. Please contact your site administrator."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:89
|
||||
#, php-format
|
||||
msgid "%s : Message delivery failed."
|
||||
msgstr "%s : Ha fallat l'entrega del missatge."
|
||||
|
||||
#: ../../mod/invite.php:73
|
||||
#: ../../mod/invite.php:93
|
||||
#, php-format
|
||||
msgid "%d message sent."
|
||||
msgid_plural "%d messages sent."
|
||||
msgstr[0] "%d missatge enviat"
|
||||
msgstr[1] "%d missatges enviats."
|
||||
|
||||
#: ../../mod/invite.php:92
|
||||
#: ../../mod/invite.php:112
|
||||
msgid "You have no more invitations available"
|
||||
msgstr "No te més invitacions disponibles"
|
||||
|
||||
#: ../../mod/invite.php:100
|
||||
#: ../../mod/invite.php:120
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Visit %s for a list of public sites that you can join. Friendica members on "
|
||||
|
|
@ -4606,14 +4960,14 @@ msgid ""
|
|||
" other social networks."
|
||||
msgstr "Visita %s per a una llista de llocs públics on unir-te. Els membres de Friendica d'altres llocs poden connectar-se de forma total, així com amb membres de moltes altres xarxes socials."
|
||||
|
||||
#: ../../mod/invite.php:102
|
||||
#: ../../mod/invite.php:122
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To accept this invitation, please visit and register at %s or any other "
|
||||
"public Friendica website."
|
||||
msgstr "Per acceptar aquesta invitació, per favor visita i registra't a %s o en qualsevol altre pàgina web pública Friendica."
|
||||
|
||||
#: ../../mod/invite.php:103
|
||||
#: ../../mod/invite.php:123
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
|
|
@ -4622,36 +4976,36 @@ msgid ""
|
|||
"sites you can join."
|
||||
msgstr "Tots els llocs Friendica estàn interconnectats per crear una web social amb privacitat millorada, controlada i propietat dels seus membres. També poden connectar amb moltes xarxes socials tradicionals. Consulteu %s per a una llista de llocs de Friendica alternatius en que pot inscriure's."
|
||||
|
||||
#: ../../mod/invite.php:106
|
||||
#: ../../mod/invite.php:126
|
||||
msgid ""
|
||||
"Our apologies. This system is not currently configured to connect with other"
|
||||
" public sites or invite members."
|
||||
msgstr "Nostres disculpes. Aquest sistema no està configurat actualment per connectar amb altres llocs públics o convidar als membres."
|
||||
|
||||
#: ../../mod/invite.php:111
|
||||
#: ../../mod/invite.php:132
|
||||
msgid "Send invitations"
|
||||
msgstr "Enviant Invitacions"
|
||||
|
||||
#: ../../mod/invite.php:112
|
||||
#: ../../mod/invite.php:133
|
||||
msgid "Enter email addresses, one per line:"
|
||||
msgstr "Entri adreçes de correu, una per línia:"
|
||||
|
||||
#: ../../mod/invite.php:114
|
||||
#: ../../mod/invite.php:135
|
||||
msgid ""
|
||||
"You are cordially invited to join me and other close friends on Friendica - "
|
||||
"and help us to create a better social web."
|
||||
msgstr "Estàs cordialment convidat a ajuntarte a mi i altres amics propers en Friendica - i ajudar-nos a crear una millor web social."
|
||||
|
||||
#: ../../mod/invite.php:116
|
||||
#: ../../mod/invite.php:137
|
||||
msgid "You will need to supply this invitation code: $invite_code"
|
||||
msgstr "Vostè haurà de proporcionar aquest codi d'invitació: $invite_code"
|
||||
|
||||
#: ../../mod/invite.php:116
|
||||
#: ../../mod/invite.php:137
|
||||
msgid ""
|
||||
"Once you have registered, please connect with me via my profile page at:"
|
||||
msgstr "Un cop registrat, si us plau contactar amb mi a través de la meva pàgina de perfil a:"
|
||||
|
||||
#: ../../mod/invite.php:118
|
||||
#: ../../mod/invite.php:139
|
||||
msgid ""
|
||||
"For more information about the Friendica project and why we feel it is "
|
||||
"important, please visit http://friendica.com"
|
||||
|
|
@ -4692,8 +5046,8 @@ msgstr "La presentació va fallar o va ser revocada."
|
|||
msgid "Unable to set contact photo."
|
||||
msgstr "No es pot canviar la foto de contacte."
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608
|
||||
#: ../../include/conversation.php:171
|
||||
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:621
|
||||
#: ../../include/conversation.php:172
|
||||
#, php-format
|
||||
msgid "%1$s is now friends with %2$s"
|
||||
msgstr "%1$s és ara amic amb %2$s"
|
||||
|
|
@ -4734,109 +5088,133 @@ msgstr "No es pot canviar les seves credencials de contacte en el nostre sistema
|
|||
msgid "Unable to update your contact profile details on our system"
|
||||
msgstr "No es pot actualitzar els detalls del seu perfil de contacte en el nostre sistema"
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:750
|
||||
#: ../../mod/dfrn_confirm.php:751
|
||||
#, php-format
|
||||
msgid "Connection accepted at %s"
|
||||
msgstr "Connexió acceptada en %s"
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:799
|
||||
#: ../../mod/dfrn_confirm.php:800
|
||||
#, php-format
|
||||
msgid "%1$s has joined %2$s"
|
||||
msgstr "%1$s s'ha unit a %2$s"
|
||||
|
||||
#: ../../addon/fromgplus/fromgplus.php:29
|
||||
#: ../../addon/fromgplus/fromgplus.php:33
|
||||
#: ../../addon.old/fromgplus/fromgplus.php:29
|
||||
msgid "Google+ Import Settings"
|
||||
msgstr "Ajustos Google+ Import"
|
||||
|
||||
#: ../../addon/fromgplus/fromgplus.php:32
|
||||
#: ../../addon/fromgplus/fromgplus.php:36
|
||||
#: ../../addon.old/fromgplus/fromgplus.php:32
|
||||
msgid "Enable Google+ Import"
|
||||
msgstr "Habilita Google+ Import"
|
||||
|
||||
#: ../../addon/fromgplus/fromgplus.php:35
|
||||
#: ../../addon/fromgplus/fromgplus.php:39
|
||||
#: ../../addon.old/fromgplus/fromgplus.php:35
|
||||
msgid "Google Account ID"
|
||||
msgstr "ID del compte Google"
|
||||
|
||||
#: ../../addon/fromgplus/fromgplus.php:55
|
||||
#: ../../addon/fromgplus/fromgplus.php:59
|
||||
#: ../../addon.old/fromgplus/fromgplus.php:55
|
||||
msgid "Google+ Import Settings saved."
|
||||
msgstr "Ajustos Google+ Import guardats."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:523
|
||||
#: ../../addon/facebook/facebook.php:525
|
||||
#: ../../addon.old/facebook/facebook.php:523
|
||||
msgid "Facebook disabled"
|
||||
msgstr "Facebook deshabilitat"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:528
|
||||
#: ../../addon/facebook/facebook.php:530
|
||||
#: ../../addon.old/facebook/facebook.php:528
|
||||
msgid "Updating contacts"
|
||||
msgstr "Actualitzant contactes"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192
|
||||
#: ../../addon/facebook/facebook.php:553 ../../addon/fbpost/fbpost.php:203
|
||||
#: ../../addon.old/facebook/facebook.php:551
|
||||
#: ../../addon.old/fbpost/fbpost.php:192
|
||||
msgid "Facebook API key is missing."
|
||||
msgstr "La clau del API de Facebook s'ha perdut."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:558
|
||||
#: ../../addon/facebook/facebook.php:560
|
||||
#: ../../addon.old/facebook/facebook.php:558
|
||||
msgid "Facebook Connect"
|
||||
msgstr "Facebook Connectat"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:564
|
||||
#: ../../addon/facebook/facebook.php:566
|
||||
#: ../../addon.old/facebook/facebook.php:564
|
||||
msgid "Install Facebook connector for this account."
|
||||
msgstr "Instal·lar el connector de Facebook per aquest compte."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:571
|
||||
#: ../../addon/facebook/facebook.php:573
|
||||
#: ../../addon.old/facebook/facebook.php:571
|
||||
msgid "Remove Facebook connector"
|
||||
msgstr "Eliminar el connector de Faceboook"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217
|
||||
#: ../../addon/facebook/facebook.php:578 ../../addon/fbpost/fbpost.php:228
|
||||
#: ../../addon.old/facebook/facebook.php:576
|
||||
#: ../../addon.old/fbpost/fbpost.php:217
|
||||
msgid ""
|
||||
"Re-authenticate [This is necessary whenever your Facebook password is "
|
||||
"changed.]"
|
||||
msgstr "Re-autentificar [Això és necessari cada vegada que la contrasenya de Facebook canvia.]"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224
|
||||
#: ../../addon/facebook/facebook.php:585 ../../addon/fbpost/fbpost.php:235
|
||||
#: ../../addon.old/facebook/facebook.php:583
|
||||
#: ../../addon.old/fbpost/fbpost.php:224
|
||||
msgid "Post to Facebook by default"
|
||||
msgstr "Enviar a Facebook per defecte"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:589
|
||||
#: ../../addon/facebook/facebook.php:591
|
||||
#: ../../addon.old/facebook/facebook.php:589
|
||||
msgid ""
|
||||
"Facebook friend linking has been disabled on this site. The following "
|
||||
"settings will have no effect."
|
||||
msgstr "La vinculació amb amics de Facebook s'ha deshabilitat en aquest lloc. Els ajustos que facis no faran efecte."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:593
|
||||
#: ../../addon/facebook/facebook.php:595
|
||||
#: ../../addon.old/facebook/facebook.php:593
|
||||
msgid ""
|
||||
"Facebook friend linking has been disabled on this site. If you disable it, "
|
||||
"you will be unable to re-enable it."
|
||||
msgstr "La vinculació amb amics de Facebook s'ha deshabilitat en aquest lloc. Si esta deshabilitat, no es pot utilitzar."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:596
|
||||
#: ../../addon/facebook/facebook.php:598
|
||||
#: ../../addon.old/facebook/facebook.php:596
|
||||
msgid "Link all your Facebook friends and conversations on this website"
|
||||
msgstr "Enllaça tots els teus amics i les converses de Facebook en aquest lloc web"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:598
|
||||
#: ../../addon/facebook/facebook.php:600
|
||||
#: ../../addon.old/facebook/facebook.php:598
|
||||
msgid ""
|
||||
"Facebook conversations consist of your <em>profile wall</em> and your friend"
|
||||
" <em>stream</em>."
|
||||
msgstr "Les converses de Facebook consisteixen en el <em>perfil del mur</em> i en el<em> flux </em> del seu amic."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:599
|
||||
#: ../../addon/facebook/facebook.php:601
|
||||
#: ../../addon.old/facebook/facebook.php:599
|
||||
msgid "On this website, your Facebook friend stream is only visible to you."
|
||||
msgstr "En aquesta pàgina web, el flux del seu amic a Facebook només és visible per a vostè."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:600
|
||||
#: ../../addon/facebook/facebook.php:602
|
||||
#: ../../addon.old/facebook/facebook.php:600
|
||||
msgid ""
|
||||
"The following settings determine the privacy of your Facebook profile wall "
|
||||
"on this website."
|
||||
msgstr "Les següents opcions determinen la privacitat del mur del seu perfil de Facebook en aquest lloc web."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:604
|
||||
#: ../../addon/facebook/facebook.php:606
|
||||
#: ../../addon.old/facebook/facebook.php:604
|
||||
msgid ""
|
||||
"On this website your Facebook profile wall conversations will only be "
|
||||
"visible to you"
|
||||
msgstr "En aquesta pàgina web les seves converses al mur del perfil de Facebook només seran visible per a vostè"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:609
|
||||
#: ../../addon/facebook/facebook.php:611
|
||||
#: ../../addon.old/facebook/facebook.php:609
|
||||
msgid "Do not import your Facebook profile wall conversations"
|
||||
msgstr "No importi les seves converses del mur del perfil de Facebook"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:611
|
||||
#: ../../addon/facebook/facebook.php:613
|
||||
#: ../../addon.old/facebook/facebook.php:611
|
||||
msgid ""
|
||||
"If you choose to link conversations and leave both of these boxes unchecked,"
|
||||
" your Facebook profile wall will be merged with your profile wall on this "
|
||||
|
|
@ -4844,116 +5222,166 @@ msgid ""
|
|||
"who may see the conversations."
|
||||
msgstr "Si opta per vincular les converses i deixar ambdues caselles sense marcar, el mur del seu perfil de Facebook es fusionarà amb el mur del seu perfil en aquest lloc web i la seva configuració de privacitat en aquest website serà utilitzada per determinar qui pot veure les converses."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:616
|
||||
#: ../../addon/facebook/facebook.php:618
|
||||
#: ../../addon.old/facebook/facebook.php:616
|
||||
msgid "Comma separated applications to ignore"
|
||||
msgstr "Separats per comes les aplicacions a ignorar"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:700
|
||||
#: ../../addon/facebook/facebook.php:702
|
||||
#: ../../addon.old/facebook/facebook.php:700
|
||||
msgid "Problems with Facebook Real-Time Updates"
|
||||
msgstr "Problemes amb Actualitzacions en Temps Real a Facebook"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:729
|
||||
#: ../../addon/facebook/facebook.php:704
|
||||
#: ../../addon/facebook/facebook.php:1202 ../../addon/fbpost/fbpost.php:821
|
||||
#: ../../addon/public_server/public_server.php:62
|
||||
#: ../../addon/testdrive/testdrive.php:67
|
||||
#: ../../addon.old/facebook/facebook.php:702
|
||||
#: ../../addon.old/facebook/facebook.php:1200
|
||||
#: ../../addon.old/fbpost/fbpost.php:661
|
||||
#: ../../addon.old/public_server/public_server.php:62
|
||||
#: ../../addon.old/testdrive/testdrive.php:67
|
||||
msgid "Administrator"
|
||||
msgstr "Administrador"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:731
|
||||
#: ../../addon.old/facebook/facebook.php:729
|
||||
msgid "Facebook Connector Settings"
|
||||
msgstr "Ajustos del Connector de Facebook"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255
|
||||
#: ../../addon/facebook/facebook.php:746 ../../addon/fbpost/fbpost.php:310
|
||||
#: ../../addon.old/facebook/facebook.php:744
|
||||
#: ../../addon.old/fbpost/fbpost.php:255
|
||||
msgid "Facebook API Key"
|
||||
msgstr "Facebook API Key"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262
|
||||
#: ../../addon/facebook/facebook.php:756 ../../addon/fbpost/fbpost.php:317
|
||||
#: ../../addon.old/facebook/facebook.php:754
|
||||
#: ../../addon.old/fbpost/fbpost.php:262
|
||||
msgid ""
|
||||
"Error: it appears that you have specified the App-ID and -Secret in your "
|
||||
".htconfig.php file. As long as they are specified there, they cannot be set "
|
||||
"using this form.<br><br>"
|
||||
msgstr "Error: Apareix que has especificat el App-ID i el Secret en el arxiu .htconfig.php. Per estar especificat allà, no pot ser canviat utilitzant aquest formulari.<br><br>"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:759
|
||||
#: ../../addon/facebook/facebook.php:761
|
||||
#: ../../addon.old/facebook/facebook.php:759
|
||||
msgid ""
|
||||
"Error: the given API Key seems to be incorrect (the application access token"
|
||||
" could not be retrieved)."
|
||||
msgstr "Error: la API Key facilitada sembla incorrecta (no es va poder recuperar el token d'accés de l'aplicatiu)."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:761
|
||||
#: ../../addon/facebook/facebook.php:763
|
||||
#: ../../addon.old/facebook/facebook.php:761
|
||||
msgid "The given API Key seems to work correctly."
|
||||
msgstr "La API Key facilitada sembla treballar correctament."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:763
|
||||
#: ../../addon/facebook/facebook.php:765
|
||||
#: ../../addon.old/facebook/facebook.php:763
|
||||
msgid ""
|
||||
"The correctness of the API Key could not be detected. Something strange's "
|
||||
"going on."
|
||||
msgstr "La correcció de la API key no pot ser detectada. Quelcom estrany ha succeït."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264
|
||||
#: ../../addon/facebook/facebook.php:768 ../../addon/fbpost/fbpost.php:319
|
||||
#: ../../addon.old/facebook/facebook.php:766
|
||||
#: ../../addon.old/fbpost/fbpost.php:264
|
||||
msgid "App-ID / API-Key"
|
||||
msgstr "App-ID / API-Key"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265
|
||||
#: ../../addon/facebook/facebook.php:769 ../../addon/fbpost/fbpost.php:320
|
||||
#: ../../addon.old/facebook/facebook.php:767
|
||||
#: ../../addon.old/fbpost/fbpost.php:265
|
||||
msgid "Application secret"
|
||||
msgstr "Application secret"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:768
|
||||
#: ../../addon/facebook/facebook.php:770
|
||||
#: ../../addon.old/facebook/facebook.php:768
|
||||
#, php-format
|
||||
msgid "Polling Interval in minutes (minimum %1$s minutes)"
|
||||
msgstr "Interval entre sondejos en minuts (mínim %1s minuts)"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:769
|
||||
#: ../../addon/facebook/facebook.php:771
|
||||
#: ../../addon.old/facebook/facebook.php:769
|
||||
msgid ""
|
||||
"Synchronize comments (no comments on Facebook are missed, at the cost of "
|
||||
"increased system load)"
|
||||
msgstr "Sincronitzar els comentaris (els comentaris a Facebook es perden, a costa de la major càrrega del sistema)"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:773
|
||||
#: ../../addon/facebook/facebook.php:775
|
||||
#: ../../addon.old/facebook/facebook.php:773
|
||||
msgid "Real-Time Updates"
|
||||
msgstr "Actualitzacions en Temps Real"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:777
|
||||
#: ../../addon/facebook/facebook.php:779
|
||||
#: ../../addon.old/facebook/facebook.php:777
|
||||
msgid "Real-Time Updates are activated."
|
||||
msgstr "Actualitzacions en Temps Real està activat."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:778
|
||||
#: ../../addon/facebook/facebook.php:780
|
||||
#: ../../addon.old/facebook/facebook.php:778
|
||||
msgid "Deactivate Real-Time Updates"
|
||||
msgstr "Actualitzacions en Temps Real Desactivat"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:780
|
||||
#: ../../addon/facebook/facebook.php:782
|
||||
#: ../../addon.old/facebook/facebook.php:780
|
||||
msgid "Real-Time Updates not activated."
|
||||
msgstr "Actualitzacions en Temps Real no activat."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:780
|
||||
#: ../../addon/facebook/facebook.php:782
|
||||
#: ../../addon.old/facebook/facebook.php:780
|
||||
msgid "Activate Real-Time Updates"
|
||||
msgstr "Actualitzacions en Temps Real Activat"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282
|
||||
#: ../../addon/facebook/facebook.php:801 ../../addon/fbpost/fbpost.php:337
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:361
|
||||
#: ../../addon.old/facebook/facebook.php:799
|
||||
#: ../../addon.old/fbpost/fbpost.php:282
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:361
|
||||
msgid "The new values have been saved."
|
||||
msgstr "Els nous valors s'han guardat."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301
|
||||
#: ../../addon/facebook/facebook.php:825 ../../addon/fbpost/fbpost.php:356
|
||||
#: ../../addon.old/facebook/facebook.php:823
|
||||
#: ../../addon.old/fbpost/fbpost.php:301
|
||||
msgid "Post to Facebook"
|
||||
msgstr "Enviament a Facebook"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399
|
||||
#: ../../addon/facebook/facebook.php:923 ../../addon/fbpost/fbpost.php:487
|
||||
#: ../../addon.old/facebook/facebook.php:921
|
||||
#: ../../addon.old/fbpost/fbpost.php:399
|
||||
msgid ""
|
||||
"Post to Facebook cancelled because of multi-network access permission "
|
||||
"conflict."
|
||||
msgstr "Enviament a Facebook cancel·lat perque hi ha un conflicte de permisos d'accés multi-xarxa."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610
|
||||
#: ../../addon/facebook/facebook.php:1151 ../../addon/fbpost/fbpost.php:766
|
||||
#: ../../addon.old/facebook/facebook.php:1149
|
||||
#: ../../addon.old/fbpost/fbpost.php:610
|
||||
msgid "View on Friendica"
|
||||
msgstr "Vist en Friendica"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643
|
||||
#: ../../addon/facebook/facebook.php:1184 ../../addon/fbpost/fbpost.php:803
|
||||
#: ../../addon.old/facebook/facebook.php:1182
|
||||
#: ../../addon.old/fbpost/fbpost.php:643
|
||||
msgid "Facebook post failed. Queued for retry."
|
||||
msgstr "Enviament a Facebook fracassat. En cua per a reintent."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683
|
||||
#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:843
|
||||
#: ../../addon.old/facebook/facebook.php:1222
|
||||
#: ../../addon.old/fbpost/fbpost.php:683
|
||||
msgid "Your Facebook connection became invalid. Please Re-authenticate."
|
||||
msgstr "La seva connexió a Facebook es va convertir en no vàlida. Per favor, torni a autenticar-se"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684
|
||||
#: ../../addon/facebook/facebook.php:1225 ../../addon/fbpost/fbpost.php:844
|
||||
#: ../../addon.old/facebook/facebook.php:1223
|
||||
#: ../../addon.old/fbpost/fbpost.php:684
|
||||
msgid "Facebook connection became invalid"
|
||||
msgstr "La seva connexió a Facebook es va convertir en no vàlida"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685
|
||||
#: ../../addon/facebook/facebook.php:1226 ../../addon/fbpost/fbpost.php:845
|
||||
#: ../../addon.old/facebook/facebook.php:1224
|
||||
#: ../../addon.old/fbpost/fbpost.php:685
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Hi %1$s,\n"
|
||||
|
|
@ -4962,77 +5390,92 @@ msgid ""
|
|||
msgstr "Hi %1$s,\n\nLa connexió entre els teus comptes en %2$s i Facebook s'han tornat no vàlides. Això passa normalment quan canvies la contrasenya de Facebook. Per activar la conexió novament has de %3$sre-autenticar el connector de Facebook%4$s."
|
||||
|
||||
#: ../../addon/snautofollow/snautofollow.php:32
|
||||
#: ../../addon.old/snautofollow/snautofollow.php:32
|
||||
msgid "StatusNet AutoFollow settings updated."
|
||||
msgstr "Ajustos de AutoSeguiment a StatusNet actualitzats."
|
||||
|
||||
#: ../../addon/snautofollow/snautofollow.php:56
|
||||
#: ../../addon.old/snautofollow/snautofollow.php:56
|
||||
msgid "StatusNet AutoFollow Settings"
|
||||
msgstr "Ajustos de AutoSeguiment a StatusNet"
|
||||
|
||||
#: ../../addon/snautofollow/snautofollow.php:58
|
||||
#: ../../addon.old/snautofollow/snautofollow.php:58
|
||||
msgid "Automatically follow any StatusNet followers/mentioners"
|
||||
msgstr "Segueix Automaticament qualsevol seguidor/mencionador de StatusNet"
|
||||
|
||||
#: ../../addon/bg/bg.php:51
|
||||
msgid "Bg settings updated."
|
||||
msgstr "Ajustos de Bg actualitzats."
|
||||
|
||||
#: ../../addon/bg/bg.php:82
|
||||
msgid "Bg Settings"
|
||||
msgstr "Ajustos de Bg"
|
||||
|
||||
#: ../../addon/bg/bg.php:84 ../../addon/numfriends/numfriends.php:79
|
||||
msgid "How many contacts to display on profile sidebar"
|
||||
msgstr "Quants contactes per mostrar a la barra lateral el perfil"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:260
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:351
|
||||
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
|
||||
msgid "Lifetime of the cache (in hours)"
|
||||
msgstr "Temps de vida de la caché (en hores)"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:265
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:356
|
||||
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
|
||||
msgid "Cache Statistics"
|
||||
msgstr "Estadístiques de la caché"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:268
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:359
|
||||
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
|
||||
msgid "Number of items"
|
||||
msgstr "Nombre d'elements"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:270
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:361
|
||||
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
|
||||
msgid "Size of the cache"
|
||||
msgstr "Mida de la caché"
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:272
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:363
|
||||
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
|
||||
msgid "Delete the whole cache"
|
||||
msgstr "Esborra tota la cachè"
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:172
|
||||
#: ../../addon/fbpost/fbpost.php:183 ../../addon.old/fbpost/fbpost.php:172
|
||||
msgid "Facebook Post disabled"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:199
|
||||
#: ../../addon/fbpost/fbpost.php:210 ../../addon.old/fbpost/fbpost.php:199
|
||||
msgid "Facebook Post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:205
|
||||
#: ../../addon/fbpost/fbpost.php:216 ../../addon.old/fbpost/fbpost.php:205
|
||||
msgid "Install Facebook Post connector for this account."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:212
|
||||
#: ../../addon/fbpost/fbpost.php:223 ../../addon.old/fbpost/fbpost.php:212
|
||||
msgid "Remove Facebook Post connector"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:240
|
||||
#: ../../addon/fbpost/fbpost.php:239
|
||||
msgid "Suppress \"View on friendica\""
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:243
|
||||
msgid "Mirror wall posts from facebook to friendica."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:253
|
||||
msgid "Post to page/group:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:295 ../../addon.old/fbpost/fbpost.php:240
|
||||
msgid "Facebook Post Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/widgets/widget_like.php:58
|
||||
#: ../../addon/fbpost/fbpost.php:375
|
||||
#, php-format
|
||||
msgid "%s:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/widgets/widget_like.php:59
|
||||
#: ../../addon.old/widgets/widget_like.php:58
|
||||
#, php-format
|
||||
msgid "%d person likes this"
|
||||
msgid_plural "%d people like this"
|
||||
msgstr[0] "%d persona li agrada això"
|
||||
msgstr[1] "%d persones els agrada això"
|
||||
|
||||
#: ../../addon/widgets/widget_like.php:61
|
||||
#: ../../addon/widgets/widget_like.php:62
|
||||
#: ../../addon.old/widgets/widget_like.php:61
|
||||
#, php-format
|
||||
msgid "%d person doesn't like this"
|
||||
msgid_plural "%d people don't like this"
|
||||
|
|
@ -5040,225 +5483,263 @@ msgstr[0] "%d persona no li agrada això"
|
|||
msgstr[1] "%d persones no els agrada això"
|
||||
|
||||
#: ../../addon/widgets/widget_friendheader.php:40
|
||||
#: ../../addon.old/widgets/widget_friendheader.php:40
|
||||
msgid "Get added to this list!"
|
||||
msgstr "S'afegeixen a aquesta llista!"
|
||||
|
||||
#: ../../addon/widgets/widgets.php:56
|
||||
#: ../../addon/widgets/widgets.php:57 ../../addon.old/widgets/widgets.php:56
|
||||
msgid "Generate new key"
|
||||
msgstr "Generar nova clau"
|
||||
|
||||
#: ../../addon/widgets/widgets.php:59
|
||||
#: ../../addon/widgets/widgets.php:60 ../../addon.old/widgets/widgets.php:59
|
||||
msgid "Widgets key"
|
||||
msgstr "Ginys clau"
|
||||
|
||||
#: ../../addon/widgets/widgets.php:61
|
||||
#: ../../addon/widgets/widgets.php:62 ../../addon.old/widgets/widgets.php:61
|
||||
msgid "Widgets available"
|
||||
msgstr "Ginys disponibles"
|
||||
|
||||
#: ../../addon/widgets/widget_friends.php:40
|
||||
#: ../../addon.old/widgets/widget_friends.php:40
|
||||
msgid "Connect on Friendica!"
|
||||
msgstr "Connectar en Friendica"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:19
|
||||
#: ../../addon.old/morepokes/morepokes.php:19
|
||||
msgid "bitchslap"
|
||||
msgstr ""
|
||||
msgstr "bufetada"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:19
|
||||
#: ../../addon.old/morepokes/morepokes.php:19
|
||||
msgid "bitchslapped"
|
||||
msgstr ""
|
||||
msgstr "bufetejat"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:20
|
||||
#: ../../addon.old/morepokes/morepokes.php:20
|
||||
msgid "shag"
|
||||
msgstr ""
|
||||
msgstr "fotut"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:20
|
||||
#: ../../addon.old/morepokes/morepokes.php:20
|
||||
msgid "shagged"
|
||||
msgstr ""
|
||||
msgstr "fotre"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:21
|
||||
#: ../../addon.old/morepokes/morepokes.php:21
|
||||
msgid "do something obscenely biological to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:21
|
||||
#: ../../addon.old/morepokes/morepokes.php:21
|
||||
msgid "did something obscenely biological to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:22
|
||||
#: ../../addon.old/morepokes/morepokes.php:22
|
||||
msgid "point out the poke feature to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:22
|
||||
#: ../../addon.old/morepokes/morepokes.php:22
|
||||
msgid "pointed out the poke feature to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:23
|
||||
#: ../../addon.old/morepokes/morepokes.php:23
|
||||
msgid "declare undying love for"
|
||||
msgstr ""
|
||||
msgstr "declara amor inmortal a"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:23
|
||||
#: ../../addon.old/morepokes/morepokes.php:23
|
||||
msgid "declared undying love for"
|
||||
msgstr ""
|
||||
msgstr "declarat amor inmortal a"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:24
|
||||
#: ../../addon.old/morepokes/morepokes.php:24
|
||||
msgid "patent"
|
||||
msgstr ""
|
||||
msgstr "patent"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:24
|
||||
#: ../../addon.old/morepokes/morepokes.php:24
|
||||
msgid "patented"
|
||||
msgstr ""
|
||||
msgstr "patentat"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:25
|
||||
#: ../../addon.old/morepokes/morepokes.php:25
|
||||
msgid "stroke beard"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:25
|
||||
#: ../../addon.old/morepokes/morepokes.php:25
|
||||
msgid "stroked their beard at"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:26
|
||||
#: ../../addon.old/morepokes/morepokes.php:26
|
||||
msgid ""
|
||||
"bemoan the declining standards of modern secondary and tertiary education to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:26
|
||||
#: ../../addon.old/morepokes/morepokes.php:26
|
||||
msgid ""
|
||||
"bemoans the declining standards of modern secondary and tertiary education "
|
||||
"to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:27
|
||||
#: ../../addon.old/morepokes/morepokes.php:27
|
||||
msgid "hug"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:27
|
||||
#: ../../addon.old/morepokes/morepokes.php:27
|
||||
msgid "hugged"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:28
|
||||
#: ../../addon.old/morepokes/morepokes.php:28
|
||||
msgid "kiss"
|
||||
msgstr ""
|
||||
msgstr "petó"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:28
|
||||
#: ../../addon.old/morepokes/morepokes.php:28
|
||||
msgid "kissed"
|
||||
msgstr ""
|
||||
msgstr "besat"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:29
|
||||
#: ../../addon.old/morepokes/morepokes.php:29
|
||||
msgid "raise eyebrows at"
|
||||
msgstr ""
|
||||
msgstr "sorprès"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:29
|
||||
#: ../../addon.old/morepokes/morepokes.php:29
|
||||
msgid "raised their eyebrows at"
|
||||
msgstr ""
|
||||
msgstr "es van sorprendre"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:30
|
||||
#: ../../addon.old/morepokes/morepokes.php:30
|
||||
msgid "insult"
|
||||
msgstr ""
|
||||
msgstr "insult"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:30
|
||||
#: ../../addon.old/morepokes/morepokes.php:30
|
||||
msgid "insulted"
|
||||
msgstr ""
|
||||
msgstr "insultat"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:31
|
||||
#: ../../addon.old/morepokes/morepokes.php:31
|
||||
msgid "praise"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:31
|
||||
#: ../../addon.old/morepokes/morepokes.php:31
|
||||
msgid "praised"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:32
|
||||
#: ../../addon.old/morepokes/morepokes.php:32
|
||||
msgid "be dubious of"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:32
|
||||
#: ../../addon.old/morepokes/morepokes.php:32
|
||||
msgid "was dubious of"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:33
|
||||
#: ../../addon.old/morepokes/morepokes.php:33
|
||||
msgid "eat"
|
||||
msgstr ""
|
||||
msgstr "menja"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:33
|
||||
#: ../../addon.old/morepokes/morepokes.php:33
|
||||
msgid "ate"
|
||||
msgstr ""
|
||||
msgstr "menjà"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:34
|
||||
#: ../../addon.old/morepokes/morepokes.php:34
|
||||
msgid "giggle and fawn at"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:34
|
||||
#: ../../addon.old/morepokes/morepokes.php:34
|
||||
msgid "giggled and fawned at"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:35
|
||||
#: ../../addon.old/morepokes/morepokes.php:35
|
||||
msgid "doubt"
|
||||
msgstr ""
|
||||
msgstr "dubte"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:35
|
||||
#: ../../addon.old/morepokes/morepokes.php:35
|
||||
msgid "doubted"
|
||||
msgstr ""
|
||||
msgstr "dubitat"
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:36
|
||||
#: ../../addon.old/morepokes/morepokes.php:36
|
||||
msgid "glare"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/morepokes/morepokes.php:36
|
||||
#: ../../addon.old/morepokes/morepokes.php:36
|
||||
msgid "glared at"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/yourls/yourls.php:55
|
||||
#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55
|
||||
msgid "YourLS Settings"
|
||||
msgstr "La Teva Configuració de LS"
|
||||
|
||||
#: ../../addon/yourls/yourls.php:57
|
||||
#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57
|
||||
msgid "URL: http://"
|
||||
msgstr "URL: http://"
|
||||
|
||||
#: ../../addon/yourls/yourls.php:62
|
||||
#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62
|
||||
msgid "Username:"
|
||||
msgstr "Nom d'usuari:"
|
||||
|
||||
#: ../../addon/yourls/yourls.php:67
|
||||
#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67
|
||||
msgid "Password:"
|
||||
msgstr "Contrasenya:"
|
||||
|
||||
#: ../../addon/yourls/yourls.php:72
|
||||
#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72
|
||||
msgid "Use SSL "
|
||||
msgstr "Emprar SSL"
|
||||
|
||||
#: ../../addon/yourls/yourls.php:92
|
||||
#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92
|
||||
msgid "yourls Settings saved."
|
||||
msgstr "Guardar la seva configuració."
|
||||
|
||||
#: ../../addon/ljpost/ljpost.php:39
|
||||
#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39
|
||||
msgid "Post to LiveJournal"
|
||||
msgstr "Missatge a Livejournal"
|
||||
|
||||
#: ../../addon/ljpost/ljpost.php:70
|
||||
#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70
|
||||
msgid "LiveJournal Post Settings"
|
||||
msgstr "Configuració d'enviaments a Livejournal"
|
||||
|
||||
#: ../../addon/ljpost/ljpost.php:72
|
||||
#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72
|
||||
msgid "Enable LiveJournal Post Plugin"
|
||||
msgstr "Habilitat el plugin d'enviaments a Livejournal"
|
||||
|
||||
#: ../../addon/ljpost/ljpost.php:77
|
||||
#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77
|
||||
msgid "LiveJournal username"
|
||||
msgstr "Nom d'usuari a Livejournal"
|
||||
|
||||
#: ../../addon/ljpost/ljpost.php:82
|
||||
#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82
|
||||
msgid "LiveJournal password"
|
||||
msgstr "Contrasenya a Livejournal"
|
||||
|
||||
#: ../../addon/ljpost/ljpost.php:87
|
||||
#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87
|
||||
msgid "Post to LiveJournal by default"
|
||||
msgstr "Enviar per defecte a Livejournal"
|
||||
|
||||
#: ../../addon/nsfw/nsfw.php:78
|
||||
#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78
|
||||
msgid "Not Safe For Work (General Purpose Content Filter) settings"
|
||||
msgstr "Ajustos, Not Safe For Work (Filtre de Contingut de Propòsit General)"
|
||||
|
||||
#: ../../addon/nsfw/nsfw.php:80
|
||||
#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80
|
||||
msgid ""
|
||||
"This plugin looks in posts for the words/text you specify below, and "
|
||||
"collapses any content containing those keywords so it is not displayed at "
|
||||
|
|
@ -5268,98 +5749,112 @@ msgid ""
|
|||
" can thereby be used as a general purpose content filter."
|
||||
msgstr "Aquest plugin es veu en enviaments amb les paraules/text que s'especifiquen a continuació , i amagarà qualsevol contingut que contingui les paraules clau de manera que no apareguin en moments inapropiats, com ara insinuacions sexuals que poden ser inadequades en un entorn de treball. És de bona educació i es recomana etiquetar qualsevol contingut que contingui nus amb #NSFW. Aquest filtre també es pot fer coincidir amb qualsevol paraula/text que especifiqueu, i per tant pot ser utilitzat com un filtre general de contingut."
|
||||
|
||||
#: ../../addon/nsfw/nsfw.php:81
|
||||
#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81
|
||||
msgid "Enable Content filter"
|
||||
msgstr "Activat el filtre de Contingut"
|
||||
|
||||
#: ../../addon/nsfw/nsfw.php:84
|
||||
#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84
|
||||
msgid "Comma separated list of keywords to hide"
|
||||
msgstr "Llista separada per comes de paraules clau per ocultar"
|
||||
|
||||
#: ../../addon/nsfw/nsfw.php:89
|
||||
#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89
|
||||
msgid "Use /expression/ to provide regular expressions"
|
||||
msgstr "Emprar /expressió/ per a proporcionar expressions regulars"
|
||||
|
||||
#: ../../addon/nsfw/nsfw.php:105
|
||||
#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105
|
||||
msgid "NSFW Settings saved."
|
||||
msgstr "Configuració NSFW guardada."
|
||||
|
||||
#: ../../addon/nsfw/nsfw.php:157
|
||||
#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157
|
||||
#, php-format
|
||||
msgid "%s - Click to open/close"
|
||||
msgstr "%s - Clicar per obrir/tancar"
|
||||
|
||||
#: ../../addon/page/page.php:61 ../../addon/page/page.php:91
|
||||
#: ../../addon/forumlist/forumlist.php:54
|
||||
#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
|
||||
#: ../../addon/forumlist/forumlist.php:64 ../../addon.old/page/page.php:62
|
||||
#: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60
|
||||
msgid "Forums"
|
||||
msgstr "Forums"
|
||||
|
||||
#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:88
|
||||
#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:98
|
||||
#: ../../addon.old/page/page.php:130
|
||||
#: ../../addon.old/forumlist/forumlist.php:94
|
||||
msgid "Forums:"
|
||||
msgstr "Fòrums:"
|
||||
|
||||
#: ../../addon/page/page.php:165
|
||||
#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166
|
||||
msgid "Page settings updated."
|
||||
msgstr "Actualitzats els ajustos de pàgina."
|
||||
|
||||
#: ../../addon/page/page.php:194
|
||||
#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195
|
||||
msgid "Page Settings"
|
||||
msgstr "Ajustos de pàgina"
|
||||
|
||||
#: ../../addon/page/page.php:196 ../../addon/forumlist/forumlist.php:155
|
||||
#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197
|
||||
msgid "How many forums to display on sidebar without paging"
|
||||
msgstr "Quants fòrums per mostrar a la barra lateral per pàgina"
|
||||
|
||||
#: ../../addon/page/page.php:199
|
||||
#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200
|
||||
msgid "Randomise Page/Forum list"
|
||||
msgstr "Aleatoritza la llista de Pàgina/Fòrum"
|
||||
|
||||
#: ../../addon/page/page.php:202
|
||||
#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203
|
||||
msgid "Show pages/forums on profile page"
|
||||
msgstr "Mostra pàgines/fòrums a la pàgina de perfil"
|
||||
|
||||
#: ../../addon/planets/planets.php:150
|
||||
#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150
|
||||
msgid "Planets Settings"
|
||||
msgstr "Ajustos de Planet"
|
||||
|
||||
#: ../../addon/planets/planets.php:152
|
||||
#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152
|
||||
msgid "Enable Planets Plugin"
|
||||
msgstr "Activa Plugin de Planet"
|
||||
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:22
|
||||
msgid "Forum Directory"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:28
|
||||
#: ../../addon/communityhome/communityhome.php:34
|
||||
#: ../../addon/communityhome/twillingham/communityhome.php:28
|
||||
#: ../../addon/communityhome/twillingham/communityhome.php:34
|
||||
#: ../../include/nav.php:64 ../../boot.php:912
|
||||
#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:91
|
||||
#: ../../boot.php:1037 ../../addon.old/communityhome/communityhome.php:28
|
||||
#: ../../addon.old/communityhome/communityhome.php:34
|
||||
#: ../../addon.old/communityhome/twillingham/communityhome.php:28
|
||||
#: ../../addon.old/communityhome/twillingham/communityhome.php:34
|
||||
msgid "Login"
|
||||
msgstr "Identifica't"
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:29
|
||||
#: ../../addon/communityhome/twillingham/communityhome.php:29
|
||||
#: ../../addon.old/communityhome/communityhome.php:29
|
||||
#: ../../addon.old/communityhome/twillingham/communityhome.php:29
|
||||
msgid "OpenID"
|
||||
msgstr "OpenID"
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:38
|
||||
#: ../../addon/communityhome/twillingham/communityhome.php:38
|
||||
#: ../../addon/communityhome/communityhome.php:39
|
||||
#: ../../addon.old/communityhome/communityhome.php:38
|
||||
#: ../../addon.old/communityhome/twillingham/communityhome.php:38
|
||||
msgid "Latest users"
|
||||
msgstr "Últims usuaris"
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:81
|
||||
#: ../../addon/communityhome/twillingham/communityhome.php:81
|
||||
#: ../../addon/communityhome/communityhome.php:84
|
||||
#: ../../addon.old/communityhome/communityhome.php:81
|
||||
#: ../../addon.old/communityhome/twillingham/communityhome.php:81
|
||||
msgid "Most active users"
|
||||
msgstr "Usuaris més actius"
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:98
|
||||
#: ../../addon/communityhome/communityhome.php:102
|
||||
#: ../../addon.old/communityhome/communityhome.php:98
|
||||
msgid "Latest photos"
|
||||
msgstr "Darreres fotos"
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:133
|
||||
#: ../../addon/communityhome/communityhome.php:141
|
||||
#: ../../addon.old/communityhome/communityhome.php:133
|
||||
msgid "Latest likes"
|
||||
msgstr "Darrers agrada"
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:155
|
||||
#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437
|
||||
#: ../../include/conversation.php:117 ../../include/conversation.php:245
|
||||
#: ../../addon/communityhome/communityhome.php:163
|
||||
#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1508
|
||||
#: ../../include/conversation.php:118 ../../include/conversation.php:246
|
||||
#: ../../addon.old/communityhome/communityhome.php:155
|
||||
msgid "event"
|
||||
msgstr "esdeveniment"
|
||||
|
||||
|
|
@ -5369,107 +5864,141 @@ msgstr "esdeveniment"
|
|||
#: ../../addon/dav/common/wdcal_backend.inc.php:206
|
||||
#: ../../addon/dav/common/wdcal_backend.inc.php:214
|
||||
#: ../../addon/dav/common/wdcal_backend.inc.php:229
|
||||
#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
|
||||
#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
|
||||
#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
|
||||
#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
|
||||
#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
|
||||
#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
|
||||
msgid "No access"
|
||||
msgstr "Inaccessible"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:30
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:738
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
|
||||
msgid "Could not open component for editing"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:140
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:143
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:422
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:143
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:422
|
||||
msgid "Go back to the calendar"
|
||||
msgstr "Tornar al calendari"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:144
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
|
||||
msgid "Event data"
|
||||
msgstr ""
|
||||
msgstr "data d'esdeveniment"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:146
|
||||
#: ../../addon/dav/friendica/main.php:239
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
|
||||
#: ../../addon.old/dav/friendica/main.php:239
|
||||
msgid "Calendar"
|
||||
msgstr "Calendari"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:163
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
|
||||
msgid "Special color"
|
||||
msgstr ""
|
||||
msgstr "Color especial"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:169
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
msgstr "Subjecte"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:173
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
|
||||
msgid "Starts"
|
||||
msgstr "Inicia"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:178
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
|
||||
msgid "Ends"
|
||||
msgstr "Finalitza"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:185
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
|
||||
msgid "Description"
|
||||
msgstr "Descripció"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:188
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
|
||||
msgid "Recurrence"
|
||||
msgstr ""
|
||||
msgstr "Reaparició"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:190
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
|
||||
msgid "Frequency"
|
||||
msgstr ""
|
||||
msgstr "Freqüència"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:194
|
||||
#: ../../include/contact_selectors.php:59
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
|
||||
msgid "Daily"
|
||||
msgstr "Diari"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:197
|
||||
#: ../../include/contact_selectors.php:60
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
|
||||
msgid "Weekly"
|
||||
msgstr "Setmanal"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:200
|
||||
#: ../../include/contact_selectors.php:61
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
|
||||
msgid "Monthly"
|
||||
msgstr "Mensual"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:203
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
|
||||
msgid "Yearly"
|
||||
msgstr ""
|
||||
msgstr "Anyal"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:214
|
||||
#: ../../include/datetime.php:288
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
|
||||
msgid "days"
|
||||
msgstr "dies"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:215
|
||||
#: ../../include/datetime.php:287
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
|
||||
msgid "weeks"
|
||||
msgstr "setmanes"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:216
|
||||
#: ../../include/datetime.php:286
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
|
||||
msgid "months"
|
||||
msgstr "mesos"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:217
|
||||
#: ../../include/datetime.php:285
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
|
||||
msgid "years"
|
||||
msgstr "anys"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:218
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
|
||||
msgid "Interval"
|
||||
msgstr ""
|
||||
msgstr "Interval"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:218
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
|
||||
msgid "All %select% %time%"
|
||||
msgstr ""
|
||||
msgstr "Tot %select% %time%"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:222
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:260
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:481
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
|
||||
msgid "Days"
|
||||
msgstr "Dies"
|
||||
|
||||
|
|
@ -5477,317 +6006,408 @@ msgstr "Dies"
|
|||
#: ../../addon/dav/common/wdcal_edit.inc.php:254
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:270
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:293
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:917
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:975
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
|
||||
msgid "Sunday"
|
||||
msgstr "Diumenge"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:235
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:274
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:917
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:975
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
|
||||
msgid "Monday"
|
||||
msgstr "Dilluns"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:238
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:917
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:975
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
|
||||
msgid "Tuesday"
|
||||
msgstr "Dimarts"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:241
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:917
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:975
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
|
||||
msgid "Wednesday"
|
||||
msgstr "Dimecres"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:244
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:917
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:975
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
|
||||
msgid "Thursday"
|
||||
msgstr "Dijous"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:247
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:917
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:975
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
|
||||
msgid "Friday"
|
||||
msgstr "Divendres"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:250
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:917
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:975
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
|
||||
msgid "Saturday"
|
||||
msgstr "Dissabte"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:297
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
|
||||
msgid "First day of week:"
|
||||
msgstr ""
|
||||
msgstr "Primer dia de la setmana:"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:350
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:373
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
|
||||
msgid "Day of month"
|
||||
msgstr ""
|
||||
msgstr "Dia del mes"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:354
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
|
||||
msgid "#num#th of each month"
|
||||
msgstr ""
|
||||
msgstr "#num# de cada mes"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:357
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
|
||||
msgid "#num#th-last of each month"
|
||||
msgstr ""
|
||||
msgstr "#num# ultim de cada mes"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:360
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
|
||||
msgid "#num#th #wkday# of each month"
|
||||
msgstr ""
|
||||
msgstr "#num# #wkday# de cada mes"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:363
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
|
||||
msgid "#num#th-last #wkday# of each month"
|
||||
msgstr ""
|
||||
msgstr "#num# ultim #wkday# de cada mes"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:372
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:255
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:255
|
||||
msgid "Month"
|
||||
msgstr "Mes"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:377
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
|
||||
msgid "#num#th of the given month"
|
||||
msgstr ""
|
||||
msgstr "#num# del mes corrent"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:380
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
|
||||
msgid "#num#th-last of the given month"
|
||||
msgstr ""
|
||||
msgstr "#num# ultim del mes corrent"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:383
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
|
||||
msgid "#num#th #wkday# of the given month"
|
||||
msgstr ""
|
||||
msgstr "#num# #wkday# del mes corrent"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:386
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
|
||||
msgid "#num#th-last #wkday# of the given month"
|
||||
msgstr ""
|
||||
msgstr "#num# ultim #wkday# del mes corrent"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:413
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
|
||||
msgid "Repeat until"
|
||||
msgstr ""
|
||||
msgstr "repetir fins"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:417
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
|
||||
msgid "Infinite"
|
||||
msgstr ""
|
||||
msgstr "Infinit"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:420
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
|
||||
msgid "Until the following date"
|
||||
msgstr ""
|
||||
msgstr "Fins la data següent"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:423
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
|
||||
msgid "Number of times"
|
||||
msgstr ""
|
||||
msgstr "Nombre de vegades"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:429
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
msgstr "Excepcions"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:432
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
|
||||
msgid "none"
|
||||
msgstr ""
|
||||
msgstr "res"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:449
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
|
||||
msgid "Notification"
|
||||
msgstr "Notificació"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:466
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
|
||||
msgid "Notify by"
|
||||
msgstr ""
|
||||
msgstr "Notificat per"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:469
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
|
||||
msgid "E-Mail"
|
||||
msgstr ""
|
||||
msgstr "E-Mail"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:470
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
|
||||
msgid "On Friendica / Display"
|
||||
msgstr ""
|
||||
msgstr "A Friendica / Display"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:474
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
msgstr "Hora"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:478
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
|
||||
msgid "Hours"
|
||||
msgstr "Hores"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:479
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
|
||||
msgid "Minutes"
|
||||
msgstr "Minuts"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:480
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
|
||||
msgid "Seconds"
|
||||
msgstr ""
|
||||
msgstr "Segons"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:482
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
|
||||
msgid "Weeks"
|
||||
msgstr ""
|
||||
msgstr "Setmanes"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:485
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
|
||||
msgid "before the"
|
||||
msgstr ""
|
||||
msgstr "bans de"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:486
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
|
||||
msgid "start of the event"
|
||||
msgstr ""
|
||||
msgstr "inici del esdeveniment"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:487
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
|
||||
msgid "end of the event"
|
||||
msgstr ""
|
||||
msgstr "fi del esdeveniment"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:492
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
|
||||
msgid "Add a notification"
|
||||
msgstr ""
|
||||
msgstr "Afegir una notificació"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:687
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
|
||||
msgid "The event #name# will start at #date"
|
||||
msgstr ""
|
||||
msgstr "El esdeveniment #name# començara el #date"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:696
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
|
||||
msgid "#name# is about to begin."
|
||||
msgstr ""
|
||||
msgstr "#name# esta a punt de començar."
|
||||
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:769
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
msgstr "Guardat"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_configuration.php:148
|
||||
#: ../../addon.old/dav/common/wdcal_configuration.php:148
|
||||
msgid "U.S. Time Format (mm/dd/YYYY)"
|
||||
msgstr "Data en format U.S. (mm/dd/YYY)"
|
||||
|
||||
#: ../../addon/dav/common/wdcal_configuration.php:243
|
||||
#: ../../addon.old/dav/common/wdcal_configuration.php:243
|
||||
msgid "German Time Format (dd.mm.YYYY)"
|
||||
msgstr "Data en format Alemany (dd.mm.YYYY)"
|
||||
|
||||
#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
|
||||
#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
|
||||
msgid "Private Events"
|
||||
msgstr ""
|
||||
msgstr "Esdeveniment Privat"
|
||||
|
||||
#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
|
||||
#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
|
||||
msgid "Private Addressbooks"
|
||||
msgstr ""
|
||||
msgstr "Contacte Privat"
|
||||
|
||||
#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
|
||||
#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
|
||||
msgid "Friendica-Native events"
|
||||
msgstr ""
|
||||
msgstr "esdeveniments Nadius a Friendica"
|
||||
|
||||
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
|
||||
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
|
||||
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
|
||||
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
|
||||
msgid "Friendica-Contacts"
|
||||
msgstr "Friendica-Contactes"
|
||||
|
||||
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
|
||||
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
|
||||
msgid "Your Friendica-Contacts"
|
||||
msgstr "Els teus Contactes a Friendica"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:99
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:136
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:99
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:136
|
||||
msgid ""
|
||||
"Something went wrong when trying to import the file. Sorry. Maybe some "
|
||||
"events were imported anyway."
|
||||
msgstr ""
|
||||
msgstr "Quelcom va anar malament quan intentava importar l'arxiu. Disculpes. Por ser alguns esdeveniments es varen importar d'alguna manera."
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:131
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:131
|
||||
msgid "Something went wrong when trying to import the file. Sorry."
|
||||
msgstr ""
|
||||
msgstr "Quelcom va anar malament quan intentava importar l'arxiu. Disculpes."
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:134
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:134
|
||||
msgid "The ICS-File has been imported."
|
||||
msgstr ""
|
||||
msgstr "L'arxiu ICS ha estat importat"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:138
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:138
|
||||
msgid "No file was uploaded."
|
||||
msgstr ""
|
||||
msgstr "Cap arxiu es va carregar."
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:147
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:147
|
||||
msgid "Import a ICS-file"
|
||||
msgstr ""
|
||||
msgstr "importar un arxiu ICS"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:150
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:150
|
||||
msgid "ICS-File"
|
||||
msgstr ""
|
||||
msgstr "Arxiu ICS"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:151
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:151
|
||||
msgid "Overwrite all #num# existing events"
|
||||
msgstr ""
|
||||
msgstr "Sobrescriu tots #num# esdeveniments existents"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:228
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:228
|
||||
msgid "New event"
|
||||
msgstr "Nou esdeveniment"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:232
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:232
|
||||
msgid "Today"
|
||||
msgstr "Avui"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:241
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:241
|
||||
msgid "Day"
|
||||
msgstr "Dia"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:248
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:248
|
||||
msgid "Week"
|
||||
msgstr "Setmana"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:260
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:260
|
||||
msgid "Reload"
|
||||
msgstr "Recarregar"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:271
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:271
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:313
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:313
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:380
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:380
|
||||
msgid "The calendar has been updated."
|
||||
msgstr ""
|
||||
msgstr "El calendari ha estat actualitzat."
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:393
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:393
|
||||
msgid "The new calendar has been created."
|
||||
msgstr ""
|
||||
msgstr "El nou calendari ha estat creat."
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:417
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:417
|
||||
msgid "The calendar has been deleted."
|
||||
msgstr ""
|
||||
msgstr "el calendari ha estat esborrat."
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:424
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:424
|
||||
msgid "Calendar Settings"
|
||||
msgstr "Ajustos de Calendari"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:430
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:430
|
||||
msgid "Date format"
|
||||
msgstr "Format de la data"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:439
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:439
|
||||
msgid "Time zone"
|
||||
msgstr "Zona horària"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:445
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:445
|
||||
msgid "Calendars"
|
||||
msgstr ""
|
||||
msgstr "Calendaris"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:487
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:487
|
||||
msgid "Create a new calendar"
|
||||
msgstr ""
|
||||
msgstr "Creat un nou calendari"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:496
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:496
|
||||
msgid "Limitations"
|
||||
msgstr "Limitacions"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:500
|
||||
#: ../../addon/libravatar/libravatar.php:82
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:500
|
||||
#: ../../addon.old/libravatar/libravatar.php:82
|
||||
msgid "Warning"
|
||||
msgstr "Avís"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:504
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:504
|
||||
msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
|
||||
msgstr "Syncronització (iPhone, Thunderbird Lightning, Android, ...)"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:511
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:511
|
||||
msgid "Synchronizing this calendar with the iPhone"
|
||||
msgstr "Sncronitzant aquest calendari amb el iPhone"
|
||||
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:522
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:522
|
||||
msgid "Synchronizing your Friendica-Contacts with the iPhone"
|
||||
msgstr "Sincronitzant els teus contactes a Friendica amb el iPhone"
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:202
|
||||
#: ../../addon.old/dav/friendica/main.php:202
|
||||
msgid ""
|
||||
"The current version of this plugin has not been set up correctly. Please "
|
||||
"contact the system administrator of your installation of friendica to fix "
|
||||
|
|
@ -5795,52 +6415,65 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:242
|
||||
#: ../../addon.old/dav/friendica/main.php:242
|
||||
msgid "Extended calendar with CalDAV-support"
|
||||
msgstr "Calendari ampliat amb suport CalDAV"
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:279
|
||||
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
|
||||
#: ../../include/enotify.php:28 ../../include/notifier.php:710
|
||||
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:468
|
||||
#: ../../include/enotify.php:28 ../../include/notifier.php:785
|
||||
#: ../../addon.old/dav/friendica/main.php:279
|
||||
#: ../../addon.old/dav/friendica/main.php:280
|
||||
msgid "noreply"
|
||||
msgstr "no contestar"
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:282
|
||||
#: ../../addon.old/dav/friendica/main.php:282
|
||||
msgid "Notification: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:309
|
||||
#: ../../addon.old/dav/friendica/main.php:309
|
||||
msgid "The database tables have been installed."
|
||||
msgstr "Les taules de la base de dades han estat instal·lades."
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:310
|
||||
#: ../../addon.old/dav/friendica/main.php:310
|
||||
msgid "An error occurred during the installation."
|
||||
msgstr "Ha ocorregut un error durant la instal·lació."
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:316
|
||||
#: ../../addon.old/dav/friendica/main.php:316
|
||||
msgid "The database tables have been updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:317
|
||||
#: ../../addon.old/dav/friendica/main.php:317
|
||||
msgid "An error occurred during the update."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:333
|
||||
#: ../../addon.old/dav/friendica/main.php:333
|
||||
msgid "No system-wide settings yet."
|
||||
msgstr "No tens enllestits els ajustos del sistema."
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:336
|
||||
#: ../../addon.old/dav/friendica/main.php:336
|
||||
msgid "Database status"
|
||||
msgstr "Estat de la base de dades"
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:339
|
||||
#: ../../addon.old/dav/friendica/main.php:339
|
||||
msgid "Installed"
|
||||
msgstr "Instal·lat"
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:343
|
||||
#: ../../addon.old/dav/friendica/main.php:343
|
||||
msgid "Upgrade needed"
|
||||
msgstr "Necessites actualitzar"
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:343
|
||||
#: ../../addon.old/dav/friendica/main.php:343
|
||||
msgid ""
|
||||
"Please back up all calendar data (the tables beginning with dav_*) before "
|
||||
"proceeding. While all calendar events <i>should</i> be converted to the new "
|
||||
|
|
@ -5850,22 +6483,27 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:343
|
||||
#: ../../addon.old/dav/friendica/main.php:343
|
||||
msgid "Upgrade"
|
||||
msgstr "Actualització"
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:346
|
||||
#: ../../addon.old/dav/friendica/main.php:346
|
||||
msgid "Not installed"
|
||||
msgstr "No instal·lat"
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:346
|
||||
#: ../../addon.old/dav/friendica/main.php:346
|
||||
msgid "Install"
|
||||
msgstr "Instal·lat"
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:350
|
||||
#: ../../addon.old/dav/friendica/main.php:350
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:350
|
||||
#: ../../addon.old/dav/friendica/main.php:350
|
||||
msgid ""
|
||||
"Something really went wrong. I cannot recover from this state automatically,"
|
||||
" sorry. Please go to the database backend, back up the data, and delete all "
|
||||
|
|
@ -5874,38 +6512,47 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:355
|
||||
#: ../../addon.old/dav/friendica/main.php:355
|
||||
msgid "Troubleshooting"
|
||||
msgstr "Solució de problemes"
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:356
|
||||
#: ../../addon.old/dav/friendica/main.php:356
|
||||
msgid "Manual creation of the database tables:"
|
||||
msgstr "Creació manual de les taules de la base de dades:"
|
||||
|
||||
#: ../../addon/dav/friendica/main.php:357
|
||||
#: ../../addon.old/dav/friendica/main.php:357
|
||||
msgid "Show SQL-statements"
|
||||
msgstr "Mostrar instruccions de SQL "
|
||||
|
||||
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
|
||||
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
|
||||
msgid "Private Calendar"
|
||||
msgstr "Calendari Privat"
|
||||
|
||||
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
|
||||
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
|
||||
msgid "Friendica Events: Mine"
|
||||
msgstr "Esdeveniments Friendica: Meus"
|
||||
|
||||
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
|
||||
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
|
||||
msgid "Friendica Events: Contacts"
|
||||
msgstr "Esdeveniments Friendica: Contactes"
|
||||
|
||||
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
|
||||
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
|
||||
msgid "Private Addresses"
|
||||
msgstr ""
|
||||
msgstr "Adreces Privades"
|
||||
|
||||
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
|
||||
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
|
||||
msgid "Friendica Contacts"
|
||||
msgstr ""
|
||||
msgstr "Contactes a Friendica"
|
||||
|
||||
#: ../../addon/uhremotestorage/uhremotestorage.php:84
|
||||
#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
|
||||
|
|
@ -5915,183 +6562,199 @@ msgid ""
|
|||
msgstr "Permetre l'ús del seu ID de friendica (%s) per Connectar a l'emmagatzematge extern (com ownCloud). Veure <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\"> WebFinger RemoteStorage </a>"
|
||||
|
||||
#: ../../addon/uhremotestorage/uhremotestorage.php:85
|
||||
#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
|
||||
msgid "Template URL (with {category})"
|
||||
msgstr "Plantilles de URL (amb {categoria})"
|
||||
|
||||
#: ../../addon/uhremotestorage/uhremotestorage.php:86
|
||||
#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
|
||||
msgid "OAuth end-point"
|
||||
msgstr "OAuth end-point"
|
||||
|
||||
#: ../../addon/uhremotestorage/uhremotestorage.php:87
|
||||
#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
|
||||
msgid "Api"
|
||||
msgstr "Api"
|
||||
|
||||
#: ../../addon/membersince/membersince.php:18
|
||||
#: ../../addon.old/membersince/membersince.php:18
|
||||
msgid "Member since:"
|
||||
msgstr "Membre des de:"
|
||||
|
||||
#: ../../addon/tictac/tictac.php:20
|
||||
#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20
|
||||
msgid "Three Dimensional Tic-Tac-Toe"
|
||||
msgstr "Tres en línia Tridimensional"
|
||||
|
||||
#: ../../addon/tictac/tictac.php:53
|
||||
#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53
|
||||
msgid "3D Tic-Tac-Toe"
|
||||
msgstr "Tres en línia 3D"
|
||||
|
||||
#: ../../addon/tictac/tictac.php:58
|
||||
#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58
|
||||
msgid "New game"
|
||||
msgstr "Nou joc"
|
||||
|
||||
#: ../../addon/tictac/tictac.php:59
|
||||
#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59
|
||||
msgid "New game with handicap"
|
||||
msgstr "Nou joc modificat"
|
||||
|
||||
#: ../../addon/tictac/tictac.php:60
|
||||
#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60
|
||||
msgid ""
|
||||
"Three dimensional tic-tac-toe is just like the traditional game except that "
|
||||
"it is played on multiple levels simultaneously. "
|
||||
msgstr "El joc del tres en línia tridimensional és com el joc tradicional, excepte que es juga en diversos nivells simultàniament."
|
||||
|
||||
#: ../../addon/tictac/tictac.php:61
|
||||
#: ../../addon/tictac/tictac.php:61 ../../addon.old/tictac/tictac.php:61
|
||||
msgid ""
|
||||
"In this case there are three levels. You win by getting three in a row on "
|
||||
"any level, as well as up, down, and diagonally across the different levels."
|
||||
msgstr "En aquest cas hi ha tres nivells. Vostè guanya per aconseguir tres en una fila en qualsevol nivell, així com dalt, baix i en diagonal a través dels diferents nivells."
|
||||
|
||||
#: ../../addon/tictac/tictac.php:63
|
||||
#: ../../addon/tictac/tictac.php:63 ../../addon.old/tictac/tictac.php:63
|
||||
msgid ""
|
||||
"The handicap game disables the center position on the middle level because "
|
||||
"the player claiming this square often has an unfair advantage."
|
||||
msgstr "El joc modificat desactiva la posició central en el nivell mitjà perquè el jugador en aquesta posició té sovint un avantatge injust."
|
||||
|
||||
#: ../../addon/tictac/tictac.php:182
|
||||
#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182
|
||||
msgid "You go first..."
|
||||
msgstr "Vostè va primer ..."
|
||||
|
||||
#: ../../addon/tictac/tictac.php:187
|
||||
#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187
|
||||
msgid "I'm going first this time..."
|
||||
msgstr "Vaig primer aquesta vegada ..."
|
||||
|
||||
#: ../../addon/tictac/tictac.php:193
|
||||
#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193
|
||||
msgid "You won!"
|
||||
msgstr "Has guanyat!"
|
||||
|
||||
#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
|
||||
#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
|
||||
msgid "\"Cat\" game!"
|
||||
msgstr "Empat!"
|
||||
|
||||
#: ../../addon/tictac/tictac.php:222
|
||||
#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222
|
||||
msgid "I won!"
|
||||
msgstr "Vaig guanyar!"
|
||||
|
||||
#: ../../addon/randplace/randplace.php:169
|
||||
#: ../../addon.old/randplace/randplace.php:169
|
||||
msgid "Randplace Settings"
|
||||
msgstr "Configuració de Randplace"
|
||||
|
||||
#: ../../addon/randplace/randplace.php:171
|
||||
#: ../../addon.old/randplace/randplace.php:171
|
||||
msgid "Enable Randplace Plugin"
|
||||
msgstr "Habilitar el Plugin de Randplace"
|
||||
|
||||
#: ../../addon/dwpost/dwpost.php:39
|
||||
#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39
|
||||
msgid "Post to Dreamwidth"
|
||||
msgstr "Missatge a Dreamwidth"
|
||||
|
||||
#: ../../addon/dwpost/dwpost.php:70
|
||||
#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70
|
||||
msgid "Dreamwidth Post Settings"
|
||||
msgstr "Configuració d'enviaments a Dreamwidth"
|
||||
|
||||
#: ../../addon/dwpost/dwpost.php:72
|
||||
#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72
|
||||
msgid "Enable dreamwidth Post Plugin"
|
||||
msgstr "Habilitat el plugin d'enviaments a Dreamwidth"
|
||||
|
||||
#: ../../addon/dwpost/dwpost.php:77
|
||||
#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77
|
||||
msgid "dreamwidth username"
|
||||
msgstr "Nom d'usuari a Dreamwidth"
|
||||
|
||||
#: ../../addon/dwpost/dwpost.php:82
|
||||
#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82
|
||||
msgid "dreamwidth password"
|
||||
msgstr "Contrasenya a Dreamwidth"
|
||||
|
||||
#: ../../addon/dwpost/dwpost.php:87
|
||||
#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87
|
||||
msgid "Post to dreamwidth by default"
|
||||
msgstr "Enviar per defecte a Dreamwidth"
|
||||
|
||||
#: ../../addon/drpost/drpost.php:35
|
||||
msgid "Post to Drupal"
|
||||
msgstr "Missatge a Drupal"
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:45
|
||||
msgid "Remote Permissions Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/drpost/drpost.php:72
|
||||
msgid "Drupal Post Settings"
|
||||
msgstr "Configuració d'enviaments a Drupal"
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:46
|
||||
msgid ""
|
||||
"Allow recipients of your private posts to see the other recipients of the "
|
||||
"posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/drpost/drpost.php:74
|
||||
msgid "Enable Drupal Post Plugin"
|
||||
msgstr "Habilitar el Plugin d'Enviaments de Drupal"
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:58
|
||||
msgid "Remote Permissions settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/drpost/drpost.php:79
|
||||
msgid "Drupal username"
|
||||
msgstr "Nom d'usuari de Drupal"
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:178
|
||||
msgid "Visible to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/drpost/drpost.php:84
|
||||
msgid "Drupal password"
|
||||
msgstr "Contrasenya de Drupal"
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:178
|
||||
msgid "may only be a partial list"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/drpost/drpost.php:89
|
||||
msgid "Post Type - article,page,or blog"
|
||||
msgstr "Tipus d'Enviament- article,pàgina, o blog"
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:197
|
||||
#: ../../addon/altpager/altpager.php:99
|
||||
msgid "Global"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/drpost/drpost.php:94
|
||||
msgid "Drupal site URL"
|
||||
msgstr "URL del lloc Drupal"
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:197
|
||||
msgid "The posts of every user on this server show the post recipients"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/drpost/drpost.php:99
|
||||
msgid "Drupal site uses clean URLS"
|
||||
msgstr "el Lloc Drupal empra URLS netes"
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:198
|
||||
#: ../../addon/altpager/altpager.php:100
|
||||
msgid "Individual"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/drpost/drpost.php:104
|
||||
msgid "Post to Drupal by default"
|
||||
msgstr "Enviar a Drupal per defecte"
|
||||
|
||||
#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:201
|
||||
#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189
|
||||
msgid "Post from Friendica"
|
||||
msgstr "Enviament des de Friendica"
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:198
|
||||
msgid "Each user chooses whether his/her posts show the post recipients"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/startpage/startpage.php:83
|
||||
#: ../../addon.old/startpage/startpage.php:83
|
||||
msgid "Startpage Settings"
|
||||
msgstr "Ajustos de la pàgina d'inici"
|
||||
|
||||
#: ../../addon/startpage/startpage.php:85
|
||||
#: ../../addon.old/startpage/startpage.php:85
|
||||
msgid "Home page to load after login - leave blank for profile wall"
|
||||
msgstr "Pàgina personal a carregar després d'accedir - deixar buit pel perfil del mur"
|
||||
|
||||
#: ../../addon/startpage/startpage.php:88
|
||||
#: ../../addon.old/startpage/startpage.php:88
|
||||
msgid "Examples: "network" or "notifications/system""
|
||||
msgstr "Exemples: \"xarxa\" o \"notificacions/sistema\""
|
||||
|
||||
#: ../../addon/geonames/geonames.php:143
|
||||
#: ../../addon.old/geonames/geonames.php:143
|
||||
msgid "Geonames settings updated."
|
||||
msgstr "Actualitzada la configuració de Geonames."
|
||||
|
||||
#: ../../addon/geonames/geonames.php:179
|
||||
#: ../../addon.old/geonames/geonames.php:179
|
||||
msgid "Geonames Settings"
|
||||
msgstr "Configuració de Geonames"
|
||||
|
||||
#: ../../addon/geonames/geonames.php:181
|
||||
#: ../../addon.old/geonames/geonames.php:181
|
||||
msgid "Enable Geonames Plugin"
|
||||
msgstr "Habilitar Plugin de Geonames"
|
||||
|
||||
#: ../../addon/public_server/public_server.php:126
|
||||
#: ../../addon/testdrive/testdrive.php:94
|
||||
#: ../../addon.old/public_server/public_server.php:126
|
||||
#: ../../addon.old/testdrive/testdrive.php:94
|
||||
#, php-format
|
||||
msgid "Your account on %s will expire in a few days."
|
||||
msgstr "El teu compte en %s expirarà en pocs dies."
|
||||
|
||||
#: ../../addon/public_server/public_server.php:127
|
||||
#: ../../addon.old/public_server/public_server.php:127
|
||||
msgid "Your Friendica account is about to expire."
|
||||
msgstr "El teu compte de Friendica està a punt de caducar."
|
||||
|
||||
#: ../../addon/public_server/public_server.php:128
|
||||
#: ../../addon.old/public_server/public_server.php:128
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Hi %1$s,\n"
|
||||
|
|
@ -6100,90 +6763,105 @@ msgid ""
|
|||
msgstr "Hi %1$s,\n\nEl teu compte en %2$s expirara en menys de cinc dies. Pots mantenir el teu compte accedint al menys una vegada cada 30 dies."
|
||||
|
||||
#: ../../addon/js_upload/js_upload.php:43
|
||||
#: ../../addon.old/js_upload/js_upload.php:43
|
||||
msgid "Upload a file"
|
||||
msgstr "Carrega un arxiu"
|
||||
|
||||
#: ../../addon/js_upload/js_upload.php:44
|
||||
#: ../../addon.old/js_upload/js_upload.php:44
|
||||
msgid "Drop files here to upload"
|
||||
msgstr "Deixa aquí el arxiu a carregar"
|
||||
|
||||
#: ../../addon/js_upload/js_upload.php:46
|
||||
#: ../../addon.old/js_upload/js_upload.php:46
|
||||
msgid "Failed"
|
||||
msgstr "Fracassar"
|
||||
|
||||
#: ../../addon/js_upload/js_upload.php:297
|
||||
#: ../../addon/js_upload/js_upload.php:303
|
||||
#: ../../addon.old/js_upload/js_upload.php:297
|
||||
msgid "No files were uploaded."
|
||||
msgstr "No hi ha arxius carregats."
|
||||
|
||||
#: ../../addon/js_upload/js_upload.php:303
|
||||
#: ../../addon/js_upload/js_upload.php:309
|
||||
#: ../../addon.old/js_upload/js_upload.php:303
|
||||
msgid "Uploaded file is empty"
|
||||
msgstr "L'arxiu carregat està buit"
|
||||
|
||||
#: ../../addon/js_upload/js_upload.php:326
|
||||
#: ../../addon/js_upload/js_upload.php:332
|
||||
#: ../../addon.old/js_upload/js_upload.php:326
|
||||
msgid "File has an invalid extension, it should be one of "
|
||||
msgstr "Arxiu té una extensió no vàlida, ha de ser una de"
|
||||
|
||||
#: ../../addon/js_upload/js_upload.php:337
|
||||
#: ../../addon/js_upload/js_upload.php:343
|
||||
#: ../../addon.old/js_upload/js_upload.php:337
|
||||
msgid "Upload was cancelled, or server error encountered"
|
||||
msgstr "La pujada va ser cancel.lada, o es va trobar un error de servidor"
|
||||
|
||||
#: ../../addon/oembed.old/oembed.php:30
|
||||
msgid "OEmbed settings updated"
|
||||
msgstr "Actualitzar la configuració OEmbed"
|
||||
|
||||
#: ../../addon/oembed.old/oembed.php:43
|
||||
msgid "Use OEmbed for YouTube videos"
|
||||
msgstr "Empreu OEmbed per videos YouTube"
|
||||
|
||||
#: ../../addon/oembed.old/oembed.php:71
|
||||
msgid "URL to embed:"
|
||||
msgstr "Adreça URL del recurs"
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:57
|
||||
#: ../../addon/forumlist/forumlist.php:67
|
||||
#: ../../addon.old/forumlist/forumlist.php:63
|
||||
msgid "show/hide"
|
||||
msgstr "mostra/amaga"
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:72
|
||||
#: ../../addon/forumlist/forumlist.php:81
|
||||
#: ../../addon.old/forumlist/forumlist.php:77
|
||||
msgid "No forum subscriptions"
|
||||
msgstr ""
|
||||
msgstr "No hi ha subscripcions al fòrum"
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:124
|
||||
#: ../../addon/forumlist/forumlist.php:134
|
||||
#: ../../addon.old/forumlist/forumlist.php:131
|
||||
msgid "Forumlist settings updated."
|
||||
msgstr ""
|
||||
msgstr "Ajustos de Forumlist actualitzats."
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:153
|
||||
#: ../../addon/forumlist/forumlist.php:162
|
||||
#: ../../addon.old/forumlist/forumlist.php:159
|
||||
msgid "Forumlist Settings"
|
||||
msgstr "Ajustos de Forumlist"
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:164
|
||||
#: ../../addon.old/forumlist/forumlist.php:161
|
||||
msgid "Randomise forum list"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:158
|
||||
msgid "Randomise Forumlist/Forum list"
|
||||
#: ../../addon/forumlist/forumlist.php:167
|
||||
#: ../../addon.old/forumlist/forumlist.php:164
|
||||
msgid "Show forums on profile page"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:161
|
||||
msgid "Show forumlists/forums on profile forumlist"
|
||||
#: ../../addon/forumlist/forumlist.php:170
|
||||
#: ../../addon.old/forumlist/forumlist.php:167
|
||||
msgid "Show forums on network page"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/impressum/impressum.php:37
|
||||
#: ../../addon.old/impressum/impressum.php:37
|
||||
msgid "Impressum"
|
||||
msgstr "Impressum"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:50
|
||||
#: ../../addon/impressum/impressum.php:52
|
||||
#: ../../addon/impressum/impressum.php:84
|
||||
#: ../../addon.old/impressum/impressum.php:50
|
||||
#: ../../addon.old/impressum/impressum.php:52
|
||||
#: ../../addon.old/impressum/impressum.php:84
|
||||
msgid "Site Owner"
|
||||
msgstr "Propietari del lloc"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:50
|
||||
#: ../../addon/impressum/impressum.php:88
|
||||
#: ../../addon.old/impressum/impressum.php:50
|
||||
#: ../../addon.old/impressum/impressum.php:88
|
||||
msgid "Email Address"
|
||||
msgstr "Adreça de correu"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:55
|
||||
#: ../../addon/impressum/impressum.php:86
|
||||
#: ../../addon.old/impressum/impressum.php:55
|
||||
#: ../../addon.old/impressum/impressum.php:86
|
||||
msgid "Postal Address"
|
||||
msgstr "Adreça postal"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:61
|
||||
#: ../../addon.old/impressum/impressum.php:61
|
||||
msgid ""
|
||||
"The impressum addon needs to be configured!<br />Please add at least the "
|
||||
"<tt>owner</tt> variable to your config file. For other variables please "
|
||||
|
|
@ -6191,278 +6869,348 @@ msgid ""
|
|||
msgstr "El complement impressum s'ha de configurar!<br />Si us plau afegiu almenys la variable <tt>propietari </tt> al fitxer de configuració. Per a les altres variables, consulteu el fitxer README del complement."
|
||||
|
||||
#: ../../addon/impressum/impressum.php:84
|
||||
#: ../../addon.old/impressum/impressum.php:84
|
||||
msgid "The page operators name."
|
||||
msgstr "Nom de la pàgina del gestor."
|
||||
|
||||
#: ../../addon/impressum/impressum.php:85
|
||||
#: ../../addon.old/impressum/impressum.php:85
|
||||
msgid "Site Owners Profile"
|
||||
msgstr "Perfil del Propietari del Lloc"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:85
|
||||
#: ../../addon.old/impressum/impressum.php:85
|
||||
msgid "Profile address of the operator."
|
||||
msgstr "Adreça del perfil del gestor."
|
||||
|
||||
#: ../../addon/impressum/impressum.php:86
|
||||
#: ../../addon.old/impressum/impressum.php:86
|
||||
msgid "How to contact the operator via snail mail. You can use BBCode here."
|
||||
msgstr "Com posar-se en contacte amb l'operador a través de correu postal. Vostè pot utilitzar BBCode aquí."
|
||||
|
||||
#: ../../addon/impressum/impressum.php:87
|
||||
#: ../../addon.old/impressum/impressum.php:87
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:87
|
||||
#: ../../addon.old/impressum/impressum.php:87
|
||||
msgid ""
|
||||
"Additional notes that are displayed beneath the contact information. You can"
|
||||
" use BBCode here."
|
||||
msgstr "Notes addicionals que es mostren sota de la informació de contacte. Vostè pot usar BBCode aquí."
|
||||
|
||||
#: ../../addon/impressum/impressum.php:88
|
||||
#: ../../addon.old/impressum/impressum.php:88
|
||||
msgid "How to contact the operator via email. (will be displayed obfuscated)"
|
||||
msgstr "Com contactar amb el gestor via correu electronic. ( es visualitzara ofuscat)"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:89
|
||||
#: ../../addon.old/impressum/impressum.php:89
|
||||
msgid "Footer note"
|
||||
msgstr "Nota a peu de pàgina"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:89
|
||||
#: ../../addon.old/impressum/impressum.php:89
|
||||
msgid "Text for the footer. You can use BBCode here."
|
||||
msgstr "Text pel peu de pàgina. Pots emprar BBCode aquí."
|
||||
|
||||
#: ../../addon/buglink/buglink.php:15
|
||||
#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15
|
||||
msgid "Report Bug"
|
||||
msgstr "Informar de problema"
|
||||
|
||||
#: ../../addon/notimeline/notimeline.php:32
|
||||
#: ../../addon.old/notimeline/notimeline.php:32
|
||||
msgid "No Timeline settings updated."
|
||||
msgstr "No s'han actualitzat els ajustos de la línia de temps"
|
||||
|
||||
#: ../../addon/notimeline/notimeline.php:56
|
||||
#: ../../addon.old/notimeline/notimeline.php:56
|
||||
msgid "No Timeline Settings"
|
||||
msgstr "No hi han ajustos de la línia de temps"
|
||||
|
||||
#: ../../addon/notimeline/notimeline.php:58
|
||||
#: ../../addon.old/notimeline/notimeline.php:58
|
||||
msgid "Disable Archive selector on profile wall"
|
||||
msgstr "Desactivar el selector d'arxius del mur de perfils"
|
||||
|
||||
#: ../../addon/blockem/blockem.php:51
|
||||
#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51
|
||||
msgid "\"Blockem\" Settings"
|
||||
msgstr "Configuració de \"Bloqueig\""
|
||||
|
||||
#: ../../addon/blockem/blockem.php:53
|
||||
#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53
|
||||
msgid "Comma separated profile URLS to block"
|
||||
msgstr "URLS dels perfils a bloquejar, separats per comes"
|
||||
|
||||
#: ../../addon/blockem/blockem.php:70
|
||||
#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70
|
||||
msgid "BLOCKEM Settings saved."
|
||||
msgstr "Guardada la configuració de BLOQUEIG."
|
||||
|
||||
#: ../../addon/blockem/blockem.php:105
|
||||
#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105
|
||||
#, php-format
|
||||
msgid "Blocked %s - Click to open/close"
|
||||
msgstr "Bloquejar %s - Clica per obrir/tancar"
|
||||
|
||||
#: ../../addon/blockem/blockem.php:160
|
||||
#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160
|
||||
msgid "Unblock Author"
|
||||
msgstr "Desbloquejar Autor"
|
||||
|
||||
#: ../../addon/blockem/blockem.php:162
|
||||
#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162
|
||||
msgid "Block Author"
|
||||
msgstr "Bloquejar Autor"
|
||||
|
||||
#: ../../addon/blockem/blockem.php:194
|
||||
#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194
|
||||
msgid "blockem settings updated"
|
||||
msgstr "Actualitzar la Configuració de bloqueig"
|
||||
|
||||
#: ../../addon/qcomment/qcomment.php:51
|
||||
#: ../../addon.old/qcomment/qcomment.php:51
|
||||
msgid ":-)"
|
||||
msgstr ":-)"
|
||||
|
||||
#: ../../addon/qcomment/qcomment.php:51
|
||||
#: ../../addon.old/qcomment/qcomment.php:51
|
||||
msgid ":-("
|
||||
msgstr ":-("
|
||||
|
||||
#: ../../addon/qcomment/qcomment.php:51
|
||||
#: ../../addon.old/qcomment/qcomment.php:51
|
||||
msgid "lol"
|
||||
msgstr "lol"
|
||||
|
||||
#: ../../addon/qcomment/qcomment.php:54
|
||||
#: ../../addon.old/qcomment/qcomment.php:54
|
||||
msgid "Quick Comment Settings"
|
||||
msgstr "Configuració Ràpida dels Comentaris"
|
||||
|
||||
#: ../../addon/qcomment/qcomment.php:56
|
||||
#: ../../addon.old/qcomment/qcomment.php:56
|
||||
msgid ""
|
||||
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
|
||||
" provide simple replies."
|
||||
msgstr "Comentaris ràpids es troben prop de les caixes de comentaris, de vegades ocults. Feu clic a ells per donar respostes simples."
|
||||
|
||||
#: ../../addon/qcomment/qcomment.php:57
|
||||
#: ../../addon.old/qcomment/qcomment.php:57
|
||||
msgid "Enter quick comments, one per line"
|
||||
msgstr "Introduïu els comentaris ràpids, un per línia"
|
||||
|
||||
#: ../../addon/qcomment/qcomment.php:75
|
||||
#: ../../addon.old/qcomment/qcomment.php:75
|
||||
msgid "Quick Comment settings saved."
|
||||
msgstr "Guardada la configuració de comentaris ràpids."
|
||||
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:71
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:95
|
||||
#: ../../addon.old/openstreetmap/openstreetmap.php:71
|
||||
msgid "Tile Server URL"
|
||||
msgstr "URL del servidor, del mosaico de servidores"
|
||||
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:71
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:95
|
||||
#: ../../addon.old/openstreetmap/openstreetmap.php:71
|
||||
msgid ""
|
||||
"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
|
||||
"target=\"_blank\">public tile servers</a>"
|
||||
msgstr "Una llista de <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\"> un mosaic de servidors públics</a>"
|
||||
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:72
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:96
|
||||
#: ../../addon.old/openstreetmap/openstreetmap.php:72
|
||||
msgid "Default zoom"
|
||||
msgstr "Zoom per defecte"
|
||||
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:72
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:96
|
||||
#: ../../addon.old/openstreetmap/openstreetmap.php:72
|
||||
msgid "The default zoom level. (1:world, 18:highest)"
|
||||
msgstr "Nivell de zoom per defecte. (1: el món, 18: el més alt)"
|
||||
|
||||
#: ../../addon/group_text/group_text.php:46
|
||||
#: ../../addon/editplain/editplain.php:46
|
||||
msgid "Editplain settings updated."
|
||||
msgstr "Actualitzar la configuració de Editplain."
|
||||
msgid "Group Text settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/group_text/group_text.php:76
|
||||
#: ../../addon.old/group_text/group_text.php:76
|
||||
msgid "Group Text"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/group_text/group_text.php:78
|
||||
#: ../../addon.old/group_text/group_text.php:78
|
||||
msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:14
|
||||
#: ../../addon.old/libravatar/libravatar.php:14
|
||||
msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
|
||||
msgstr "No puc instal·lar Libravatar , <br>requereix PHP>=5.3"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:73
|
||||
#: ../../addon/gravatar/gravatar.php:71
|
||||
#: ../../addon.old/libravatar/libravatar.php:73
|
||||
#: ../../addon.old/gravatar/gravatar.php:71
|
||||
msgid "generic profile image"
|
||||
msgstr "imatge de perfil genérica"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:74
|
||||
#: ../../addon/gravatar/gravatar.php:72
|
||||
#: ../../addon.old/libravatar/libravatar.php:74
|
||||
#: ../../addon.old/gravatar/gravatar.php:72
|
||||
msgid "random geometric pattern"
|
||||
msgstr "Patró geometric aleatori"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:75
|
||||
#: ../../addon/gravatar/gravatar.php:73
|
||||
#: ../../addon.old/libravatar/libravatar.php:75
|
||||
#: ../../addon.old/gravatar/gravatar.php:73
|
||||
msgid "monster face"
|
||||
msgstr "Cara monstruosa"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:76
|
||||
#: ../../addon/gravatar/gravatar.php:74
|
||||
#: ../../addon.old/libravatar/libravatar.php:76
|
||||
#: ../../addon.old/gravatar/gravatar.php:74
|
||||
msgid "computer generated face"
|
||||
msgstr "Cara monstruosa generada per ordinador"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:77
|
||||
#: ../../addon/gravatar/gravatar.php:75
|
||||
#: ../../addon.old/libravatar/libravatar.php:77
|
||||
#: ../../addon.old/gravatar/gravatar.php:75
|
||||
msgid "retro arcade style face"
|
||||
msgstr "Cara d'estil arcade retro"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:83
|
||||
#: ../../addon.old/libravatar/libravatar.php:83
|
||||
#, php-format
|
||||
msgid "Your PHP version %s is lower than the required PHP >= 5.3."
|
||||
msgstr "La teva versió de PHP %s es inferior a la requerida, PHP>=5.3"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:84
|
||||
#: ../../addon.old/libravatar/libravatar.php:84
|
||||
msgid "This addon is not functional on your server."
|
||||
msgstr "Aquest addon no es funcional al teu servidor."
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:93
|
||||
#: ../../addon/gravatar/gravatar.php:89
|
||||
#: ../../addon.old/libravatar/libravatar.php:93
|
||||
#: ../../addon.old/gravatar/gravatar.php:89
|
||||
msgid "Information"
|
||||
msgstr "informació"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:93
|
||||
#: ../../addon.old/libravatar/libravatar.php:93
|
||||
msgid ""
|
||||
"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
|
||||
"Libravatar addon will fall back to Gravatar if nothing was found at "
|
||||
"Libravatar."
|
||||
msgstr ""
|
||||
msgstr "el addon Gravatar està instal·lat. Si us plau, desactiva el addon Gravatar.<br> El addon Libravatar tornarà a Gravatar si no es trova res a Libravatar."
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:100
|
||||
#: ../../addon/gravatar/gravatar.php:96
|
||||
#: ../../addon.old/libravatar/libravatar.php:100
|
||||
#: ../../addon.old/gravatar/gravatar.php:96
|
||||
msgid "Default avatar image"
|
||||
msgstr "Imatge d'avatar per defecte"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:100
|
||||
#: ../../addon.old/libravatar/libravatar.php:100
|
||||
msgid "Select default avatar image if none was found. See README"
|
||||
msgstr ""
|
||||
msgstr "seleccionada la imatge d'avatar per defecte si no es trova cap altre. Veure README"
|
||||
|
||||
#: ../../addon/libravatar/libravatar.php:112
|
||||
#: ../../addon.old/libravatar/libravatar.php:112
|
||||
msgid "Libravatar settings updated."
|
||||
msgstr "Ajustos de Libravatar actualitzats."
|
||||
|
||||
#: ../../addon/libertree/libertree.php:36
|
||||
#: ../../addon.old/libertree/libertree.php:36
|
||||
msgid "Post to libertree"
|
||||
msgstr "Enviament a libertree"
|
||||
|
||||
#: ../../addon/libertree/libertree.php:67
|
||||
#: ../../addon.old/libertree/libertree.php:67
|
||||
msgid "libertree Post Settings"
|
||||
msgstr "Ajustos d'enviaments a libertree"
|
||||
|
||||
#: ../../addon/libertree/libertree.php:69
|
||||
#: ../../addon.old/libertree/libertree.php:69
|
||||
msgid "Enable Libertree Post Plugin"
|
||||
msgstr "Activa el plugin d'enviaments a libertree"
|
||||
|
||||
#: ../../addon/libertree/libertree.php:74
|
||||
#: ../../addon.old/libertree/libertree.php:74
|
||||
msgid "Libertree API token"
|
||||
msgstr "Libertree API token"
|
||||
|
||||
#: ../../addon/libertree/libertree.php:79
|
||||
#: ../../addon.old/libertree/libertree.php:79
|
||||
msgid "Libertree site URL"
|
||||
msgstr "lloc URL libertree"
|
||||
|
||||
#: ../../addon/libertree/libertree.php:84
|
||||
#: ../../addon.old/libertree/libertree.php:84
|
||||
msgid "Post to Libertree by default"
|
||||
msgstr "Enviar a libertree per defecte"
|
||||
|
||||
#: ../../addon/altpager/altpager.php:46
|
||||
#: ../../addon.old/altpager/altpager.php:46
|
||||
msgid "Altpager settings updated."
|
||||
msgstr "Ajustos de Altpagerr actualitzats."
|
||||
|
||||
#: ../../addon/altpager/altpager.php:79
|
||||
#: ../../addon/altpager/altpager.php:83
|
||||
#: ../../addon.old/altpager/altpager.php:79
|
||||
msgid "Alternate Pagination Setting"
|
||||
msgstr "Alternate Pagination Setting"
|
||||
|
||||
#: ../../addon/altpager/altpager.php:81
|
||||
#: ../../addon/altpager/altpager.php:85
|
||||
#: ../../addon.old/altpager/altpager.php:81
|
||||
msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
|
||||
msgstr "Emprar enllaç a \"més nova\" i \"més antiga\" pàgina, en lloc de números de pàgina? "
|
||||
|
||||
#: ../../addon/altpager/altpager.php:99
|
||||
msgid "Force global use of the alternate pager"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/mathjax/mathjax.php:37
|
||||
#: ../../addon/altpager/altpager.php:100
|
||||
msgid "Each user chooses whether to use the alternate pager"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37
|
||||
msgid ""
|
||||
"The MathJax addon renders mathematical formulae written using the LaTeX "
|
||||
"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
|
||||
"your wall,network tab and private mail."
|
||||
msgstr "El complement MathJax processa les fórmules matemàtiques escrites utilitzant la sintaxi de LaTeX, envoltades per l'habitual $$ o un bloc de \"eqnarray\" en les publicacions del seu mur, a la fitxa de la xarxa i correu privat."
|
||||
|
||||
#: ../../addon/mathjax/mathjax.php:38
|
||||
#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38
|
||||
msgid "Use the MathJax renderer"
|
||||
msgstr "Utilitzar el processador Mathjax"
|
||||
|
||||
#: ../../addon/mathjax/mathjax.php:74
|
||||
#: ../../addon/mathjax/mathjax.php:75 ../../addon.old/mathjax/mathjax.php:74
|
||||
msgid "MathJax Base URL"
|
||||
msgstr "URL Base de Mathjax"
|
||||
|
||||
#: ../../addon/mathjax/mathjax.php:74
|
||||
#: ../../addon/mathjax/mathjax.php:75 ../../addon.old/mathjax/mathjax.php:74
|
||||
msgid ""
|
||||
"The URL for the javascript file that should be included to use MathJax. Can "
|
||||
"be either the MathJax CDN or another installation of MathJax."
|
||||
msgstr "La URL del fitxer javascript que ha de ser inclòs per a usar Mathjax. Pot ser utilitzat per Mathjax CDN o un altre instal·lació de Mathjax."
|
||||
|
||||
#: ../../addon/editplain/editplain.php:46
|
||||
#: ../../addon.old/group_text/group_text.php:46
|
||||
#: ../../addon.old/editplain/editplain.php:46
|
||||
msgid "Editplain settings updated."
|
||||
msgstr "Actualitzar la configuració de Editplain."
|
||||
|
||||
#: ../../addon/editplain/editplain.php:76
|
||||
#: ../../addon.old/editplain/editplain.php:76
|
||||
msgid "Editplain Settings"
|
||||
msgstr "Configuració de Editplain"
|
||||
|
||||
#: ../../addon/editplain/editplain.php:78
|
||||
#: ../../addon.old/editplain/editplain.php:78
|
||||
msgid "Disable richtext status editor"
|
||||
msgstr "Deshabilitar l'editor d'estatus de texte enriquit"
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:89
|
||||
#: ../../addon.old/gravatar/gravatar.php:89
|
||||
msgid ""
|
||||
"Libravatar addon is installed, too. Please disable Libravatar addon or this "
|
||||
"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
|
||||
|
|
@ -6470,26 +7218,32 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:96
|
||||
#: ../../addon.old/gravatar/gravatar.php:96
|
||||
msgid "Select default avatar image if none was found at Gravatar. See README"
|
||||
msgstr "Se selecciona la imatge d'avatar per defecte si no es troba cap en Gravatar. Veure el README"
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:97
|
||||
#: ../../addon.old/gravatar/gravatar.php:97
|
||||
msgid "Rating of images"
|
||||
msgstr "Classificació de les imatges"
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:97
|
||||
#: ../../addon.old/gravatar/gravatar.php:97
|
||||
msgid "Select the appropriate avatar rating for your site. See README"
|
||||
msgstr "Selecciona la classe d'avatar apropiat pel teu lloc. Veure el README"
|
||||
|
||||
#: ../../addon/gravatar/gravatar.php:111
|
||||
#: ../../addon.old/gravatar/gravatar.php:111
|
||||
msgid "Gravatar settings updated."
|
||||
msgstr "Ajustos de Gravatar actualitzats."
|
||||
|
||||
#: ../../addon/testdrive/testdrive.php:95
|
||||
#: ../../addon.old/testdrive/testdrive.php:95
|
||||
msgid "Your Friendica test account is about to expire."
|
||||
msgstr "La teva provatura de Friendica esta a prop d'expirar."
|
||||
|
||||
#: ../../addon/testdrive/testdrive.php:96
|
||||
#: ../../addon.old/testdrive/testdrive.php:96
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Hi %1$s,\n"
|
||||
|
|
@ -6498,132 +7252,156 @@ msgid ""
|
|||
msgstr "Hola %1$s ,\n\nEl seu compte de prova a %2$s expirarà en menys de cinc dies . Esperem que hagi gaudit d'aquesta prova i aprofita aquesta oportunitat per trobar un lloc web Friendica permanent per a les teves comunicacions socials integrades . Una llista de llocs públics es troba disponible a http://dir.friendica.com/siteinfo - i per obtenir més informació sobre com configurar el vostre servidor Friendica consulteu el lloc web del projecte en el Friendica http://friendica.com ."
|
||||
|
||||
#: ../../addon/pageheader/pageheader.php:50
|
||||
#: ../../addon.old/pageheader/pageheader.php:50
|
||||
msgid "\"pageheader\" Settings"
|
||||
msgstr "Configuració de la capçalera de pàgina."
|
||||
|
||||
#: ../../addon/pageheader/pageheader.php:68
|
||||
#: ../../addon.old/pageheader/pageheader.php:68
|
||||
msgid "pageheader Settings saved."
|
||||
msgstr "guardada la configuració de la capçalera de pàgina."
|
||||
|
||||
#: ../../addon/ijpost/ijpost.php:39
|
||||
#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39
|
||||
msgid "Post to Insanejournal"
|
||||
msgstr "Enviament a Insanejournal"
|
||||
|
||||
#: ../../addon/ijpost/ijpost.php:70
|
||||
#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70
|
||||
msgid "InsaneJournal Post Settings"
|
||||
msgstr "Ajustos d'Enviament a Insanejournal"
|
||||
|
||||
#: ../../addon/ijpost/ijpost.php:72
|
||||
#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72
|
||||
msgid "Enable InsaneJournal Post Plugin"
|
||||
msgstr "Habilita el Plugin d'Enviaments a Insanejournal"
|
||||
|
||||
#: ../../addon/ijpost/ijpost.php:77
|
||||
#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77
|
||||
msgid "InsaneJournal username"
|
||||
msgstr "Nom d'usuari de Insanejournal"
|
||||
|
||||
#: ../../addon/ijpost/ijpost.php:82
|
||||
#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82
|
||||
msgid "InsaneJournal password"
|
||||
msgstr "Contrasenya de Insanejournal"
|
||||
|
||||
#: ../../addon/ijpost/ijpost.php:87
|
||||
#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87
|
||||
msgid "Post to InsaneJournal by default"
|
||||
msgstr "Enviar per defecte a Insanejournal"
|
||||
|
||||
#: ../../addon/jappixmini/jappixmini.php:266
|
||||
#: ../../addon.old/jappixmini/jappixmini.php:266
|
||||
msgid "Jappix Mini addon settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/jappixmini/jappixmini.php:268
|
||||
#: ../../addon.old/jappixmini/jappixmini.php:268
|
||||
msgid "Activate addon"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/jappixmini/jappixmini.php:271
|
||||
#: ../../addon.old/jappixmini/jappixmini.php:271
|
||||
msgid ""
|
||||
"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/jappixmini/jappixmini.php:274
|
||||
#: ../../addon.old/jappixmini/jappixmini.php:274
|
||||
msgid "Jabber username"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/jappixmini/jappixmini.php:277
|
||||
#: ../../addon.old/jappixmini/jappixmini.php:277
|
||||
msgid "Jabber server"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/jappixmini/jappixmini.php:281
|
||||
#: ../../addon.old/jappixmini/jappixmini.php:281
|
||||
msgid "Jabber BOSH host"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/jappixmini/jappixmini.php:285
|
||||
#: ../../addon.old/jappixmini/jappixmini.php:285
|
||||
msgid "Jabber password"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/jappixmini/jappixmini.php:290
|
||||
#: ../../addon.old/jappixmini/jappixmini.php:290
|
||||
msgid "Encrypt Jabber password with Friendica password (recommended)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/jappixmini/jappixmini.php:293
|
||||
#: ../../addon.old/jappixmini/jappixmini.php:293
|
||||
msgid "Friendica password"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/jappixmini/jappixmini.php:296
|
||||
#: ../../addon.old/jappixmini/jappixmini.php:296
|
||||
msgid "Approve subscription requests from Friendica contacts automatically"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/jappixmini/jappixmini.php:299
|
||||
#: ../../addon.old/jappixmini/jappixmini.php:299
|
||||
msgid "Subscribe to Friendica contacts automatically"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/jappixmini/jappixmini.php:302
|
||||
#: ../../addon.old/jappixmini/jappixmini.php:302
|
||||
msgid "Purge internal list of jabber addresses of contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/jappixmini/jappixmini.php:308
|
||||
#: ../../addon.old/jappixmini/jappixmini.php:308
|
||||
msgid "Add contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/viewsrc/viewsrc.php:37
|
||||
#: ../../addon/viewsrc/viewsrc.php:39 ../../addon.old/viewsrc/viewsrc.php:37
|
||||
msgid "View Source"
|
||||
msgstr "Veure les Fonts"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:134
|
||||
#: ../../addon/statusnet/statusnet.php:138
|
||||
#: ../../addon.old/statusnet/statusnet.php:134
|
||||
msgid "Post to StatusNet"
|
||||
msgstr "Publica-ho a StatusNet"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:176
|
||||
#: ../../addon/statusnet/statusnet.php:180
|
||||
#: ../../addon.old/statusnet/statusnet.php:176
|
||||
msgid ""
|
||||
"Please contact your site administrator.<br />The provided API URL is not "
|
||||
"valid."
|
||||
msgstr "Si us plau, poseu-vos en contacte amb l'administrador del lloc. <br /> L'adreça URL de l'API proporcionada no és vàlida."
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:204
|
||||
#: ../../addon/statusnet/statusnet.php:208
|
||||
#: ../../addon.old/statusnet/statusnet.php:204
|
||||
msgid "We could not contact the StatusNet API with the Path you entered."
|
||||
msgstr "No hem pogut posar-nos en contacte amb l'API StatusNet amb la ruta que has introduït."
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:232
|
||||
#: ../../addon/statusnet/statusnet.php:238
|
||||
#: ../../addon.old/statusnet/statusnet.php:232
|
||||
msgid "StatusNet settings updated."
|
||||
msgstr "La configuració StatusNet actualitzada."
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:257
|
||||
#: ../../addon/statusnet/statusnet.php:269
|
||||
#: ../../addon.old/statusnet/statusnet.php:257
|
||||
msgid "StatusNet Posting Settings"
|
||||
msgstr "Configuració d'Enviaments per a StatusNet"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:271
|
||||
#: ../../addon/statusnet/statusnet.php:283
|
||||
#: ../../addon.old/statusnet/statusnet.php:271
|
||||
msgid "Globally Available StatusNet OAuthKeys"
|
||||
msgstr "OAuthKeys de StatusNet Globalment Disponible"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:272
|
||||
#: ../../addon/statusnet/statusnet.php:284
|
||||
#: ../../addon.old/statusnet/statusnet.php:272
|
||||
msgid ""
|
||||
"There are preconfigured OAuth key pairs for some StatusNet servers "
|
||||
"available. If you are useing one of them, please use these credentials. If "
|
||||
"not feel free to connect to any other StatusNet instance (see below)."
|
||||
msgstr "Hi ha preconfigurats parells clau OAuth per a alguns servidors StatusNet disponibles. Si està emprant un d'ells, utilitzi aquestes credencials. Si no és així no dubteu a connectar-se a qualsevol altra instància StatusNet (veure a baix)."
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:280
|
||||
#: ../../addon/statusnet/statusnet.php:292
|
||||
#: ../../addon.old/statusnet/statusnet.php:280
|
||||
msgid "Provide your own OAuth Credentials"
|
||||
msgstr "Proporcioneu les vostres credencials de OAuth"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:281
|
||||
#: ../../addon/statusnet/statusnet.php:293
|
||||
#: ../../addon.old/statusnet/statusnet.php:281
|
||||
msgid ""
|
||||
"No consumer key pair for StatusNet found. Register your Friendica Account as"
|
||||
" an desktop client on your StatusNet account, copy the consumer key pair "
|
||||
|
|
@ -6632,19 +7410,23 @@ msgid ""
|
|||
"Friendica installation at your favorited StatusNet installation."
|
||||
msgstr "no s'ha trobat cap parell \"consumer key\" per StatusNet. Registra el teu compte Friendica com un client d'escriptori en el seu compte StatusNet, copieu el parell de \"consumer key\" aquí i entri a l'arrel de la base de l'API. <br /> Abans de registrar el seu parell de claus OAuth demani a l'administrador si ja hi ha un parell de claus per a aquesta instal·lació de Friendica en la instal·lació del teu favorit StatusNet."
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:283
|
||||
#: ../../addon/statusnet/statusnet.php:295
|
||||
#: ../../addon.old/statusnet/statusnet.php:283
|
||||
msgid "OAuth Consumer Key"
|
||||
msgstr "OAuth Consumer Key"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:286
|
||||
#: ../../addon/statusnet/statusnet.php:298
|
||||
#: ../../addon.old/statusnet/statusnet.php:286
|
||||
msgid "OAuth Consumer Secret"
|
||||
msgstr "OAuth Consumer Secret"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:289
|
||||
#: ../../addon/statusnet/statusnet.php:301
|
||||
#: ../../addon.old/statusnet/statusnet.php:289
|
||||
msgid "Base API Path (remember the trailing /)"
|
||||
msgstr "Base API Path (recorda deixar / al final)"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:310
|
||||
#: ../../addon/statusnet/statusnet.php:322
|
||||
#: ../../addon.old/statusnet/statusnet.php:310
|
||||
msgid ""
|
||||
"To connect to your StatusNet account click the button below to get a "
|
||||
"security code from StatusNet which you have to copy into the input box below"
|
||||
|
|
@ -6652,38 +7434,47 @@ msgid ""
|
|||
" to StatusNet."
|
||||
msgstr "Per connectar al seu compte StatusNet, feu clic al botó de sota per obtenir un codi de seguretat StatusNet, que has de copiar a la casella de sota, i enviar el formulari. Només els missatges <strong> públics </strong> es publicaran en StatusNet."
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:311
|
||||
#: ../../addon/statusnet/statusnet.php:323
|
||||
#: ../../addon.old/statusnet/statusnet.php:311
|
||||
msgid "Log in with StatusNet"
|
||||
msgstr "Accedeixi com en StatusNet"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:313
|
||||
#: ../../addon/statusnet/statusnet.php:325
|
||||
#: ../../addon.old/statusnet/statusnet.php:313
|
||||
msgid "Copy the security code from StatusNet here"
|
||||
msgstr "Copieu el codi de seguretat StatusNet aquí"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:319
|
||||
#: ../../addon/statusnet/statusnet.php:331
|
||||
#: ../../addon.old/statusnet/statusnet.php:319
|
||||
msgid "Cancel Connection Process"
|
||||
msgstr "Cancel·lar el procés de connexió"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:321
|
||||
#: ../../addon/statusnet/statusnet.php:333
|
||||
#: ../../addon.old/statusnet/statusnet.php:321
|
||||
msgid "Current StatusNet API is"
|
||||
msgstr "L'Actual StatusNet API és"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:322
|
||||
#: ../../addon/statusnet/statusnet.php:334
|
||||
#: ../../addon.old/statusnet/statusnet.php:322
|
||||
msgid "Cancel StatusNet Connection"
|
||||
msgstr "Cancel·lar la connexió amb StatusNet"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189
|
||||
#: ../../addon/statusnet/statusnet.php:345 ../../addon/twitter/twitter.php:200
|
||||
#: ../../addon.old/statusnet/statusnet.php:333
|
||||
#: ../../addon.old/twitter/twitter.php:189
|
||||
msgid "Currently connected to: "
|
||||
msgstr "Actualment connectat a: "
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:334
|
||||
#: ../../addon/statusnet/statusnet.php:346
|
||||
#: ../../addon.old/statusnet/statusnet.php:334
|
||||
msgid ""
|
||||
"If enabled all your <strong>public</strong> postings can be posted to the "
|
||||
"associated StatusNet account. You can choose to do so by default (here) or "
|
||||
"for every posting separately in the posting options when writing the entry."
|
||||
msgstr "Si està activat, tots els seus anuncis <strong>públics</strong> poden ser publicats en el compte StatusNet associat. Vostè pot optar per fer-ho per defecte (en aquest cas) o per cada missatge per separat en les opcions de comptabilització en escriure l'entrada."
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:336
|
||||
#: ../../addon/statusnet/statusnet.php:348
|
||||
#: ../../addon.old/statusnet/statusnet.php:336
|
||||
msgid ""
|
||||
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
|
||||
"details from unknown viewers?</em>) the link potentially included in public "
|
||||
|
|
@ -6691,144 +7482,191 @@ msgid ""
|
|||
"informing the visitor that the access to your profile has been restricted."
|
||||
msgstr "<strong>Nota</strong>: A causa de les seves opcions de privacitat (<em>Amaga els detalls del teu perfil dels espectadors desconeguts? </em>) el vincle potencialment inclòs en anuncis públics transmesos a StatusNet conduirà el visitant a una pàgina en blanc en la que informarà al visitants que l'accés al seu perfil s'ha restringit."
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:339
|
||||
#: ../../addon/statusnet/statusnet.php:351
|
||||
#: ../../addon.old/statusnet/statusnet.php:339
|
||||
msgid "Allow posting to StatusNet"
|
||||
msgstr "Permetre enviaments a StatusNet"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:342
|
||||
#: ../../addon/statusnet/statusnet.php:354
|
||||
#: ../../addon.old/statusnet/statusnet.php:342
|
||||
msgid "Send public postings to StatusNet by default"
|
||||
msgstr "Enviar missatges públics a StatusNet per defecte"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:345
|
||||
#: ../../addon/statusnet/statusnet.php:358
|
||||
msgid ""
|
||||
"Mirror all posts from statusnet that are no replies or repeated messages"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:362
|
||||
msgid "Shortening method that optimizes the post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:366
|
||||
#: ../../addon.old/statusnet/statusnet.php:345
|
||||
msgid "Send linked #-tags and @-names to StatusNet"
|
||||
msgstr "Enviar enllaços #-etiquetes i @-noms a StatusNet"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
|
||||
#: ../../addon/statusnet/statusnet.php:371 ../../addon/twitter/twitter.php:226
|
||||
#: ../../addon.old/statusnet/statusnet.php:350
|
||||
#: ../../addon.old/twitter/twitter.php:206
|
||||
msgid "Clear OAuth configuration"
|
||||
msgstr "Esborrar configuració de OAuth"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:568
|
||||
#: ../../addon/statusnet/statusnet.php:745
|
||||
#: ../../addon.old/statusnet/statusnet.php:568
|
||||
msgid "API URL"
|
||||
msgstr "API URL"
|
||||
|
||||
#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
|
||||
#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
|
||||
msgid "Infinite Improbability Drive"
|
||||
msgstr "Infinite Improbability Drive"
|
||||
|
||||
#: ../../addon/tumblr/tumblr.php:36
|
||||
#: ../../addon/tumblr/tumblr.php:144
|
||||
msgid "You are now authenticated to tumblr."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/tumblr/tumblr.php:145
|
||||
msgid "return to the connector page"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/tumblr/tumblr.php:158 ../../addon.old/tumblr/tumblr.php:36
|
||||
msgid "Post to Tumblr"
|
||||
msgstr "Publica-ho al Tumblr"
|
||||
|
||||
#: ../../addon/tumblr/tumblr.php:67
|
||||
#: ../../addon/tumblr/tumblr.php:185 ../../addon.old/tumblr/tumblr.php:67
|
||||
msgid "Tumblr Post Settings"
|
||||
msgstr "Configuració d'Enviaments de Tumblr"
|
||||
|
||||
#: ../../addon/tumblr/tumblr.php:69
|
||||
#: ../../addon/tumblr/tumblr.php:188
|
||||
msgid "(Re-)Authenticate your tumblr page"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/tumblr/tumblr.php:192 ../../addon.old/tumblr/tumblr.php:69
|
||||
msgid "Enable Tumblr Post Plugin"
|
||||
msgstr "Habilita el plugin de enviaments de Tumblr"
|
||||
|
||||
#: ../../addon/tumblr/tumblr.php:74
|
||||
msgid "Tumblr login"
|
||||
msgstr "Inici de sessió de Tumblr"
|
||||
|
||||
#: ../../addon/tumblr/tumblr.php:79
|
||||
msgid "Tumblr password"
|
||||
msgstr "Caontrasenya de Tumblr"
|
||||
|
||||
#: ../../addon/tumblr/tumblr.php:84
|
||||
#: ../../addon/tumblr/tumblr.php:197 ../../addon.old/tumblr/tumblr.php:84
|
||||
msgid "Post to Tumblr by default"
|
||||
msgstr "Enviar a Tumblr per defecte"
|
||||
|
||||
#: ../../addon/tumblr/tumblr.php:217
|
||||
msgid "Post to page:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/tumblr/tumblr.php:228
|
||||
msgid "You are not authenticated to tumblr"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/numfriends/numfriends.php:46
|
||||
#: ../../addon.old/numfriends/numfriends.php:46
|
||||
msgid "Numfriends settings updated."
|
||||
msgstr "Actualitzar la configuració de Numfriends."
|
||||
|
||||
#: ../../addon/numfriends/numfriends.php:77
|
||||
#: ../../addon.old/numfriends/numfriends.php:77
|
||||
msgid "Numfriends Settings"
|
||||
msgstr "Configuració de Numfriends"
|
||||
|
||||
#: ../../addon/gnot/gnot.php:48
|
||||
#: ../../addon/numfriends/numfriends.php:79 ../../addon.old/bg/bg.php:84
|
||||
#: ../../addon.old/numfriends/numfriends.php:79
|
||||
msgid "How many contacts to display on profile sidebar"
|
||||
msgstr "Quants contactes per mostrar a la barra lateral el perfil"
|
||||
|
||||
#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48
|
||||
msgid "Gnot settings updated."
|
||||
msgstr "Configuració de Gnot actualitzada"
|
||||
|
||||
#: ../../addon/gnot/gnot.php:79
|
||||
#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79
|
||||
msgid "Gnot Settings"
|
||||
msgstr "Configuració de Gnot"
|
||||
|
||||
#: ../../addon/gnot/gnot.php:81
|
||||
#: ../../addon/gnot/gnot.php:81 ../../addon.old/gnot/gnot.php:81
|
||||
msgid ""
|
||||
"Allows threading of email comment notifications on Gmail and anonymising the"
|
||||
" subject line."
|
||||
msgstr "Permet crear fils de les notificacions de comentaris de correu electrònic a Gmail i anonimat de la línia d'assumpte."
|
||||
|
||||
#: ../../addon/gnot/gnot.php:82
|
||||
#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82
|
||||
msgid "Enable this plugin/addon?"
|
||||
msgstr "Activar aquest plugin/aplicació?"
|
||||
|
||||
#: ../../addon/gnot/gnot.php:97
|
||||
#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] Comment to conversation #%d"
|
||||
msgstr "[Friendica: Notifica] Conversació comentada #%d"
|
||||
|
||||
#: ../../addon/wppost/wppost.php:42
|
||||
#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42
|
||||
msgid "Post to Wordpress"
|
||||
msgstr "Publica-ho al Wordpress"
|
||||
|
||||
#: ../../addon/wppost/wppost.php:76
|
||||
#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76
|
||||
msgid "WordPress Post Settings"
|
||||
msgstr "Configuració d'enviaments a WordPress"
|
||||
|
||||
#: ../../addon/wppost/wppost.php:78
|
||||
#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78
|
||||
msgid "Enable WordPress Post Plugin"
|
||||
msgstr "Habilitar Configuració d'Enviaments a WordPress"
|
||||
|
||||
#: ../../addon/wppost/wppost.php:83
|
||||
#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83
|
||||
msgid "WordPress username"
|
||||
msgstr "Nom d'usuari de WordPress"
|
||||
|
||||
#: ../../addon/wppost/wppost.php:88
|
||||
#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88
|
||||
msgid "WordPress password"
|
||||
msgstr "Contrasenya de WordPress"
|
||||
|
||||
#: ../../addon/wppost/wppost.php:93
|
||||
#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93
|
||||
msgid "WordPress API URL"
|
||||
msgstr "WordPress API URL"
|
||||
|
||||
#: ../../addon/wppost/wppost.php:98
|
||||
#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98
|
||||
msgid "Post to WordPress by default"
|
||||
msgstr "Enviar a WordPress per defecte"
|
||||
|
||||
#: ../../addon/wppost/wppost.php:103
|
||||
#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103
|
||||
msgid "Provide a backlink to the Friendica post"
|
||||
msgstr "Proveeix un retroenllaç al missatge de Friendica"
|
||||
|
||||
#: ../../addon/wppost/wppost.php:207
|
||||
#: ../../addon/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
|
||||
#: ../../addon/posterous/posterous.php:189
|
||||
#: ../../addon.old/drpost/drpost.php:184 ../../addon.old/wppost/wppost.php:201
|
||||
#: ../../addon.old/blogger/blogger.php:172
|
||||
#: ../../addon.old/posterous/posterous.php:189
|
||||
msgid "Post from Friendica"
|
||||
msgstr "Enviament des de Friendica"
|
||||
|
||||
#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207
|
||||
msgid "Read the original post and comment stream on Friendica"
|
||||
msgstr "Llegeix el missatge original i el flux de comentaris en Friendica"
|
||||
|
||||
#: ../../addon/showmore/showmore.php:38
|
||||
#: ../../addon.old/showmore/showmore.php:38
|
||||
msgid "\"Show more\" Settings"
|
||||
msgstr "Configuració de \"Mostrar més\""
|
||||
|
||||
#: ../../addon/showmore/showmore.php:41
|
||||
#: ../../addon.old/showmore/showmore.php:41
|
||||
msgid "Enable Show More"
|
||||
msgstr "Habilita Mostrar Més"
|
||||
|
||||
#: ../../addon/showmore/showmore.php:44
|
||||
#: ../../addon.old/showmore/showmore.php:44
|
||||
msgid "Cutting posts after how much characters"
|
||||
msgstr "Tallar els missatges després de quants caràcters"
|
||||
|
||||
#: ../../addon/showmore/showmore.php:65
|
||||
#: ../../addon.old/showmore/showmore.php:65
|
||||
msgid "Show More Settings saved."
|
||||
msgstr "Guardada la configuració de \"Mostra Més\"."
|
||||
|
||||
#: ../../addon/piwik/piwik.php:79
|
||||
#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79
|
||||
msgid ""
|
||||
"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
|
||||
"analytics tool."
|
||||
msgstr "Aquest lloc web realitza un seguiment mitjançant la eina d'anàlisi <a href='http://www.piwik.org'>Piwik</a>."
|
||||
|
||||
#: ../../addon/piwik/piwik.php:82
|
||||
#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you do not want that your visits are logged this way you <a href='%s'>can"
|
||||
|
|
@ -6836,47 +7674,47 @@ msgid ""
|
|||
"(opt-out)."
|
||||
msgstr "Si no vol que les seves visites es registrin d'aquesta manera vostè <a href='%s'> pot establir una cookie per evitar a Piwik a partir de noves visites del lloc web </a> (opt-out)."
|
||||
|
||||
#: ../../addon/piwik/piwik.php:90
|
||||
#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
|
||||
msgid "Piwik Base URL"
|
||||
msgstr "URL Piwik Base"
|
||||
|
||||
#: ../../addon/piwik/piwik.php:90
|
||||
#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
|
||||
msgid ""
|
||||
"Absolute path to your Piwik installation. (without protocol (http/s), with "
|
||||
"trailing slash)"
|
||||
msgstr "Trajectoria absoluta per a la instal·lació de Piwik (sense el protocol (http/s), amb la barra final )"
|
||||
|
||||
#: ../../addon/piwik/piwik.php:91
|
||||
#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91
|
||||
msgid "Site ID"
|
||||
msgstr "Lloc ID"
|
||||
|
||||
#: ../../addon/piwik/piwik.php:92
|
||||
#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92
|
||||
msgid "Show opt-out cookie link?"
|
||||
msgstr "Mostra l'enllaç cookie opt-out?"
|
||||
|
||||
#: ../../addon/piwik/piwik.php:93
|
||||
#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93
|
||||
msgid "Asynchronous tracking"
|
||||
msgstr "Seguiment asíncrono"
|
||||
|
||||
#: ../../addon/twitter/twitter.php:73
|
||||
#: ../../addon/twitter/twitter.php:77 ../../addon.old/twitter/twitter.php:73
|
||||
msgid "Post to Twitter"
|
||||
msgstr "Publica-ho al Twitter"
|
||||
|
||||
#: ../../addon/twitter/twitter.php:122
|
||||
#: ../../addon/twitter/twitter.php:129 ../../addon.old/twitter/twitter.php:122
|
||||
msgid "Twitter settings updated."
|
||||
msgstr "La configuració de Twitter actualitzada."
|
||||
|
||||
#: ../../addon/twitter/twitter.php:146
|
||||
#: ../../addon/twitter/twitter.php:157 ../../addon.old/twitter/twitter.php:146
|
||||
msgid "Twitter Posting Settings"
|
||||
msgstr "Configuració d'Enviaments per a Twitter"
|
||||
|
||||
#: ../../addon/twitter/twitter.php:153
|
||||
#: ../../addon/twitter/twitter.php:164 ../../addon.old/twitter/twitter.php:153
|
||||
msgid ""
|
||||
"No consumer key pair for Twitter found. Please contact your site "
|
||||
"administrator."
|
||||
msgstr "No s'ha pogut emparellar cap clau \"consumer key\" per a Twitter. Si us plau, poseu-vos en contacte amb l'administrador del lloc."
|
||||
|
||||
#: ../../addon/twitter/twitter.php:172
|
||||
#: ../../addon/twitter/twitter.php:183 ../../addon.old/twitter/twitter.php:172
|
||||
msgid ""
|
||||
"At this Friendica instance the Twitter plugin was enabled but you have not "
|
||||
"yet connected your account to your Twitter account. To do so click the "
|
||||
|
|
@ -6885,22 +7723,22 @@ msgid ""
|
|||
" be posted to Twitter."
|
||||
msgstr "En aquesta instància Friendica el plugin Twitter va ser habilitat, però encara no ha connectat el compte al seu compte de Twitter. Per a això feu clic al botó de sota per obtenir un PIN de Twitter que ha de copiar a la casella de sota i enviar el formulari. Només els missatges <strong> públics </strong> es publicaran a Twitter."
|
||||
|
||||
#: ../../addon/twitter/twitter.php:173
|
||||
#: ../../addon/twitter/twitter.php:184 ../../addon.old/twitter/twitter.php:173
|
||||
msgid "Log in with Twitter"
|
||||
msgstr "Accedeixi com en Twitter"
|
||||
|
||||
#: ../../addon/twitter/twitter.php:175
|
||||
#: ../../addon/twitter/twitter.php:186 ../../addon.old/twitter/twitter.php:175
|
||||
msgid "Copy the PIN from Twitter here"
|
||||
msgstr "Copieu el codi PIN de Twitter aquí"
|
||||
|
||||
#: ../../addon/twitter/twitter.php:190
|
||||
#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:190
|
||||
msgid ""
|
||||
"If enabled all your <strong>public</strong> postings can be posted to the "
|
||||
"associated Twitter account. You can choose to do so by default (here) or for"
|
||||
" every posting separately in the posting options when writing the entry."
|
||||
msgstr "Si està activat, tots els seus anuncis <strong> públics </strong> poden ser publicats en el corresponent compte de Twitter. Vostè pot optar per fer-ho per defecte (en aquest cas) o per cada missatge per separat en les opcions de comptabilització en escriure l'entrada."
|
||||
|
||||
#: ../../addon/twitter/twitter.php:192
|
||||
#: ../../addon/twitter/twitter.php:203 ../../addon.old/twitter/twitter.php:192
|
||||
msgid ""
|
||||
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
|
||||
"details from unknown viewers?</em>) the link potentially included in public "
|
||||
|
|
@ -6908,130 +7746,155 @@ msgid ""
|
|||
"the visitor that the access to your profile has been restricted."
|
||||
msgstr "<strong>Nota</strong>: donada la seva configuració de privacitat (<em> Amaga els detalls del teu perfil dels espectadors desconeguts? </em>) el vincle potencialment inclòs en anuncis públics retransmesos a Twitter conduirà al visitant a una pàgina en blanc informar als visitants que l'accés al seu perfil s'ha restringit."
|
||||
|
||||
#: ../../addon/twitter/twitter.php:195
|
||||
#: ../../addon/twitter/twitter.php:206 ../../addon.old/twitter/twitter.php:195
|
||||
msgid "Allow posting to Twitter"
|
||||
msgstr "Permetre anunci a Twitter"
|
||||
|
||||
#: ../../addon/twitter/twitter.php:198
|
||||
#: ../../addon/twitter/twitter.php:209 ../../addon.old/twitter/twitter.php:198
|
||||
msgid "Send public postings to Twitter by default"
|
||||
msgstr "Enviar anuncis públics a Twitter per defecte"
|
||||
|
||||
#: ../../addon/twitter/twitter.php:201
|
||||
#: ../../addon/twitter/twitter.php:213
|
||||
msgid "Mirror all posts from twitter that are no replies or retweets"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:217
|
||||
msgid "Shortening method that optimizes the tweet"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:221 ../../addon.old/twitter/twitter.php:201
|
||||
msgid "Send linked #-tags and @-names to Twitter"
|
||||
msgstr "Enviar enllaços #-etiquetes i @-noms a Twitter"
|
||||
|
||||
#: ../../addon/twitter/twitter.php:396
|
||||
#: ../../addon/twitter/twitter.php:558 ../../addon.old/twitter/twitter.php:396
|
||||
msgid "Consumer key"
|
||||
msgstr "Consumer key"
|
||||
|
||||
#: ../../addon/twitter/twitter.php:397
|
||||
#: ../../addon/twitter/twitter.php:559 ../../addon.old/twitter/twitter.php:397
|
||||
msgid "Consumer secret"
|
||||
msgstr "Consumer secret"
|
||||
|
||||
#: ../../addon/irc/irc.php:44
|
||||
#: ../../addon/twitter/twitter.php:560
|
||||
msgid "Name of the Twitter Application"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:560
|
||||
msgid ""
|
||||
"set this to avoid mirroring postings from ~friendica back to ~friendica"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44
|
||||
msgid "IRC Settings"
|
||||
msgstr "Ajustos de IRC"
|
||||
|
||||
#: ../../addon/irc/irc.php:46
|
||||
#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46
|
||||
msgid "Channel(s) to auto connect (comma separated)"
|
||||
msgstr "Canal(s) per auto connectar (separats per comes)"
|
||||
|
||||
#: ../../addon/irc/irc.php:51
|
||||
#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51
|
||||
msgid "Popular Channels (comma separated)"
|
||||
msgstr "Canals Populars (separats per comes)"
|
||||
|
||||
#: ../../addon/irc/irc.php:69
|
||||
#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69
|
||||
msgid "IRC settings saved."
|
||||
msgstr "Ajustos del IRC guardats."
|
||||
|
||||
#: ../../addon/irc/irc.php:74
|
||||
#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74
|
||||
msgid "IRC Chatroom"
|
||||
msgstr "IRC Chatroom"
|
||||
|
||||
#: ../../addon/irc/irc.php:96
|
||||
#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96
|
||||
msgid "Popular Channels"
|
||||
msgstr "Canals Populars"
|
||||
|
||||
#: ../../addon/fromapp/fromapp.php:38
|
||||
#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38
|
||||
msgid "Fromapp settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fromapp/fromapp.php:64
|
||||
#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64
|
||||
msgid "FromApp Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fromapp/fromapp.php:66
|
||||
#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66
|
||||
msgid ""
|
||||
"The application name you would like to show your posts originating from."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fromapp/fromapp.php:70
|
||||
#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70
|
||||
msgid "Use this application name even if another application was used."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/blogger/blogger.php:42
|
||||
#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42
|
||||
msgid "Post to blogger"
|
||||
msgstr "Enviament a blogger"
|
||||
|
||||
#: ../../addon/blogger/blogger.php:74
|
||||
#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74
|
||||
msgid "Blogger Post Settings"
|
||||
msgstr "Ajustos d'enviament a blogger"
|
||||
|
||||
#: ../../addon/blogger/blogger.php:76
|
||||
#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76
|
||||
msgid "Enable Blogger Post Plugin"
|
||||
msgstr "Habilita el Plugin d'Enviaments a Blogger"
|
||||
|
||||
#: ../../addon/blogger/blogger.php:81
|
||||
#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81
|
||||
msgid "Blogger username"
|
||||
msgstr "Nom d'usuari a blogger"
|
||||
|
||||
#: ../../addon/blogger/blogger.php:86
|
||||
#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86
|
||||
msgid "Blogger password"
|
||||
msgstr "Contrasenya a blogger"
|
||||
|
||||
#: ../../addon/blogger/blogger.php:91
|
||||
#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91
|
||||
msgid "Blogger API URL"
|
||||
msgstr "Blogger API URL"
|
||||
|
||||
#: ../../addon/blogger/blogger.php:96
|
||||
#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96
|
||||
msgid "Post to Blogger by default"
|
||||
msgstr "Enviament a Blogger per defecte"
|
||||
|
||||
#: ../../addon/posterous/posterous.php:37
|
||||
#: ../../addon.old/posterous/posterous.php:37
|
||||
msgid "Post to Posterous"
|
||||
msgstr "enviament a Posterous"
|
||||
|
||||
#: ../../addon/posterous/posterous.php:70
|
||||
#: ../../addon.old/posterous/posterous.php:70
|
||||
msgid "Posterous Post Settings"
|
||||
msgstr "Configuració d'Enviaments a Posterous"
|
||||
|
||||
#: ../../addon/posterous/posterous.php:72
|
||||
#: ../../addon.old/posterous/posterous.php:72
|
||||
msgid "Enable Posterous Post Plugin"
|
||||
msgstr "Habilitar plugin d'Enviament de Posterous"
|
||||
|
||||
#: ../../addon/posterous/posterous.php:77
|
||||
#: ../../addon.old/posterous/posterous.php:77
|
||||
msgid "Posterous login"
|
||||
msgstr "Inici de sessió a Posterous"
|
||||
|
||||
#: ../../addon/posterous/posterous.php:82
|
||||
#: ../../addon.old/posterous/posterous.php:82
|
||||
msgid "Posterous password"
|
||||
msgstr "Contrasenya a Posterous"
|
||||
|
||||
#: ../../addon/posterous/posterous.php:87
|
||||
#: ../../addon.old/posterous/posterous.php:87
|
||||
msgid "Posterous site ID"
|
||||
msgstr "ID al lloc Posterous"
|
||||
|
||||
#: ../../addon/posterous/posterous.php:92
|
||||
#: ../../addon.old/posterous/posterous.php:92
|
||||
msgid "Posterous API token"
|
||||
msgstr "Posterous API token"
|
||||
|
||||
#: ../../addon/posterous/posterous.php:97
|
||||
#: ../../addon.old/posterous/posterous.php:97
|
||||
msgid "Post to Posterous by default"
|
||||
msgstr "Enviar a Posterous per defecte"
|
||||
|
||||
#: ../../view/theme/cleanzero/config.php:82
|
||||
#: ../../view/theme/diabook/config.php:192
|
||||
#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72
|
||||
#: ../../view/theme/diabook/config.php:154
|
||||
#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
|
||||
msgid "Theme settings"
|
||||
msgstr "Configuració de Temes"
|
||||
|
||||
|
|
@ -7040,7 +7903,7 @@ msgid "Set resize level for images in posts and comments (width and height)"
|
|||
msgstr "Ajusteu el nivell de canvi de mida d'imatges en els missatges i comentaris ( amplada i alçada"
|
||||
|
||||
#: ../../view/theme/cleanzero/config.php:84
|
||||
#: ../../view/theme/diabook/config.php:193
|
||||
#: ../../view/theme/diabook/config.php:155
|
||||
#: ../../view/theme/dispy/config.php:73
|
||||
msgid "Set font-size for posts and comments"
|
||||
msgstr "Canvia la mida del tipus de lletra per enviaments i comentaris"
|
||||
|
|
@ -7050,193 +7913,185 @@ msgid "Set theme width"
|
|||
msgstr "Ajustar l'ample del tema"
|
||||
|
||||
#: ../../view/theme/cleanzero/config.php:86
|
||||
#: ../../view/theme/quattro/config.php:57
|
||||
#: ../../view/theme/quattro/config.php:68
|
||||
msgid "Color scheme"
|
||||
msgstr "Esquema de colors"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49
|
||||
#: ../../include/nav.php:115
|
||||
#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:76
|
||||
#: ../../include/nav.php:143
|
||||
msgid "Your posts and conversations"
|
||||
msgstr "Els teus anuncis i converses"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50
|
||||
#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77
|
||||
msgid "Your profile page"
|
||||
msgstr "La seva pàgina de perfil"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:129
|
||||
#: ../../view/theme/diabook/theme.php:89
|
||||
msgid "Your contacts"
|
||||
msgstr "Els teus contactes"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51
|
||||
#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78
|
||||
msgid "Your photos"
|
||||
msgstr "Les seves fotos"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52
|
||||
#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79
|
||||
msgid "Your events"
|
||||
msgstr "Els seus esdeveniments"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
|
||||
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
|
||||
msgid "Personal notes"
|
||||
msgstr "Notes personals"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
|
||||
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
|
||||
msgid "Your personal photos"
|
||||
msgstr "Les seves fotos personals"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:134
|
||||
#: ../../view/theme/diabook/theme.php:643
|
||||
#: ../../view/theme/diabook/theme.php:747
|
||||
#: ../../view/theme/diabook/config.php:201
|
||||
#: ../../view/theme/diabook/theme.php:94
|
||||
#: ../../view/theme/diabook/theme.php:537
|
||||
#: ../../view/theme/diabook/theme.php:632
|
||||
#: ../../view/theme/diabook/config.php:163
|
||||
msgid "Community Pages"
|
||||
msgstr "Pàgines de la Comunitat"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:490
|
||||
#: ../../view/theme/diabook/theme.php:749
|
||||
#: ../../view/theme/diabook/config.php:203
|
||||
#: ../../view/theme/diabook/theme.php:384
|
||||
#: ../../view/theme/diabook/theme.php:634
|
||||
#: ../../view/theme/diabook/config.php:165
|
||||
msgid "Community Profiles"
|
||||
msgstr "Perfils de Comunitat"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:511
|
||||
#: ../../view/theme/diabook/theme.php:754
|
||||
#: ../../view/theme/diabook/config.php:208
|
||||
#: ../../view/theme/diabook/theme.php:405
|
||||
#: ../../view/theme/diabook/theme.php:639
|
||||
#: ../../view/theme/diabook/config.php:170
|
||||
msgid "Last users"
|
||||
msgstr "Últims usuaris"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:540
|
||||
#: ../../view/theme/diabook/theme.php:756
|
||||
#: ../../view/theme/diabook/config.php:210
|
||||
#: ../../view/theme/diabook/theme.php:434
|
||||
#: ../../view/theme/diabook/theme.php:641
|
||||
#: ../../view/theme/diabook/config.php:172
|
||||
msgid "Last likes"
|
||||
msgstr "Últims \"m'agrada\""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:585
|
||||
#: ../../view/theme/diabook/theme.php:755
|
||||
#: ../../view/theme/diabook/config.php:209
|
||||
#: ../../view/theme/diabook/theme.php:479
|
||||
#: ../../view/theme/diabook/theme.php:640
|
||||
#: ../../view/theme/diabook/config.php:171
|
||||
msgid "Last photos"
|
||||
msgstr "Últimes fotos"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:622
|
||||
#: ../../view/theme/diabook/theme.php:752
|
||||
#: ../../view/theme/diabook/config.php:206
|
||||
#: ../../view/theme/diabook/theme.php:516
|
||||
#: ../../view/theme/diabook/theme.php:637
|
||||
#: ../../view/theme/diabook/config.php:168
|
||||
msgid "Find Friends"
|
||||
msgstr "Trobar Amistats"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:623
|
||||
#: ../../view/theme/diabook/theme.php:517
|
||||
msgid "Local Directory"
|
||||
msgstr "Directori Local"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35
|
||||
#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
|
||||
msgid "Similar Interests"
|
||||
msgstr "Aficions Similars"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37
|
||||
#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
|
||||
msgid "Invite Friends"
|
||||
msgstr "Invita Amics"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:678
|
||||
#: ../../view/theme/diabook/theme.php:748
|
||||
#: ../../view/theme/diabook/config.php:202
|
||||
#: ../../view/theme/diabook/theme.php:572
|
||||
#: ../../view/theme/diabook/theme.php:633
|
||||
#: ../../view/theme/diabook/config.php:164
|
||||
msgid "Earth Layers"
|
||||
msgstr "Earth Layers"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:683
|
||||
#: ../../view/theme/diabook/theme.php:577
|
||||
msgid "Set zoomfactor for Earth Layers"
|
||||
msgstr "Ajustar el factor de zoom per Earth Layers"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:684
|
||||
#: ../../view/theme/diabook/config.php:199
|
||||
#: ../../view/theme/diabook/theme.php:578
|
||||
#: ../../view/theme/diabook/config.php:161
|
||||
msgid "Set longitude (X) for Earth Layers"
|
||||
msgstr "Ajustar longitud (X) per Earth Layers"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:685
|
||||
#: ../../view/theme/diabook/config.php:200
|
||||
#: ../../view/theme/diabook/theme.php:579
|
||||
#: ../../view/theme/diabook/config.php:162
|
||||
msgid "Set latitude (Y) for Earth Layers"
|
||||
msgstr "Ajustar latitud (Y) per Earth Layers"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:698
|
||||
#: ../../view/theme/diabook/theme.php:750
|
||||
#: ../../view/theme/diabook/config.php:204
|
||||
#: ../../view/theme/diabook/theme.php:592
|
||||
#: ../../view/theme/diabook/theme.php:635
|
||||
#: ../../view/theme/diabook/config.php:166
|
||||
msgid "Help or @NewHere ?"
|
||||
msgstr "Ajuda o @NouAqui?"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:705
|
||||
#: ../../view/theme/diabook/theme.php:751
|
||||
#: ../../view/theme/diabook/config.php:205
|
||||
#: ../../view/theme/diabook/theme.php:599
|
||||
#: ../../view/theme/diabook/theme.php:636
|
||||
#: ../../view/theme/diabook/config.php:167
|
||||
msgid "Connect Services"
|
||||
msgstr "Serveis Connectats"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:712
|
||||
#: ../../view/theme/diabook/theme.php:753
|
||||
#: ../../view/theme/diabook/theme.php:606
|
||||
#: ../../view/theme/diabook/theme.php:638
|
||||
msgid "Last Tweets"
|
||||
msgstr "Últims Tweets"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:715
|
||||
#: ../../view/theme/diabook/config.php:197
|
||||
#: ../../view/theme/diabook/theme.php:609
|
||||
#: ../../view/theme/diabook/config.php:159
|
||||
msgid "Set twitter search term"
|
||||
msgstr "Ajustar el terme de cerca de twitter"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:735
|
||||
#: ../../view/theme/diabook/theme.php:736
|
||||
#: ../../view/theme/diabook/theme.php:737
|
||||
#: ../../view/theme/diabook/theme.php:738
|
||||
#: ../../view/theme/diabook/theme.php:739
|
||||
#: ../../view/theme/diabook/theme.php:740
|
||||
#: ../../view/theme/diabook/theme.php:741
|
||||
#: ../../view/theme/diabook/theme.php:742
|
||||
#: ../../view/theme/diabook/theme.php:743
|
||||
#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288
|
||||
#: ../../view/theme/diabook/theme.php:629
|
||||
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327
|
||||
msgid "don't show"
|
||||
msgstr "no mostris"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:735
|
||||
#: ../../view/theme/diabook/theme.php:736
|
||||
#: ../../view/theme/diabook/theme.php:737
|
||||
#: ../../view/theme/diabook/theme.php:738
|
||||
#: ../../view/theme/diabook/theme.php:739
|
||||
#: ../../view/theme/diabook/theme.php:740
|
||||
#: ../../view/theme/diabook/theme.php:741
|
||||
#: ../../view/theme/diabook/theme.php:742
|
||||
#: ../../view/theme/diabook/theme.php:743
|
||||
#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287
|
||||
#: ../../view/theme/diabook/theme.php:629
|
||||
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326
|
||||
msgid "show"
|
||||
msgstr "mostra"
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:745
|
||||
#: ../../view/theme/diabook/theme.php:630
|
||||
msgid "Show/hide boxes at right-hand column:"
|
||||
msgstr "Mostra/amaga els marcs de la columna a ma dreta"
|
||||
|
||||
#: ../../view/theme/diabook/config.php:194
|
||||
#: ../../view/theme/diabook/config.php:156
|
||||
#: ../../view/theme/dispy/config.php:74
|
||||
msgid "Set line-height for posts and comments"
|
||||
msgstr "Canvia l'espaiat de línia per enviaments i comentaris"
|
||||
|
||||
#: ../../view/theme/diabook/config.php:195
|
||||
#: ../../view/theme/diabook/config.php:157
|
||||
msgid "Set resolution for middle column"
|
||||
msgstr "canvia la resolució per a la columna central"
|
||||
|
||||
#: ../../view/theme/diabook/config.php:196
|
||||
#: ../../view/theme/diabook/config.php:158
|
||||
msgid "Set color scheme"
|
||||
msgstr "Canvia l'esquema de color"
|
||||
|
||||
#: ../../view/theme/diabook/config.php:198
|
||||
#: ../../view/theme/diabook/config.php:160
|
||||
msgid "Set zoomfactor for Earth Layer"
|
||||
msgstr "Ajustar el factor de zoom de Earth Layers"
|
||||
|
||||
#: ../../view/theme/diabook/config.php:207
|
||||
#: ../../view/theme/diabook/config.php:169
|
||||
msgid "Last tweets"
|
||||
msgstr "Últims tweets"
|
||||
|
||||
#: ../../view/theme/quattro/config.php:56
|
||||
#: ../../view/theme/quattro/config.php:67
|
||||
msgid "Alignment"
|
||||
msgstr "Adaptació"
|
||||
|
||||
#: ../../view/theme/quattro/config.php:56
|
||||
#: ../../view/theme/quattro/config.php:67
|
||||
msgid "Left"
|
||||
msgstr "Esquerra"
|
||||
|
||||
#: ../../view/theme/quattro/config.php:56
|
||||
#: ../../view/theme/quattro/config.php:67
|
||||
msgid "Center"
|
||||
msgstr "Centre"
|
||||
|
||||
#: ../../view/theme/quattro/config.php:69
|
||||
msgid "Posts font size"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/quattro/config.php:70
|
||||
msgid "Textareas font size"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/dispy/config.php:75
|
||||
msgid "Set colour scheme"
|
||||
msgstr "Establir l'esquema de color"
|
||||
|
|
@ -7366,6 +8221,10 @@ msgstr "XMPP/IM"
|
|||
msgid "MySpace"
|
||||
msgstr "MySpace"
|
||||
|
||||
#: ../../include/contact_selectors.php:87
|
||||
msgid "Google+"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_selectors.php:6
|
||||
msgid "Male"
|
||||
msgstr "Home"
|
||||
|
|
@ -7510,8 +8369,8 @@ msgstr "Infidel"
|
|||
msgid "Sex Addict"
|
||||
msgstr "Adicte al sexe"
|
||||
|
||||
#: ../../include/profile_selectors.php:42 ../../include/user.php:278
|
||||
#: ../../include/user.php:282
|
||||
#: ../../include/profile_selectors.php:42 ../../include/user.php:279
|
||||
#: ../../include/user.php:283
|
||||
msgid "Friends"
|
||||
msgstr "Amics/Amigues"
|
||||
|
||||
|
|
@ -7599,281 +8458,321 @@ msgstr "No t'interessa"
|
|||
msgid "Ask me"
|
||||
msgstr "Pregunta'm"
|
||||
|
||||
#: ../../include/event.php:20 ../../include/bb2diaspora.php:396
|
||||
#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
|
||||
msgid "Starts:"
|
||||
msgstr "Inici:"
|
||||
|
||||
#: ../../include/event.php:30 ../../include/bb2diaspora.php:404
|
||||
#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
|
||||
msgid "Finishes:"
|
||||
msgstr "Acaba:"
|
||||
|
||||
#: ../../include/delivery.php:457 ../../include/notifier.php:703
|
||||
#: ../../include/delivery.php:457 ../../include/notifier.php:775
|
||||
msgid "(no subject)"
|
||||
msgstr "(sense assumpte)"
|
||||
|
||||
#: ../../include/Scrape.php:576
|
||||
#: ../../include/Scrape.php:583
|
||||
msgid " on Last.fm"
|
||||
msgstr " a Last.fm"
|
||||
|
||||
#: ../../include/text.php:243
|
||||
#: ../../include/text.php:262
|
||||
msgid "prev"
|
||||
msgstr "Prev"
|
||||
|
||||
#: ../../include/text.php:245
|
||||
#: ../../include/text.php:264
|
||||
msgid "first"
|
||||
msgstr "Primer"
|
||||
|
||||
#: ../../include/text.php:274
|
||||
#: ../../include/text.php:293
|
||||
msgid "last"
|
||||
msgstr "Últim"
|
||||
|
||||
#: ../../include/text.php:277
|
||||
#: ../../include/text.php:296
|
||||
msgid "next"
|
||||
msgstr "següent"
|
||||
|
||||
#: ../../include/text.php:295
|
||||
#: ../../include/text.php:314
|
||||
msgid "newer"
|
||||
msgstr "Més nou"
|
||||
|
||||
#: ../../include/text.php:299
|
||||
#: ../../include/text.php:318
|
||||
msgid "older"
|
||||
msgstr "més vell"
|
||||
|
||||
#: ../../include/text.php:597
|
||||
#: ../../include/text.php:657
|
||||
msgid "No contacts"
|
||||
msgstr "Sense contactes"
|
||||
|
||||
#: ../../include/text.php:606
|
||||
#: ../../include/text.php:666
|
||||
#, php-format
|
||||
msgid "%d Contact"
|
||||
msgid_plural "%d Contacts"
|
||||
msgstr[0] "%d Contacte"
|
||||
msgstr[1] "%d Contactes"
|
||||
|
||||
#: ../../include/text.php:719
|
||||
#: ../../include/text.php:779
|
||||
msgid "poke"
|
||||
msgstr ""
|
||||
msgstr "atia"
|
||||
|
||||
#: ../../include/text.php:719 ../../include/conversation.php:210
|
||||
#: ../../include/text.php:779 ../../include/conversation.php:211
|
||||
msgid "poked"
|
||||
msgstr ""
|
||||
msgstr "atiar"
|
||||
|
||||
#: ../../include/text.php:720
|
||||
#: ../../include/text.php:780
|
||||
msgid "ping"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:720
|
||||
#: ../../include/text.php:780
|
||||
msgid "pinged"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:721
|
||||
#: ../../include/text.php:781
|
||||
msgid "prod"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:721
|
||||
#: ../../include/text.php:781
|
||||
msgid "prodded"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:722
|
||||
#: ../../include/text.php:782
|
||||
msgid "slap"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:722
|
||||
#: ../../include/text.php:782
|
||||
msgid "slapped"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:723
|
||||
#: ../../include/text.php:783
|
||||
msgid "finger"
|
||||
msgstr "dit"
|
||||
|
||||
#: ../../include/text.php:723
|
||||
#: ../../include/text.php:783
|
||||
msgid "fingered"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:724
|
||||
#: ../../include/text.php:784
|
||||
msgid "rebuff"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:724
|
||||
#: ../../include/text.php:784
|
||||
msgid "rebuffed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:736
|
||||
#: ../../include/text.php:796
|
||||
msgid "happy"
|
||||
msgstr ""
|
||||
msgstr "feliç"
|
||||
|
||||
#: ../../include/text.php:737
|
||||
#: ../../include/text.php:797
|
||||
msgid "sad"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:738
|
||||
#: ../../include/text.php:798
|
||||
msgid "mellow"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:739
|
||||
#: ../../include/text.php:799
|
||||
msgid "tired"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:740
|
||||
#: ../../include/text.php:800
|
||||
msgid "perky"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:741
|
||||
#: ../../include/text.php:801
|
||||
msgid "angry"
|
||||
msgstr ""
|
||||
msgstr "disgustat"
|
||||
|
||||
#: ../../include/text.php:742
|
||||
#: ../../include/text.php:802
|
||||
msgid "stupified"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:743
|
||||
#: ../../include/text.php:803
|
||||
msgid "puzzled"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:744
|
||||
#: ../../include/text.php:804
|
||||
msgid "interested"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:745
|
||||
#: ../../include/text.php:805
|
||||
msgid "bitter"
|
||||
msgstr ""
|
||||
msgstr "amarg"
|
||||
|
||||
#: ../../include/text.php:746
|
||||
#: ../../include/text.php:806
|
||||
msgid "cheerful"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:747
|
||||
#: ../../include/text.php:807
|
||||
msgid "alive"
|
||||
msgstr ""
|
||||
msgstr "viu"
|
||||
|
||||
#: ../../include/text.php:748
|
||||
#: ../../include/text.php:808
|
||||
msgid "annoyed"
|
||||
msgstr ""
|
||||
msgstr "molest"
|
||||
|
||||
#: ../../include/text.php:749
|
||||
#: ../../include/text.php:809
|
||||
msgid "anxious"
|
||||
msgstr ""
|
||||
msgstr "ansiós"
|
||||
|
||||
#: ../../include/text.php:750
|
||||
#: ../../include/text.php:810
|
||||
msgid "cranky"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:751
|
||||
#: ../../include/text.php:811
|
||||
msgid "disturbed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:752
|
||||
#: ../../include/text.php:812
|
||||
msgid "frustrated"
|
||||
msgstr ""
|
||||
msgstr "frustrat"
|
||||
|
||||
#: ../../include/text.php:753
|
||||
#: ../../include/text.php:813
|
||||
msgid "motivated"
|
||||
msgstr ""
|
||||
msgstr "motivat"
|
||||
|
||||
#: ../../include/text.php:754
|
||||
#: ../../include/text.php:814
|
||||
msgid "relaxed"
|
||||
msgstr ""
|
||||
msgstr "tranquil"
|
||||
|
||||
#: ../../include/text.php:755
|
||||
#: ../../include/text.php:815
|
||||
msgid "surprised"
|
||||
msgstr ""
|
||||
msgstr "sorprès"
|
||||
|
||||
#: ../../include/text.php:921
|
||||
#: ../../include/text.php:979
|
||||
msgid "January"
|
||||
msgstr "Gener"
|
||||
|
||||
#: ../../include/text.php:921
|
||||
#: ../../include/text.php:979
|
||||
msgid "February"
|
||||
msgstr "Febrer"
|
||||
|
||||
#: ../../include/text.php:921
|
||||
#: ../../include/text.php:979
|
||||
msgid "March"
|
||||
msgstr "Març"
|
||||
|
||||
#: ../../include/text.php:921
|
||||
#: ../../include/text.php:979
|
||||
msgid "April"
|
||||
msgstr "Abril"
|
||||
|
||||
#: ../../include/text.php:921
|
||||
#: ../../include/text.php:979
|
||||
msgid "May"
|
||||
msgstr "Maig"
|
||||
|
||||
#: ../../include/text.php:921
|
||||
#: ../../include/text.php:979
|
||||
msgid "June"
|
||||
msgstr "Juny"
|
||||
|
||||
#: ../../include/text.php:921
|
||||
#: ../../include/text.php:979
|
||||
msgid "July"
|
||||
msgstr "Juliol"
|
||||
|
||||
#: ../../include/text.php:921
|
||||
#: ../../include/text.php:979
|
||||
msgid "August"
|
||||
msgstr "Agost"
|
||||
|
||||
#: ../../include/text.php:921
|
||||
#: ../../include/text.php:979
|
||||
msgid "September"
|
||||
msgstr "Setembre"
|
||||
|
||||
#: ../../include/text.php:921
|
||||
#: ../../include/text.php:979
|
||||
msgid "October"
|
||||
msgstr "Octubre"
|
||||
|
||||
#: ../../include/text.php:921
|
||||
#: ../../include/text.php:979
|
||||
msgid "November"
|
||||
msgstr "Novembre"
|
||||
|
||||
#: ../../include/text.php:921
|
||||
#: ../../include/text.php:979
|
||||
msgid "December"
|
||||
msgstr "Desembre"
|
||||
|
||||
#: ../../include/text.php:1007
|
||||
#: ../../include/text.php:1078
|
||||
msgid "bytes"
|
||||
msgstr "bytes"
|
||||
|
||||
#: ../../include/text.php:1034 ../../include/text.php:1046
|
||||
#: ../../include/text.php:1105 ../../include/text.php:1117
|
||||
msgid "Click to open/close"
|
||||
msgstr "Clicar per a obrir/tancar"
|
||||
|
||||
#: ../../include/text.php:1219 ../../include/user.php:236
|
||||
#: ../../include/text.php:1290 ../../include/user.php:237
|
||||
msgid "default"
|
||||
msgstr "per defecte"
|
||||
|
||||
#: ../../include/text.php:1231
|
||||
#: ../../include/text.php:1302
|
||||
msgid "Select an alternate language"
|
||||
msgstr "Sel·lecciona un idioma alternatiu"
|
||||
|
||||
#: ../../include/text.php:1441
|
||||
#: ../../include/text.php:1512
|
||||
msgid "activity"
|
||||
msgstr "activitat"
|
||||
|
||||
#: ../../include/text.php:1444
|
||||
#: ../../include/text.php:1515
|
||||
msgid "post"
|
||||
msgstr "missatge"
|
||||
|
||||
#: ../../include/text.php:1599
|
||||
#: ../../include/text.php:1670
|
||||
msgid "Item filed"
|
||||
msgstr "Element arxivat"
|
||||
|
||||
#: ../../include/diaspora.php:691
|
||||
#: ../../include/diaspora.php:704
|
||||
msgid "Sharing notification from Diaspora network"
|
||||
msgstr "Compartint la notificació de la xarxa Diàspora"
|
||||
|
||||
#: ../../include/diaspora.php:2211
|
||||
#: ../../include/diaspora.php:2248
|
||||
msgid "Attachments:"
|
||||
msgstr "Adjunts:"
|
||||
|
||||
#: ../../include/network.php:849
|
||||
#: ../../include/network.php:850
|
||||
msgid "view full size"
|
||||
msgstr "Veure a mida completa"
|
||||
|
||||
#: ../../include/oembed.php:137
|
||||
#: ../../include/oembed.php:138
|
||||
msgid "Embedded content"
|
||||
msgstr "Contingut incrustat"
|
||||
|
||||
#: ../../include/oembed.php:146
|
||||
#: ../../include/oembed.php:147
|
||||
msgid "Embedding disabled"
|
||||
msgstr "Incrustacions deshabilitades"
|
||||
|
||||
#: ../../include/uimport.php:61
|
||||
msgid "Error decoding account file"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/uimport.php:67
|
||||
msgid "Error! No version data in file! This is not a Friendica account file?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/uimport.php:72
|
||||
msgid "Error! I can't import this file: DB schema version is not compatible."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/uimport.php:81
|
||||
msgid "Error! Cannot check nickname"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/uimport.php:85
|
||||
#, php-format
|
||||
msgid "User '%s' already exists on this server!"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/uimport.php:104
|
||||
msgid "User creation error"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/uimport.php:122
|
||||
msgid "User profile creation error"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/uimport.php:167
|
||||
#, php-format
|
||||
msgid "%d contact not imported"
|
||||
msgid_plural "%d contacts not imported"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../../include/uimport.php:245
|
||||
msgid "Done. You can now login with your username and password"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/group.php:25
|
||||
msgid ""
|
||||
"A deleted group with this name was revived. Existing item permissions "
|
||||
|
|
@ -7881,137 +8780,153 @@ msgid ""
|
|||
"not what you intended, please create another group with a different name."
|
||||
msgstr "Un grup eliminat amb aquest nom va ser restablert. Els permisos dels elements existents <strong>poden</strong> aplicar-se a aquest grup i tots els futurs membres. Si això no és el que pretén, si us plau, crei un altre grup amb un nom diferent."
|
||||
|
||||
#: ../../include/group.php:176
|
||||
#: ../../include/group.php:207
|
||||
msgid "Default privacy group for new contacts"
|
||||
msgstr "Privacitat per defecte per a nous contactes"
|
||||
|
||||
#: ../../include/group.php:195
|
||||
#: ../../include/group.php:226
|
||||
msgid "Everybody"
|
||||
msgstr "Tothom"
|
||||
|
||||
#: ../../include/group.php:218
|
||||
#: ../../include/group.php:249
|
||||
msgid "edit"
|
||||
msgstr "editar"
|
||||
|
||||
#: ../../include/group.php:240
|
||||
#: ../../include/group.php:271
|
||||
msgid "Edit group"
|
||||
msgstr "Editar grup"
|
||||
|
||||
#: ../../include/group.php:241
|
||||
#: ../../include/group.php:272
|
||||
msgid "Create a new group"
|
||||
msgstr "Crear un nou grup"
|
||||
|
||||
#: ../../include/group.php:242
|
||||
#: ../../include/group.php:273
|
||||
msgid "Contacts not in any group"
|
||||
msgstr "Contactes en cap grup"
|
||||
|
||||
#: ../../include/nav.php:46 ../../boot.php:911
|
||||
#: ../../include/nav.php:73 ../../boot.php:1036
|
||||
msgid "Logout"
|
||||
msgstr "Sortir"
|
||||
|
||||
#: ../../include/nav.php:46
|
||||
#: ../../include/nav.php:73
|
||||
msgid "End this session"
|
||||
msgstr "Termina sessió"
|
||||
|
||||
#: ../../include/nav.php:49 ../../boot.php:1665
|
||||
#: ../../include/nav.php:76 ../../boot.php:1833
|
||||
msgid "Status"
|
||||
msgstr "Estatus"
|
||||
|
||||
#: ../../include/nav.php:64
|
||||
#: ../../include/nav.php:91
|
||||
msgid "Sign in"
|
||||
msgstr "Accedeix"
|
||||
|
||||
#: ../../include/nav.php:77
|
||||
#: ../../include/nav.php:104
|
||||
msgid "Home Page"
|
||||
msgstr "Pàgina d'Inici"
|
||||
|
||||
#: ../../include/nav.php:81
|
||||
#: ../../include/nav.php:108
|
||||
msgid "Create an account"
|
||||
msgstr "Crear un compte"
|
||||
|
||||
#: ../../include/nav.php:86
|
||||
#: ../../include/nav.php:113
|
||||
msgid "Help and documentation"
|
||||
msgstr "Ajuda i documentació"
|
||||
|
||||
#: ../../include/nav.php:89
|
||||
#: ../../include/nav.php:116
|
||||
msgid "Apps"
|
||||
msgstr "Aplicacions"
|
||||
|
||||
#: ../../include/nav.php:89
|
||||
#: ../../include/nav.php:116
|
||||
msgid "Addon applications, utilities, games"
|
||||
msgstr "Afegits: aplicacions, utilitats, jocs"
|
||||
|
||||
#: ../../include/nav.php:91
|
||||
#: ../../include/nav.php:118
|
||||
msgid "Search site content"
|
||||
msgstr "Busca contingut en el lloc"
|
||||
|
||||
#: ../../include/nav.php:101
|
||||
#: ../../include/nav.php:128
|
||||
msgid "Conversations on this site"
|
||||
msgstr "Converses en aquest lloc"
|
||||
|
||||
#: ../../include/nav.php:103
|
||||
#: ../../include/nav.php:130
|
||||
msgid "Directory"
|
||||
msgstr "Directori"
|
||||
|
||||
#: ../../include/nav.php:103
|
||||
#: ../../include/nav.php:130
|
||||
msgid "People directory"
|
||||
msgstr "Directori de gent"
|
||||
|
||||
#: ../../include/nav.php:113
|
||||
#: ../../include/nav.php:140
|
||||
msgid "Conversations from your friends"
|
||||
msgstr "Converses dels teus amics"
|
||||
|
||||
#: ../../include/nav.php:121
|
||||
#: ../../include/nav.php:141
|
||||
msgid "Network Reset"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:141
|
||||
msgid "Load Network page with no filters"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:149
|
||||
msgid "Friend Requests"
|
||||
msgstr "Sol·licitud d'Amistat"
|
||||
|
||||
#: ../../include/nav.php:123
|
||||
#: ../../include/nav.php:151
|
||||
msgid "See all notifications"
|
||||
msgstr "Veure totes les notificacions"
|
||||
|
||||
#: ../../include/nav.php:124
|
||||
#: ../../include/nav.php:152
|
||||
msgid "Mark all system notifications seen"
|
||||
msgstr "Marcar totes les notificacions del sistema com a vistes"
|
||||
|
||||
#: ../../include/nav.php:128
|
||||
#: ../../include/nav.php:156
|
||||
msgid "Private mail"
|
||||
msgstr "Correu privat"
|
||||
|
||||
#: ../../include/nav.php:129
|
||||
#: ../../include/nav.php:157
|
||||
msgid "Inbox"
|
||||
msgstr "Safata d'entrada"
|
||||
|
||||
#: ../../include/nav.php:130
|
||||
#: ../../include/nav.php:158
|
||||
msgid "Outbox"
|
||||
msgstr "Safata de sortida"
|
||||
|
||||
#: ../../include/nav.php:134
|
||||
#: ../../include/nav.php:162
|
||||
msgid "Manage"
|
||||
msgstr "Gestionar"
|
||||
|
||||
#: ../../include/nav.php:134
|
||||
#: ../../include/nav.php:162
|
||||
msgid "Manage other pages"
|
||||
msgstr "Gestiona altres pàgines"
|
||||
|
||||
#: ../../include/nav.php:138 ../../boot.php:1186
|
||||
#: ../../include/nav.php:165
|
||||
msgid "Delegations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:169 ../../boot.php:1339
|
||||
msgid "Profiles"
|
||||
msgstr "Perfils"
|
||||
|
||||
#: ../../include/nav.php:138 ../../boot.php:1186
|
||||
msgid "Manage/edit profiles"
|
||||
msgstr "Gestiona/edita perfils"
|
||||
#: ../../include/nav.php:169
|
||||
msgid "Manage/Edit Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:139
|
||||
#: ../../include/nav.php:171
|
||||
msgid "Manage/edit friends and contacts"
|
||||
msgstr "Gestiona/edita amics i contactes"
|
||||
|
||||
#: ../../include/nav.php:146
|
||||
#: ../../include/nav.php:178
|
||||
msgid "Site setup and configuration"
|
||||
msgstr "Ajustos i configuració del lloc"
|
||||
|
||||
#: ../../include/nav.php:170
|
||||
msgid "Nothing new here"
|
||||
msgstr "Res nou aquí"
|
||||
#: ../../include/nav.php:182
|
||||
msgid "Navigation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:182
|
||||
msgid "Site map"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/contact_widgets.php:6
|
||||
msgid "Add New Contact"
|
||||
|
|
@ -8052,37 +8967,37 @@ msgstr "Exemples: Robert Morgenstein, Pescar"
|
|||
msgid "Random Profile"
|
||||
msgstr "Perfi Aleatori"
|
||||
|
||||
#: ../../include/contact_widgets.php:68
|
||||
#: ../../include/contact_widgets.php:70
|
||||
msgid "Networks"
|
||||
msgstr "Xarxes"
|
||||
|
||||
#: ../../include/contact_widgets.php:71
|
||||
#: ../../include/contact_widgets.php:73
|
||||
msgid "All Networks"
|
||||
msgstr "totes les Xarxes"
|
||||
|
||||
#: ../../include/contact_widgets.php:98
|
||||
#: ../../include/contact_widgets.php:103 ../../include/features.php:59
|
||||
msgid "Saved Folders"
|
||||
msgstr "Carpetes Guardades"
|
||||
|
||||
#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129
|
||||
#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
|
||||
msgid "Everything"
|
||||
msgstr "Tot"
|
||||
|
||||
#: ../../include/contact_widgets.php:126
|
||||
#: ../../include/contact_widgets.php:135
|
||||
msgid "Categories"
|
||||
msgstr "Categories"
|
||||
|
||||
#: ../../include/auth.php:35
|
||||
#: ../../include/auth.php:38
|
||||
msgid "Logged out."
|
||||
msgstr "Has sortit"
|
||||
|
||||
#: ../../include/auth.php:114
|
||||
#: ../../include/auth.php:128
|
||||
msgid ""
|
||||
"We encountered a problem while logging in with the OpenID you provided. "
|
||||
"Please check the correct spelling of the ID."
|
||||
msgstr "Em trobat un problema quan accedies amb la OpenID que has proporcionat. Per favor, revisa la cadena del ID."
|
||||
|
||||
#: ../../include/auth.php:114
|
||||
#: ../../include/auth.php:128
|
||||
msgid "The error message was:"
|
||||
msgstr "El missatge d'error fou: "
|
||||
|
||||
|
|
@ -8143,30 +9058,181 @@ msgstr "segons"
|
|||
msgid "%1$d %2$s ago"
|
||||
msgstr " fa %1$d %2$s"
|
||||
|
||||
#: ../../include/datetime.php:472 ../../include/items.php:1683
|
||||
#: ../../include/datetime.php:472 ../../include/items.php:1705
|
||||
#, php-format
|
||||
msgid "%s's birthday"
|
||||
msgstr "%s aniversari"
|
||||
|
||||
#: ../../include/datetime.php:473 ../../include/items.php:1684
|
||||
#: ../../include/datetime.php:473 ../../include/items.php:1706
|
||||
#, php-format
|
||||
msgid "Happy Birthday %s"
|
||||
msgstr "Feliç Aniversari %s"
|
||||
|
||||
#: ../../include/onepoll.php:399
|
||||
msgid "From: "
|
||||
msgstr "Des de:"
|
||||
|
||||
#: ../../include/bbcode.php:185 ../../include/bbcode.php:406
|
||||
#: ../../include/bbcode.php:210 ../../include/bbcode.php:515
|
||||
msgid "Image/photo"
|
||||
msgstr "Imatge/foto"
|
||||
|
||||
#: ../../include/bbcode.php:371 ../../include/bbcode.php:391
|
||||
#: ../../include/bbcode.php:272
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
|
||||
"href=\"%s\" target=\"external-link\">post</a>"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/bbcode.php:480 ../../include/bbcode.php:500
|
||||
msgid "$1 wrote:"
|
||||
msgstr "$1 va escriure:"
|
||||
|
||||
#: ../../include/bbcode.php:410 ../../include/bbcode.php:411
|
||||
#: ../../include/bbcode.php:520 ../../include/bbcode.php:521
|
||||
msgid "Encrypted content"
|
||||
msgstr "Encriptar contingut"
|
||||
|
||||
#: ../../include/features.php:23
|
||||
msgid "General Features"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:25
|
||||
msgid "Multiple Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:25
|
||||
msgid "Ability to create multiple profiles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:30
|
||||
msgid "Post Composition Features"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:31
|
||||
msgid "Richtext Editor"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:31
|
||||
msgid "Enable richtext editor"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:32
|
||||
msgid "Post Preview"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:32
|
||||
msgid "Allow previewing posts and comments before publishing them"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:37
|
||||
msgid "Network Sidebar Widgets"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:38
|
||||
msgid "Search by Date"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:38
|
||||
msgid "Ability to select posts by date ranges"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:39
|
||||
msgid "Group Filter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:39
|
||||
msgid "Enable widget to display Network posts only from selected group"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:40
|
||||
msgid "Network Filter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:40
|
||||
msgid "Enable widget to display Network posts only from selected network"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:41
|
||||
msgid "Save search terms for re-use"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:46
|
||||
msgid "Network Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:47
|
||||
msgid "Network Personal Tab"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:47
|
||||
msgid "Enable tab to display only Network posts that you've interacted on"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:48
|
||||
msgid "Network New Tab"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:48
|
||||
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:49
|
||||
msgid "Network Shared Links Tab"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:49
|
||||
msgid "Enable tab to display only Network posts with links in them"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:54
|
||||
msgid "Post/Comment Tools"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:55
|
||||
msgid "Multiple Deletion"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:55
|
||||
msgid "Select and delete multiple posts/comments at once"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:56
|
||||
msgid "Edit Sent Posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:56
|
||||
msgid "Edit and correct posts and comments after sending"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:57
|
||||
msgid "Tagging"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:57
|
||||
msgid "Ability to tag existing posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:58
|
||||
msgid "Post Categories"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:58
|
||||
msgid "Add categories to your posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:59
|
||||
msgid "Ability to file posts under folders"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:60
|
||||
msgid "Dislike Posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:60
|
||||
msgid "Ability to dislike posts/comments"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:61
|
||||
msgid "Star Posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/features.php:61
|
||||
msgid "Ability to mark special posts with a star indicator"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/dba.php:41
|
||||
|
|
@ -8174,11 +9240,11 @@ msgstr ""
|
|||
msgid "Cannot locate DNS info for database server '%s'"
|
||||
msgstr "No put trobar informació de DNS del servidor de base de dades '%s'"
|
||||
|
||||
#: ../../include/message.php:15 ../../include/message.php:171
|
||||
#: ../../include/message.php:15 ../../include/message.php:172
|
||||
msgid "[no subject]"
|
||||
msgstr "[Sense assumpte]"
|
||||
|
||||
#: ../../include/acl_selectors.php:286
|
||||
#: ../../include/acl_selectors.php:325
|
||||
msgid "Visible to everybody"
|
||||
msgstr "Visible per tothom"
|
||||
|
||||
|
|
@ -8224,146 +9290,146 @@ msgstr "un missatge privat"
|
|||
msgid "Please visit %s to view and/or reply to your private messages."
|
||||
msgstr "Per favor, visiteu %s per a veure i/o respondre els teus missatges privats."
|
||||
|
||||
#: ../../include/enotify.php:89
|
||||
#: ../../include/enotify.php:90
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
|
||||
msgstr "%1$s ha comentat en [url=%2$s]a %3$s[/url]"
|
||||
|
||||
#: ../../include/enotify.php:96
|
||||
#: ../../include/enotify.php:97
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
|
||||
msgstr "%1$s ha comentat en [url=%2$s]%3$s de %4$s[/url]"
|
||||
|
||||
#: ../../include/enotify.php:104
|
||||
#: ../../include/enotify.php:105
|
||||
#, php-format
|
||||
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
|
||||
msgstr "%1$s ha comentat en [url=%2$s] el teu %3$s[/url]"
|
||||
|
||||
#: ../../include/enotify.php:114
|
||||
#: ../../include/enotify.php:115
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
|
||||
msgstr "[Friendica:Notificació] Comentaris a la conversació #%1$d per %2$s"
|
||||
|
||||
#: ../../include/enotify.php:115
|
||||
#: ../../include/enotify.php:116
|
||||
#, php-format
|
||||
msgid "%s commented on an item/conversation you have been following."
|
||||
msgstr "%s ha comentat un element/conversació que estas seguint."
|
||||
|
||||
#: ../../include/enotify.php:118 ../../include/enotify.php:133
|
||||
#: ../../include/enotify.php:146 ../../include/enotify.php:164
|
||||
#: ../../include/enotify.php:177
|
||||
#: ../../include/enotify.php:119 ../../include/enotify.php:134
|
||||
#: ../../include/enotify.php:147 ../../include/enotify.php:165
|
||||
#: ../../include/enotify.php:178
|
||||
#, php-format
|
||||
msgid "Please visit %s to view and/or reply to the conversation."
|
||||
msgstr "Si us pau, visiteu %s per a veure i/o respondre la conversació."
|
||||
|
||||
#: ../../include/enotify.php:125
|
||||
#: ../../include/enotify.php:126
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s posted to your profile wall"
|
||||
msgstr "[Friendica:Notifica] %s enviat al teu mur del perfil"
|
||||
|
||||
#: ../../include/enotify.php:127
|
||||
#: ../../include/enotify.php:128
|
||||
#, php-format
|
||||
msgid "%1$s posted to your profile wall at %2$s"
|
||||
msgstr "%1$s ha fet un enviament al teu mur de perfils en %2$s"
|
||||
|
||||
#: ../../include/enotify.php:129
|
||||
#: ../../include/enotify.php:130
|
||||
#, php-format
|
||||
msgid "%1$s posted to [url=%2$s]your wall[/url]"
|
||||
msgstr ""
|
||||
msgstr "%1$s enviat a [url=%2$s]teu mur[/url]"
|
||||
|
||||
#: ../../include/enotify.php:140
|
||||
#: ../../include/enotify.php:141
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s tagged you"
|
||||
msgstr "[Friendica:Notifica] %s t'ha etiquetat"
|
||||
|
||||
#: ../../include/enotify.php:141
|
||||
#: ../../include/enotify.php:142
|
||||
#, php-format
|
||||
msgid "%1$s tagged you at %2$s"
|
||||
msgstr "%1$s t'ha etiquetat a %2$s"
|
||||
|
||||
#: ../../include/enotify.php:142
|
||||
#: ../../include/enotify.php:143
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]tagged you[/url]."
|
||||
msgstr "%1$s [url=%2$s] t'ha etiquetat[/url]."
|
||||
|
||||
#: ../../include/enotify.php:154
|
||||
#: ../../include/enotify.php:155
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %1$s poked you"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/enotify.php:155
|
||||
#: ../../include/enotify.php:156
|
||||
#, php-format
|
||||
msgid "%1$s poked you at %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/enotify.php:156
|
||||
#: ../../include/enotify.php:157
|
||||
#, php-format
|
||||
msgid "%1$s [url=%2$s]poked you[/url]."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/enotify.php:171
|
||||
#: ../../include/enotify.php:172
|
||||
#, php-format
|
||||
msgid "[Friendica:Notify] %s tagged your post"
|
||||
msgstr "[Friendica:Notifica] %s ha etiquetat el teu missatge"
|
||||
|
||||
#: ../../include/enotify.php:172
|
||||
#: ../../include/enotify.php:173
|
||||
#, php-format
|
||||
msgid "%1$s tagged your post at %2$s"
|
||||
msgstr "%1$s ha etiquetat un missatge teu a %2$s"
|
||||
|
||||
#: ../../include/enotify.php:173
|
||||
#: ../../include/enotify.php:174
|
||||
#, php-format
|
||||
msgid "%1$s tagged [url=%2$s]your post[/url]"
|
||||
msgstr "%1$s etiquetà [url=%2$s] el teu enviament[/url]"
|
||||
|
||||
#: ../../include/enotify.php:184
|
||||
#: ../../include/enotify.php:185
|
||||
msgid "[Friendica:Notify] Introduction received"
|
||||
msgstr "[Friendica:Notifica] Presentacio rebuda"
|
||||
|
||||
#: ../../include/enotify.php:185
|
||||
#: ../../include/enotify.php:186
|
||||
#, php-format
|
||||
msgid "You've received an introduction from '%1$s' at %2$s"
|
||||
msgstr "Has rebut una presentació des de '%1$s' en %2$s"
|
||||
|
||||
#: ../../include/enotify.php:186
|
||||
#: ../../include/enotify.php:187
|
||||
#, php-format
|
||||
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
|
||||
msgstr "Has rebut [url=%1$s] com a presentació[/url] des de %2$s."
|
||||
|
||||
#: ../../include/enotify.php:189 ../../include/enotify.php:207
|
||||
#: ../../include/enotify.php:190 ../../include/enotify.php:208
|
||||
#, php-format
|
||||
msgid "You may visit their profile at %s"
|
||||
msgstr "Pot visitar el seu perfil en %s"
|
||||
|
||||
#: ../../include/enotify.php:191
|
||||
#: ../../include/enotify.php:192
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the introduction."
|
||||
msgstr "Si us plau visiteu %s per aprovar o rebutjar la presentació."
|
||||
|
||||
#: ../../include/enotify.php:198
|
||||
#: ../../include/enotify.php:199
|
||||
msgid "[Friendica:Notify] Friend suggestion received"
|
||||
msgstr "[Friendica:Notifica] Suggerencia d'amistat rebuda"
|
||||
|
||||
#: ../../include/enotify.php:199
|
||||
#: ../../include/enotify.php:200
|
||||
#, php-format
|
||||
msgid "You've received a friend suggestion from '%1$s' at %2$s"
|
||||
msgstr "Has rebut una suggerencia d'amistat des de '%1$s' en %2$s"
|
||||
|
||||
#: ../../include/enotify.php:200
|
||||
#: ../../include/enotify.php:201
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
|
||||
msgstr "Has rebut [url=%1$s] com a suggerencia d'amistat[/url] per a %2$s des de %3$s."
|
||||
|
||||
#: ../../include/enotify.php:205
|
||||
#: ../../include/enotify.php:206
|
||||
msgid "Name:"
|
||||
msgstr "Nom:"
|
||||
|
||||
#: ../../include/enotify.php:206
|
||||
#: ../../include/enotify.php:207
|
||||
msgid "Photo:"
|
||||
msgstr "Foto:"
|
||||
|
||||
#: ../../include/enotify.php:209
|
||||
#: ../../include/enotify.php:210
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the suggestion."
|
||||
msgstr "Si us plau, visiteu %s per aprovar o rebutjar la suggerencia."
|
||||
|
|
@ -8423,83 +9489,87 @@ msgstr "No es pot recuperar la informació de contacte."
|
|||
msgid "following"
|
||||
msgstr "seguint"
|
||||
|
||||
#: ../../include/items.php:3294
|
||||
#: ../../include/items.php:3373
|
||||
msgid "A new person is sharing with you at "
|
||||
msgstr "Una persona nova està compartint amb tú en"
|
||||
|
||||
#: ../../include/items.php:3294
|
||||
#: ../../include/items.php:3373
|
||||
msgid "You have a new follower at "
|
||||
msgstr "Tens un nou seguidor a "
|
||||
|
||||
#: ../../include/items.php:3975
|
||||
#: ../../include/items.php:3892
|
||||
msgid "Do you really want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/items.php:4085
|
||||
msgid "Archives"
|
||||
msgstr "Arxius"
|
||||
|
||||
#: ../../include/user.php:38
|
||||
#: ../../include/user.php:39
|
||||
msgid "An invitation is required."
|
||||
msgstr "Es requereix invitació."
|
||||
|
||||
#: ../../include/user.php:43
|
||||
#: ../../include/user.php:44
|
||||
msgid "Invitation could not be verified."
|
||||
msgstr "La invitació no ha pogut ser verificada."
|
||||
|
||||
#: ../../include/user.php:51
|
||||
#: ../../include/user.php:52
|
||||
msgid "Invalid OpenID url"
|
||||
msgstr "OpenID url no vàlid"
|
||||
|
||||
#: ../../include/user.php:66
|
||||
#: ../../include/user.php:67
|
||||
msgid "Please enter the required information."
|
||||
msgstr "Per favor, introdueixi la informació requerida."
|
||||
|
||||
#: ../../include/user.php:80
|
||||
#: ../../include/user.php:81
|
||||
msgid "Please use a shorter name."
|
||||
msgstr "Per favor, empri un nom més curt."
|
||||
|
||||
#: ../../include/user.php:82
|
||||
#: ../../include/user.php:83
|
||||
msgid "Name too short."
|
||||
msgstr "Nom massa curt."
|
||||
|
||||
#: ../../include/user.php:97
|
||||
#: ../../include/user.php:98
|
||||
msgid "That doesn't appear to be your full (First Last) name."
|
||||
msgstr "Això no sembla ser el teu nom complet."
|
||||
|
||||
#: ../../include/user.php:102
|
||||
#: ../../include/user.php:103
|
||||
msgid "Your email domain is not among those allowed on this site."
|
||||
msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc."
|
||||
|
||||
#: ../../include/user.php:105
|
||||
#: ../../include/user.php:106
|
||||
msgid "Not a valid email address."
|
||||
msgstr "Adreça de correu no vàlida."
|
||||
|
||||
#: ../../include/user.php:115
|
||||
#: ../../include/user.php:116
|
||||
msgid "Cannot use that email."
|
||||
msgstr "No es pot utilitzar aquest correu electrònic."
|
||||
|
||||
#: ../../include/user.php:121
|
||||
#: ../../include/user.php:122
|
||||
msgid ""
|
||||
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
|
||||
"must also begin with a letter."
|
||||
msgstr "El teu sobrenom nomes pot contenir \"a-z\", \"0-9\", \"-\", i \"_\", i començar amb lletra."
|
||||
|
||||
#: ../../include/user.php:127 ../../include/user.php:225
|
||||
#: ../../include/user.php:128 ../../include/user.php:226
|
||||
msgid "Nickname is already registered. Please choose another."
|
||||
msgstr "àlies ja registrat. Tria un altre."
|
||||
|
||||
#: ../../include/user.php:137
|
||||
#: ../../include/user.php:138
|
||||
msgid ""
|
||||
"Nickname was once registered here and may not be re-used. Please choose "
|
||||
"another."
|
||||
msgstr "L'àlies emprat ja està registrat alguna vegada i no es pot reutilitzar "
|
||||
|
||||
#: ../../include/user.php:153
|
||||
#: ../../include/user.php:154
|
||||
msgid "SERIOUS ERROR: Generation of security keys failed."
|
||||
msgstr "ERROR IMPORTANT: La generació de claus de seguretat ha fallat."
|
||||
|
||||
#: ../../include/user.php:211
|
||||
#: ../../include/user.php:212
|
||||
msgid "An error occurred during registration. Please try again."
|
||||
msgstr "Un error ha succeït durant el registre. Intenta-ho de nou."
|
||||
|
||||
#: ../../include/user.php:246
|
||||
#: ../../include/user.php:247
|
||||
msgid "An error occurred creating your default profile. Please try again."
|
||||
msgstr "Un error ha succeit durant la creació del teu perfil per defecte. Intenta-ho de nou."
|
||||
|
||||
|
|
@ -8515,284 +9585,366 @@ msgstr "Per favor, carrega una foto per al perfil"
|
|||
msgid "Welcome back "
|
||||
msgstr "Benvingut de nou "
|
||||
|
||||
#: ../../include/security.php:344
|
||||
#: ../../include/security.php:366
|
||||
msgid ""
|
||||
"The form security token was not correct. This probably happened because the "
|
||||
"form has been opened for too long (>3 hours) before submitting it."
|
||||
msgstr "El formulari del token de seguretat no es correcte. Això probablement passa perquè el formulari ha estat massa temps obert (>3 hores) abans d'enviat-lo."
|
||||
|
||||
#: ../../include/Contact.php:111
|
||||
#: ../../include/Contact.php:115
|
||||
msgid "stopped following"
|
||||
msgstr "Deixar de seguir"
|
||||
|
||||
#: ../../include/Contact.php:220 ../../include/conversation.php:1106
|
||||
#: ../../include/Contact.php:225 ../../include/conversation.php:820
|
||||
msgid "Poke"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/Contact.php:221 ../../include/conversation.php:1100
|
||||
#: ../../include/Contact.php:226 ../../include/conversation.php:814
|
||||
msgid "View Status"
|
||||
msgstr "Veure Estatus"
|
||||
|
||||
#: ../../include/Contact.php:222 ../../include/conversation.php:1101
|
||||
#: ../../include/Contact.php:227 ../../include/conversation.php:815
|
||||
msgid "View Profile"
|
||||
msgstr "Veure Perfil"
|
||||
|
||||
#: ../../include/Contact.php:223 ../../include/conversation.php:1102
|
||||
#: ../../include/Contact.php:228 ../../include/conversation.php:816
|
||||
msgid "View Photos"
|
||||
msgstr "Veure Fotos"
|
||||
|
||||
#: ../../include/Contact.php:224 ../../include/Contact.php:237
|
||||
#: ../../include/conversation.php:1103
|
||||
#: ../../include/Contact.php:229 ../../include/Contact.php:251
|
||||
#: ../../include/conversation.php:817
|
||||
msgid "Network Posts"
|
||||
msgstr "Enviaments a la Xarxa"
|
||||
|
||||
#: ../../include/Contact.php:225 ../../include/Contact.php:237
|
||||
#: ../../include/conversation.php:1104
|
||||
#: ../../include/Contact.php:230 ../../include/Contact.php:251
|
||||
#: ../../include/conversation.php:818
|
||||
msgid "Edit Contact"
|
||||
msgstr "Editat Contacte"
|
||||
|
||||
#: ../../include/Contact.php:226 ../../include/Contact.php:237
|
||||
#: ../../include/conversation.php:1105
|
||||
#: ../../include/Contact.php:231 ../../include/Contact.php:251
|
||||
#: ../../include/conversation.php:819
|
||||
msgid "Send PM"
|
||||
msgstr "Enviar Missatge Privat"
|
||||
|
||||
#: ../../include/conversation.php:206
|
||||
#: ../../include/conversation.php:207
|
||||
#, php-format
|
||||
msgid "%1$s poked %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:290
|
||||
#: ../../include/conversation.php:291
|
||||
msgid "post/item"
|
||||
msgstr "anunci/element"
|
||||
|
||||
#: ../../include/conversation.php:291
|
||||
#: ../../include/conversation.php:292
|
||||
#, php-format
|
||||
msgid "%1$s marked %2$s's %3$s as favorite"
|
||||
msgstr "%1$s marcat %2$s's %3$s com favorit"
|
||||
|
||||
#: ../../include/conversation.php:645 ../../include/conversation.php:919
|
||||
#: ../../object/Item.php:217
|
||||
#: ../../include/conversation.php:621 ../../object/Item.php:249
|
||||
msgid "Categories:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:646 ../../include/conversation.php:920
|
||||
#: ../../object/Item.php:218
|
||||
#: ../../include/conversation.php:622 ../../object/Item.php:250
|
||||
msgid "Filed under:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1002
|
||||
#: ../../include/conversation.php:710
|
||||
msgid "remove"
|
||||
msgstr "esborrar"
|
||||
|
||||
#: ../../include/conversation.php:1006
|
||||
#: ../../include/conversation.php:714
|
||||
msgid "Delete Selected Items"
|
||||
msgstr "Esborra els Elements Seleccionats"
|
||||
|
||||
#: ../../include/conversation.php:1164
|
||||
#: ../../include/conversation.php:813
|
||||
msgid "Follow Thread"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:882
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
msgstr "a %s agrada això."
|
||||
|
||||
#: ../../include/conversation.php:1164
|
||||
#: ../../include/conversation.php:882
|
||||
#, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr "a %s desagrada això."
|
||||
|
||||
#: ../../include/conversation.php:1168
|
||||
#: ../../include/conversation.php:887
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this."
|
||||
msgstr "Li agrada a <span %1$s>%2$d persones</span> ."
|
||||
msgid "<span %1$s>%2$d people</span> like this"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1170
|
||||
#: ../../include/conversation.php:890
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this."
|
||||
msgstr "No li agrada <span %1$s>%2$d persones</span> ."
|
||||
msgid "<span %1$s>%2$d people</span> don't like this"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1176
|
||||
#: ../../include/conversation.php:904
|
||||
msgid "and"
|
||||
msgstr "i"
|
||||
|
||||
#: ../../include/conversation.php:1179
|
||||
#: ../../include/conversation.php:910
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr ", i altres %d persones"
|
||||
|
||||
#: ../../include/conversation.php:1180
|
||||
#: ../../include/conversation.php:912
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr "a %s li agrada això."
|
||||
|
||||
#: ../../include/conversation.php:1180
|
||||
#: ../../include/conversation.php:912
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr "a %s no li agrada això."
|
||||
|
||||
#: ../../include/conversation.php:1204 ../../include/conversation.php:1221
|
||||
#: ../../include/conversation.php:939 ../../include/conversation.php:957
|
||||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr "Visible per a <strong>tothom</strong>"
|
||||
|
||||
#: ../../include/conversation.php:1206 ../../include/conversation.php:1223
|
||||
#: ../../include/conversation.php:941 ../../include/conversation.php:959
|
||||
msgid "Please enter a video link/URL:"
|
||||
msgstr "Per favor , introdueixi el enllaç/URL del video"
|
||||
|
||||
#: ../../include/conversation.php:1207 ../../include/conversation.php:1224
|
||||
#: ../../include/conversation.php:942 ../../include/conversation.php:960
|
||||
msgid "Please enter an audio link/URL:"
|
||||
msgstr "Per favor , introdueixi el enllaç/URL del audio:"
|
||||
|
||||
#: ../../include/conversation.php:1208 ../../include/conversation.php:1225
|
||||
#: ../../include/conversation.php:943 ../../include/conversation.php:961
|
||||
msgid "Tag term:"
|
||||
msgstr "Terminis de l'etiqueta:"
|
||||
|
||||
#: ../../include/conversation.php:1210 ../../include/conversation.php:1227
|
||||
#: ../../include/conversation.php:945 ../../include/conversation.php:963
|
||||
msgid "Where are you right now?"
|
||||
msgstr "On ets ara?"
|
||||
|
||||
#: ../../include/conversation.php:1270
|
||||
msgid "upload photo"
|
||||
msgstr "carregar fotos"
|
||||
#: ../../include/conversation.php:946
|
||||
msgid "Delete item(s)?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1272
|
||||
msgid "attach file"
|
||||
msgstr "adjuntar arxiu"
|
||||
#: ../../include/conversation.php:988
|
||||
msgid "Post to Email"
|
||||
msgstr "Correu per enviar"
|
||||
|
||||
#: ../../include/conversation.php:1274
|
||||
msgid "web link"
|
||||
msgstr "enllaç de web"
|
||||
|
||||
#: ../../include/conversation.php:1275
|
||||
msgid "Insert video link"
|
||||
msgstr "Insertar enllaç de video"
|
||||
|
||||
#: ../../include/conversation.php:1276
|
||||
msgid "video link"
|
||||
msgstr "enllaç de video"
|
||||
|
||||
#: ../../include/conversation.php:1277
|
||||
msgid "Insert audio link"
|
||||
msgstr "Insertar enllaç de audio"
|
||||
|
||||
#: ../../include/conversation.php:1278
|
||||
msgid "audio link"
|
||||
msgstr "enllaç de audio"
|
||||
|
||||
#: ../../include/conversation.php:1280
|
||||
msgid "set location"
|
||||
msgstr "establir la ubicació"
|
||||
|
||||
#: ../../include/conversation.php:1282
|
||||
msgid "clear location"
|
||||
msgstr "netejar ubicació"
|
||||
|
||||
#: ../../include/conversation.php:1289
|
||||
#: ../../include/conversation.php:1044
|
||||
msgid "permissions"
|
||||
msgstr "Permissos"
|
||||
|
||||
#: ../../include/plugin.php:389 ../../include/plugin.php:391
|
||||
#: ../../include/conversation.php:1068
|
||||
msgid "Post to Groups"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1069
|
||||
msgid "Post to Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1070
|
||||
msgid "Private post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/plugin.php:429 ../../include/plugin.php:431
|
||||
msgid "Click here to upgrade."
|
||||
msgstr "Clica aquí per actualitzar."
|
||||
|
||||
#: ../../include/plugin.php:397
|
||||
#: ../../include/plugin.php:437
|
||||
msgid "This action exceeds the limits set by your subscription plan."
|
||||
msgstr "Aquesta acció excedeix els límits del teu plan de subscripció."
|
||||
|
||||
#: ../../include/plugin.php:402
|
||||
#: ../../include/plugin.php:442
|
||||
msgid "This action is not available under your subscription plan."
|
||||
msgstr "Aquesta acció no està disponible en el teu plan de subscripció."
|
||||
|
||||
#: ../../boot.php:573
|
||||
#: ../../boot.php:640
|
||||
msgid "Delete this item?"
|
||||
msgstr "Esborrar aquest element?"
|
||||
|
||||
#: ../../boot.php:576
|
||||
#: ../../boot.php:643
|
||||
msgid "show fewer"
|
||||
msgstr "Mostrar menys"
|
||||
|
||||
#: ../../boot.php:783
|
||||
#: ../../boot.php:899
|
||||
#, php-format
|
||||
msgid "Update %s failed. See error logs."
|
||||
msgstr "Actualització de %s fracassà. Mira el registre d'errors."
|
||||
|
||||
#: ../../boot.php:785
|
||||
#: ../../boot.php:901
|
||||
#, php-format
|
||||
msgid "Update Error at %s"
|
||||
msgstr "Error d'actualització en %s"
|
||||
|
||||
#: ../../boot.php:886
|
||||
#: ../../boot.php:1011
|
||||
msgid "Create a New Account"
|
||||
msgstr "Crear un Nou Compte"
|
||||
|
||||
#: ../../boot.php:914
|
||||
#: ../../boot.php:1039
|
||||
msgid "Nickname or Email address: "
|
||||
msgstr "Àlies o Adreça de correu:"
|
||||
|
||||
#: ../../boot.php:915
|
||||
#: ../../boot.php:1040
|
||||
msgid "Password: "
|
||||
msgstr "Contrasenya:"
|
||||
|
||||
#: ../../boot.php:918
|
||||
#: ../../boot.php:1041
|
||||
msgid "Remember me"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1044
|
||||
msgid "Or login using OpenID: "
|
||||
msgstr "O accedixi emprant OpenID:"
|
||||
|
||||
#: ../../boot.php:924
|
||||
#: ../../boot.php:1050
|
||||
msgid "Forgot your password?"
|
||||
msgstr "Oblidà la contrasenya?"
|
||||
|
||||
#: ../../boot.php:1035
|
||||
#: ../../boot.php:1053
|
||||
msgid "Website Terms of Service"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1054
|
||||
msgid "terms of service"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1056
|
||||
msgid "Website Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1057
|
||||
msgid "privacy policy"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1186
|
||||
msgid "Requested account is not available."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1112
|
||||
#: ../../boot.php:1265
|
||||
msgid "Edit profile"
|
||||
msgstr "Editar perfil"
|
||||
|
||||
#: ../../boot.php:1178
|
||||
#: ../../boot.php:1331
|
||||
msgid "Message"
|
||||
msgstr "Missatge"
|
||||
|
||||
#: ../../boot.php:1300 ../../boot.php:1386
|
||||
#: ../../boot.php:1339
|
||||
msgid "Manage/edit profiles"
|
||||
msgstr "Gestiona/edita perfils"
|
||||
|
||||
#: ../../boot.php:1461 ../../boot.php:1547
|
||||
msgid "g A l F d"
|
||||
msgstr "g A l F d"
|
||||
|
||||
#: ../../boot.php:1301 ../../boot.php:1387
|
||||
#: ../../boot.php:1462 ../../boot.php:1548
|
||||
msgid "F d"
|
||||
msgstr "F d"
|
||||
|
||||
#: ../../boot.php:1346 ../../boot.php:1427
|
||||
#: ../../boot.php:1507 ../../boot.php:1588
|
||||
msgid "[today]"
|
||||
msgstr "[avui]"
|
||||
|
||||
#: ../../boot.php:1358
|
||||
#: ../../boot.php:1519
|
||||
msgid "Birthday Reminders"
|
||||
msgstr "Recordatori d'Aniversaris"
|
||||
|
||||
#: ../../boot.php:1359
|
||||
#: ../../boot.php:1520
|
||||
msgid "Birthdays this week:"
|
||||
msgstr "Aniversari aquesta setmana"
|
||||
|
||||
#: ../../boot.php:1420
|
||||
#: ../../boot.php:1581
|
||||
msgid "[No description]"
|
||||
msgstr "[sense descripció]"
|
||||
|
||||
#: ../../boot.php:1438
|
||||
#: ../../boot.php:1599
|
||||
msgid "Event Reminders"
|
||||
msgstr "Recordatori d'Esdeveniments"
|
||||
|
||||
#: ../../boot.php:1439
|
||||
#: ../../boot.php:1600
|
||||
msgid "Events this week:"
|
||||
msgstr "Esdeveniments aquesta setmana"
|
||||
|
||||
#: ../../boot.php:1668
|
||||
#: ../../boot.php:1836
|
||||
msgid "Status Messages and Posts"
|
||||
msgstr "Missatges i Enviaments d'Estatus"
|
||||
|
||||
#: ../../boot.php:1675
|
||||
#: ../../boot.php:1843
|
||||
msgid "Profile Details"
|
||||
msgstr "Detalls del Perfil"
|
||||
|
||||
#: ../../boot.php:1692
|
||||
#: ../../boot.php:1860
|
||||
msgid "Events and Calendar"
|
||||
msgstr "Esdeveniments i Calendari"
|
||||
|
||||
#: ../../boot.php:1699
|
||||
#: ../../boot.php:1867
|
||||
msgid "Only You Can See This"
|
||||
msgstr "Només ho pots veure tu"
|
||||
|
||||
#: ../../object/Item.php:261
|
||||
msgid "via"
|
||||
msgstr ""
|
||||
|
||||
#: ../../index.php:400
|
||||
msgid "toggle mobile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon.old/bg/bg.php:51
|
||||
msgid "Bg settings updated."
|
||||
msgstr "Ajustos de Bg actualitzats."
|
||||
|
||||
#: ../../addon.old/bg/bg.php:82
|
||||
msgid "Bg Settings"
|
||||
msgstr "Ajustos de Bg"
|
||||
|
||||
#: ../../addon.old/drpost/drpost.php:35
|
||||
msgid "Post to Drupal"
|
||||
msgstr "Missatge a Drupal"
|
||||
|
||||
#: ../../addon.old/drpost/drpost.php:72
|
||||
msgid "Drupal Post Settings"
|
||||
msgstr "Configuració d'enviaments a Drupal"
|
||||
|
||||
#: ../../addon.old/drpost/drpost.php:74
|
||||
msgid "Enable Drupal Post Plugin"
|
||||
msgstr "Habilitar el Plugin d'Enviaments de Drupal"
|
||||
|
||||
#: ../../addon.old/drpost/drpost.php:79
|
||||
msgid "Drupal username"
|
||||
msgstr "Nom d'usuari de Drupal"
|
||||
|
||||
#: ../../addon.old/drpost/drpost.php:84
|
||||
msgid "Drupal password"
|
||||
msgstr "Contrasenya de Drupal"
|
||||
|
||||
#: ../../addon.old/drpost/drpost.php:89
|
||||
msgid "Post Type - article,page,or blog"
|
||||
msgstr "Tipus d'Enviament- article,pàgina, o blog"
|
||||
|
||||
#: ../../addon.old/drpost/drpost.php:94
|
||||
msgid "Drupal site URL"
|
||||
msgstr "URL del lloc Drupal"
|
||||
|
||||
#: ../../addon.old/drpost/drpost.php:99
|
||||
msgid "Drupal site uses clean URLS"
|
||||
msgstr "el Lloc Drupal empra URLS netes"
|
||||
|
||||
#: ../../addon.old/drpost/drpost.php:104
|
||||
msgid "Post to Drupal by default"
|
||||
msgstr "Enviar a Drupal per defecte"
|
||||
|
||||
#: ../../addon.old/oembed.old/oembed.php:30
|
||||
msgid "OEmbed settings updated"
|
||||
msgstr "Actualitzar la configuració OEmbed"
|
||||
|
||||
#: ../../addon.old/oembed.old/oembed.php:43
|
||||
msgid "Use OEmbed for YouTube videos"
|
||||
msgstr "Empreu OEmbed per videos YouTube"
|
||||
|
||||
#: ../../addon.old/oembed.old/oembed.php:71
|
||||
msgid "URL to embed:"
|
||||
msgstr "Adreça URL del recurs"
|
||||
|
||||
#: ../../addon.old/tumblr/tumblr.php:74
|
||||
msgid "Tumblr login"
|
||||
msgstr "Inici de sessió de Tumblr"
|
||||
|
||||
#: ../../addon.old/tumblr/tumblr.php:79
|
||||
msgid "Tumblr password"
|
||||
msgstr "Caontrasenya de Tumblr"
|
||||
|
|
|
|||
|
|
@ -53,12 +53,13 @@ $a->strings["Description:"] = "Descripció:";
|
|||
$a->strings["Location:"] = "Ubicació:";
|
||||
$a->strings["Title:"] = "Títol:";
|
||||
$a->strings["Share this event"] = "Compartir aquest esdeveniment";
|
||||
$a->strings["System down for maintenance"] = "";
|
||||
$a->strings["Cancel"] = "Cancel·lar";
|
||||
$a->strings["Tag removed"] = "Etiqueta eliminada";
|
||||
$a->strings["Remove Item Tag"] = "Esborrar etiqueta del element";
|
||||
$a->strings["Select a tag to remove: "] = "Selecciona etiqueta a esborrar:";
|
||||
$a->strings["Remove"] = "Esborrar";
|
||||
$a->strings["%s welcomes %s"] = "%s Benvingut %s";
|
||||
$a->strings["%1\$s welcomes %2\$s"] = "";
|
||||
$a->strings["Authorize application connection"] = "Autoritzi la connexió de aplicacions";
|
||||
$a->strings["Return to your app and insert this Securty Code:"] = "Torni a la seva aplicació i inserti aquest Codi de Seguretat:";
|
||||
$a->strings["Please login to continue."] = "Per favor, accedeixi per a continuar.";
|
||||
|
|
@ -73,10 +74,11 @@ $a->strings["Contact information unavailable"] = "Informació del Contacte no di
|
|||
$a->strings["Profile Photos"] = "Fotos del Perfil";
|
||||
$a->strings["Album not found."] = "Àlbum no trobat.";
|
||||
$a->strings["Delete Album"] = "Eliminar Àlbum";
|
||||
$a->strings["Do you really want to delete this photo album and all its photos?"] = "";
|
||||
$a->strings["Delete Photo"] = "Eliminar Foto";
|
||||
$a->strings["was tagged in a"] = "Fou etiquetat a un";
|
||||
$a->strings["photo"] = "foto";
|
||||
$a->strings["by"] = "per";
|
||||
$a->strings["Do you really want to delete this photo?"] = "";
|
||||
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
|
||||
$a->strings["a photo"] = "";
|
||||
$a->strings["Image exceeds size limit of "] = "La imatge excedeix el límit de ";
|
||||
$a->strings["Image file is empty."] = "El fitxer de imatge és buit.";
|
||||
$a->strings["Unable to process image."] = "Incapaç de processar la imatge.";
|
||||
|
|
@ -85,12 +87,15 @@ $a->strings["Public access denied."] = "Accés públic denegat.";
|
|||
$a->strings["No photos selected"] = "No s'han seleccionat fotos";
|
||||
$a->strings["Access to this item is restricted."] = "L'accés a aquest element està restringit.";
|
||||
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Has emprat %1$.2f Mbytes de %2$.2f Mbytes del magatzem de fotos.";
|
||||
$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Has emprat %1$.2f Mbytes del magatzem de fotos.";
|
||||
$a->strings["Upload Photos"] = "Carregar Fotos";
|
||||
$a->strings["New album name: "] = "Nou nom d'àlbum:";
|
||||
$a->strings["or existing album name: "] = "o nom d'àlbum existent:";
|
||||
$a->strings["Do not show a status post for this upload"] = "No tornis a mostrar un missatge d'estat d'aquesta pujada";
|
||||
$a->strings["Permissions"] = "Permisos";
|
||||
$a->strings["Show to Groups"] = "";
|
||||
$a->strings["Show to Contacts"] = "";
|
||||
$a->strings["Private Photo"] = "";
|
||||
$a->strings["Public Photo"] = "";
|
||||
$a->strings["Edit Album"] = "Editar Àlbum";
|
||||
$a->strings["Show Newest First"] = "";
|
||||
$a->strings["Show Oldest First"] = "";
|
||||
|
|
@ -110,6 +115,8 @@ $a->strings["New album name"] = "Nou nom d'àlbum";
|
|||
$a->strings["Caption"] = "Títol";
|
||||
$a->strings["Add a Tag"] = "Afegir una etiqueta";
|
||||
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping";
|
||||
$a->strings["Private photo"] = "";
|
||||
$a->strings["Public photo"] = "";
|
||||
$a->strings["I like this (toggle)"] = "M'agrada això (canviar)";
|
||||
$a->strings["I don't like this (toggle)"] = "No m'agrada això (canviar)";
|
||||
$a->strings["Share"] = "Compartir";
|
||||
|
|
@ -132,16 +139,21 @@ $a->strings["Installed plugins/addons/apps:"] = "plugins/addons/apps instal·lat
|
|||
$a->strings["No installed plugins/addons/apps"] = "plugins/addons/apps no instal·lats";
|
||||
$a->strings["Item not found"] = "Element no trobat";
|
||||
$a->strings["Edit post"] = "Editar Enviament";
|
||||
$a->strings["Post to Email"] = "Correu per enviar";
|
||||
$a->strings["Edit"] = "Editar";
|
||||
$a->strings["Upload photo"] = "Carregar foto";
|
||||
$a->strings["upload photo"] = "carregar fotos";
|
||||
$a->strings["Attach file"] = "Adjunta fitxer";
|
||||
$a->strings["attach file"] = "adjuntar arxiu";
|
||||
$a->strings["Insert web link"] = "Inserir enllaç web";
|
||||
$a->strings["Insert YouTube video"] = "Serà mostrat de forma preeminent a la pagina durant el procés de registre.";
|
||||
$a->strings["Insert Vorbis [.ogg] video"] = "Inserir video Vorbis [.ogg]";
|
||||
$a->strings["Insert Vorbis [.ogg] audio"] = "Inserir audio Vorbis [.ogg]";
|
||||
$a->strings["web link"] = "enllaç de web";
|
||||
$a->strings["Insert video link"] = "Insertar enllaç de video";
|
||||
$a->strings["video link"] = "enllaç de video";
|
||||
$a->strings["Insert audio link"] = "Insertar enllaç de audio";
|
||||
$a->strings["audio link"] = "enllaç de audio";
|
||||
$a->strings["Set your location"] = "Canvia la teva ubicació";
|
||||
$a->strings["set location"] = "establir la ubicació";
|
||||
$a->strings["Clear browser location"] = "neteja adreçes del navegador";
|
||||
$a->strings["clear location"] = "netejar ubicació";
|
||||
$a->strings["Permission settings"] = "Configuració de permisos";
|
||||
$a->strings["CC: email addresses"] = "CC: Adreça de correu";
|
||||
$a->strings["Public post"] = "Enviament públic";
|
||||
|
|
@ -193,6 +205,18 @@ $a->strings["Diaspora"] = "Diaspora";
|
|||
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favor no utilitzi aquest formulari. Al contrari, entra %s en la barra de cerques de Diaspora.";
|
||||
$a->strings["Your Identity Address:"] = "La Teva Adreça Identificativa:";
|
||||
$a->strings["Submit Request"] = "Sol·licitud Enviada";
|
||||
$a->strings["Account settings"] = "Configuració del compte";
|
||||
$a->strings["Display settings"] = "Ajustos de pantalla";
|
||||
$a->strings["Connector settings"] = "Configuració dels connectors";
|
||||
$a->strings["Plugin settings"] = "Configuració del plugin";
|
||||
$a->strings["Connected apps"] = "App connectada";
|
||||
$a->strings["Export personal data"] = "Exportar dades personals";
|
||||
$a->strings["Remove account"] = "Esborrar compte";
|
||||
$a->strings["Settings"] = "Ajustos";
|
||||
$a->strings["Export account"] = "";
|
||||
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "";
|
||||
$a->strings["Export all"] = "";
|
||||
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "";
|
||||
$a->strings["Friendica Social Communications Server - Setup"] = "Friendica Social Communications Server - Ajustos";
|
||||
$a->strings["Could not connect to database."] = "No puc connectar a la base de dades.";
|
||||
$a->strings["Could not create table."] = "No puc creat taula.";
|
||||
|
|
@ -241,6 +265,11 @@ $a->strings["This is most often a permission setting, as the web server may not
|
|||
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Al final d'aquest procediment, et facilitarem un text que hauràs de guardar en un arxiu que s'anomena .htconfig.php que hi es a la carpeta principal del teu Friendica.";
|
||||
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativament, pots saltar-te aquest procediment i configurar-ho manualment. Per favor, mira l'arxiu \"INTALL.txt\" per a instruccions.";
|
||||
$a->strings[".htconfig.php is writable"] = ".htconfig.php és escribible";
|
||||
$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
|
||||
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "";
|
||||
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
|
||||
$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "";
|
||||
$a->strings["view/smarty3 is writable"] = "";
|
||||
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite en .htaccess no esta treballant. Comprova la configuració del teu servidor.";
|
||||
$a->strings["Url rewrite is working"] = "URL rewrite està treballant";
|
||||
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "L'arxiu per a la configuració de la base de dades \".htconfig.php\" no es pot escriure. Per favor, usi el text adjunt per crear un arxiu de configuració en l'arrel del servidor web.";
|
||||
|
|
@ -249,16 +278,16 @@ $a->strings["<h1>What next</h1>"] = "<h1>Que es següent</h1>";
|
|||
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: necessitarà configurar [manualment] el programar una tasca pel sondejador (poller.php)";
|
||||
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
|
||||
$a->strings["Time Conversion"] = "Temps de Conversió";
|
||||
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica ofereix aquest servei per compartir esdeveniments amb altres xarxes i amics a les zones horàries desconegudes.";
|
||||
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
|
||||
$a->strings["UTC time: %s"] = "hora UTC: %s";
|
||||
$a->strings["Current timezone: %s"] = "Zona horària actual: %s";
|
||||
$a->strings["Converted localtime: %s"] = "Conversión de hora local: %s";
|
||||
$a->strings["Please select your timezone:"] = "Si us plau, seleccioneu la vostra zona horària:";
|
||||
$a->strings["Poke/Prod"] = "";
|
||||
$a->strings["poke, prod or do other things to somebody"] = "";
|
||||
$a->strings["Poke/Prod"] = "Atia/Punxa";
|
||||
$a->strings["poke, prod or do other things to somebody"] = "Atiar, punxar o fer altres coses a algú";
|
||||
$a->strings["Recipient"] = "Recipient";
|
||||
$a->strings["Choose what you wish to do to recipient"] = "";
|
||||
$a->strings["Make this post private"] = "";
|
||||
$a->strings["Choose what you wish to do to recipient"] = "Tria que vols fer amb el contenidor";
|
||||
$a->strings["Make this post private"] = "Fes aquest missatge privat";
|
||||
$a->strings["Profile Match"] = "Perfil Aconseguit";
|
||||
$a->strings["No keywords to match. Please add keywords to your default profile."] = "No hi ha paraules clau que coincideixin. Si us plau, afegeixi paraules clau al teu perfil predeterminat.";
|
||||
$a->strings["is interested in:"] = "està interessat en:";
|
||||
|
|
@ -355,6 +384,7 @@ $a->strings["Contact has been ignored"] = "El contacte ha estat ignorat";
|
|||
$a->strings["Contact has been unignored"] = "El contacte ha estat recordat";
|
||||
$a->strings["Contact has been archived"] = "El contacte ha estat arxivat";
|
||||
$a->strings["Contact has been unarchived"] = "El contacte ha estat desarxivat";
|
||||
$a->strings["Do you really want to delete this contact?"] = "";
|
||||
$a->strings["Contact has been removed."] = "El contacte ha estat tret";
|
||||
$a->strings["You are mutual friends with %s"] = "Ara te una amistat mutua amb %s";
|
||||
$a->strings["You are sharing with %s"] = "Estas compartint amb %s";
|
||||
|
|
@ -424,7 +454,6 @@ $a->strings["Find"] = "Cercar";
|
|||
$a->strings["No valid account found."] = "compte no vàlid trobat.";
|
||||
$a->strings["Password reset request issued. Check your email."] = "Sol·licitut de restabliment de contrasenya enviat. Comprovi el seu correu.";
|
||||
$a->strings["Password reset requested at %s"] = "Contrasenya restablerta enviada a %s";
|
||||
$a->strings["Administrator"] = "Administrador";
|
||||
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La sol·licitut no pot ser verificada. (Hauries de presentar-la abans). Restabliment de contrasenya fracassat.";
|
||||
$a->strings["Password Reset"] = "Restabliment de Contrasenya";
|
||||
$a->strings["Your password has been reset as requested."] = "La teva contrasenya fou restablerta com vas demanar.";
|
||||
|
|
@ -432,22 +461,17 @@ $a->strings["Your new password is"] = "La teva nova contrasenya es";
|
|||
$a->strings["Save or copy your new password - and then"] = "Guarda o copia la nova contrasenya - i llavors";
|
||||
$a->strings["click here to login"] = "clica aquí per identificarte";
|
||||
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Pots camviar la contrasenya des de la pàgina de <em>Configuración</em> desprès d'accedir amb èxit.";
|
||||
$a->strings["Your password has been changed at %s"] = "";
|
||||
$a->strings["Forgot your Password?"] = "Has Oblidat la Contrasenya?";
|
||||
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. ";
|
||||
$a->strings["Nickname or Email: "] = "Àlies o Correu:";
|
||||
$a->strings["Reset"] = "Restablir";
|
||||
$a->strings["Account settings"] = "Configuració del compte";
|
||||
$a->strings["Display settings"] = "Ajustos de pantalla";
|
||||
$a->strings["Connector settings"] = "Configuració dels connectors";
|
||||
$a->strings["Plugin settings"] = "Configuració del plugin";
|
||||
$a->strings["Connected apps"] = "App connectada";
|
||||
$a->strings["Export personal data"] = "Exportar dades personals";
|
||||
$a->strings["Remove account"] = "Esborrar compte";
|
||||
$a->strings["Settings"] = "Ajustos";
|
||||
$a->strings["Additional features"] = "";
|
||||
$a->strings["Missing some important data!"] = "Perdudes algunes dades importants!";
|
||||
$a->strings["Update"] = "Actualitzar";
|
||||
$a->strings["Failed to connect with email account using the settings provided."] = "Connexió fracassada amb el compte de correu emprant la configuració proveïda.";
|
||||
$a->strings["Email settings updated."] = "Configuració del correu electrònic actualitzada.";
|
||||
$a->strings["Features updated"] = "";
|
||||
$a->strings["Passwords do not match. Password unchanged."] = "Les contrasenyes no coincideixen. Contrasenya no canviada.";
|
||||
$a->strings["Empty passwords are not allowed. Password unchanged."] = "No es permeten contasenyes buides. Contrasenya no canviada";
|
||||
$a->strings["Password changed."] = "Contrasenya canviada.";
|
||||
|
|
@ -471,6 +495,9 @@ $a->strings["No name"] = "Sense nom";
|
|||
$a->strings["Remove authorization"] = "retirar l'autorització";
|
||||
$a->strings["No Plugin settings configured"] = "No s'han configurat ajustos de Plugin";
|
||||
$a->strings["Plugin Settings"] = "Ajustos de Plugin";
|
||||
$a->strings["Off"] = "";
|
||||
$a->strings["On"] = "";
|
||||
$a->strings["Additional Features"] = "";
|
||||
$a->strings["Built-in support for %s connectivity is %s"] = "El suport integrat per a la connectivitat de %s és %s";
|
||||
$a->strings["enabled"] = "habilitat";
|
||||
$a->strings["disabled"] = "deshabilitat";
|
||||
|
|
@ -498,7 +525,7 @@ $a->strings["Display Theme:"] = "Visualitzar el Tema:";
|
|||
$a->strings["Mobile Theme:"] = "";
|
||||
$a->strings["Update browser every xx seconds"] = "Actualitzar navegador cada xx segons";
|
||||
$a->strings["Minimum of 10 seconds, no maximum"] = "Mínim cada 10 segons, no hi ha màxim";
|
||||
$a->strings["Number of items to display per page:"] = "";
|
||||
$a->strings["Number of items to display per page:"] = "Número d'elements a mostrar per pàgina";
|
||||
$a->strings["Maximum of 100 items"] = "Màxim de 100 elements";
|
||||
$a->strings["Don't show emoticons"] = "No mostrar emoticons";
|
||||
$a->strings["Normal Account Page"] = "Pàgina Normal del Compte ";
|
||||
|
|
@ -549,6 +576,9 @@ $a->strings["Maximum Friend Requests/Day:"] = "Nombre Màxim de Sol·licituds pe
|
|||
$a->strings["(to prevent spam abuse)"] = "(per a prevenir abusos de spam)";
|
||||
$a->strings["Default Post Permissions"] = "Permisos de Correu per Defecte";
|
||||
$a->strings["(click to open/close)"] = "(clicar per a obrir/tancar)";
|
||||
$a->strings["Default Private Post"] = "";
|
||||
$a->strings["Default Public Post"] = "";
|
||||
$a->strings["Default Permissions for New Posts"] = "";
|
||||
$a->strings["Maximum private messages per day from unknown people:"] = "Màxim nombre de missatges, per dia, de desconeguts:";
|
||||
$a->strings["Notification Settings"] = "Ajustos de Notificació";
|
||||
$a->strings["By default post a status message when:"] = "Enviar per defecte un missatge de estatus quan:";
|
||||
|
|
@ -563,7 +593,7 @@ $a->strings["Someone writes a followup comment"] = "Algú ha escrit un comentari
|
|||
$a->strings["You receive a private message"] = "Has rebut un missatge privat";
|
||||
$a->strings["You receive a friend suggestion"] = "Has rebut una suggerencia d'un amic";
|
||||
$a->strings["You are tagged in a post"] = "Estàs etiquetat en un enviament";
|
||||
$a->strings["You are poked/prodded/etc. in a post"] = "";
|
||||
$a->strings["You are poked/prodded/etc. in a post"] = "Has estat Atiat/punxat/etc, en un enviament";
|
||||
$a->strings["Advanced Account/Page Type Settings"] = "Ajustos Avançats de Compte/ Pàgina";
|
||||
$a->strings["Change the behaviour of this account for special situations"] = "Canviar el comportament d'aquest compte en situacions especials";
|
||||
$a->strings["Manage Identities and/or Pages"] = "Administrar Identitats i/o Pàgines";
|
||||
|
|
@ -580,10 +610,10 @@ $a->strings["Sort by Post Date"] = "Ordenar per Data d'Enviament";
|
|||
$a->strings["Posts that mention or involve you"] = "Missatge que et menciona o t'impliquen";
|
||||
$a->strings["New"] = "Nou";
|
||||
$a->strings["Activity Stream - by date"] = "Activitat del Flux - per data";
|
||||
$a->strings["Starred"] = "Favorits";
|
||||
$a->strings["Favourite Posts"] = "Enviaments Favorits";
|
||||
$a->strings["Shared Links"] = "Enllaços Compartits";
|
||||
$a->strings["Interesting Links"] = "Enllaços Interesants";
|
||||
$a->strings["Starred"] = "Favorits";
|
||||
$a->strings["Favourite Posts"] = "Enviaments Favorits";
|
||||
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
|
||||
0 => "Advertència: Aquest grup conté el membre %s en una xarxa insegura.",
|
||||
1 => "Advertència: Aquest grup conté %s membres d'una xarxa insegura.",
|
||||
|
|
@ -594,6 +624,14 @@ $a->strings["Private messages to this person are at risk of public disclosure."]
|
|||
$a->strings["Invalid contact."] = "Contacte no vàlid.";
|
||||
$a->strings["Personal Notes"] = "Notes Personals";
|
||||
$a->strings["Save"] = "Guardar";
|
||||
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà.";
|
||||
$a->strings["Import"] = "";
|
||||
$a->strings["Move account"] = "";
|
||||
$a->strings["You can import an account from another Friendica server."] = "";
|
||||
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "";
|
||||
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "";
|
||||
$a->strings["Account file"] = "";
|
||||
$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "";
|
||||
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre diari de missatges al mur per %s excedit. El missatge ha fallat.";
|
||||
$a->strings["No recipient selected."] = "No s'ha seleccionat destinatari.";
|
||||
$a->strings["Unable to check your home location."] = "Incapaç de comprovar la localització.";
|
||||
|
|
@ -613,35 +651,35 @@ $a->strings["We would like to offer some tips and links to help make your experi
|
|||
$a->strings["Getting Started"] = "";
|
||||
$a->strings["Friendica Walk-Through"] = "";
|
||||
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "";
|
||||
$a->strings["Go to Your Settings"] = "";
|
||||
$a->strings["Go to Your Settings"] = "Anar als Teus Ajustos";
|
||||
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "En la de la seva <em>configuració</em> de la pàgina - canviï la contrasenya inicial. També prengui nota de la Adreça d'Identitat. Això s'assembla a una adreça de correu electrònic - i serà útil per fer amics a la xarxa social lliure.";
|
||||
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Reviseu les altres configuracions, en particular la configuració de privadesa. Una llista de directoris no publicada és com tenir un número de telèfon no llistat. Normalment, hauria de publicar la seva llista - a menys que tots els seus amics i els amics potencials sàpiguen exactament com trobar-li.";
|
||||
$a->strings["Profile"] = "Perfil";
|
||||
$a->strings["Upload Profile Photo"] = "Pujar Foto del Perfil";
|
||||
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Puji una foto del seu perfil si encara no ho ha fet. Els estudis han demostrat que les persones amb fotos reals de ells mateixos tenen deu vegades més probabilitats de fer amics que les persones que no ho fan.";
|
||||
$a->strings["Edit Your Profile"] = "";
|
||||
$a->strings["Edit Your Profile"] = "Editar el Teu Perfil";
|
||||
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editi el perfil per <strong>defecte</strong> al seu gust. Reviseu la configuració per ocultar la seva llista d'amics i ocultar el perfil dels visitants desconeguts.";
|
||||
$a->strings["Profile Keywords"] = "";
|
||||
$a->strings["Profile Keywords"] = "Paraules clau del Perfil";
|
||||
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Estableix algunes paraules clau públiques al teu perfil predeterminat que descriguin els teus interessos. Podem ser capaços de trobar altres persones amb interessos similars i suggerir amistats.";
|
||||
$a->strings["Connecting"] = "";
|
||||
$a->strings["Connecting"] = "Connectant";
|
||||
$a->strings["Facebook"] = "Facebook";
|
||||
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autoritzi el connector de Facebook si vostè té un compte al Facebook i nosaltres (opcionalment) importarem tots els teus amics de Facebook i les converses.";
|
||||
$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Si </em> aquesta és el seu servidor personal, la instal·lació del complement de Facebook pot facilitar la transició a la web social lliure.";
|
||||
$a->strings["Importing Emails"] = "";
|
||||
$a->strings["Importing Emails"] = "Important Emails";
|
||||
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Introduïu les dades d'accés al correu electrònic a la seva pàgina de configuració de connector, si es desitja importar i relacionar-se amb amics o llistes de correu de la seva bústia d'email";
|
||||
$a->strings["Go to Your Contacts Page"] = "";
|
||||
$a->strings["Go to Your Contacts Page"] = "Anar a la Teva Pàgina de Contactes";
|
||||
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "La seva pàgina de Contactes és la seva porta d'entrada a la gestió de l'amistat i la connexió amb amics d'altres xarxes. Normalment, vostè entrar en la seva direcció o URL del lloc al diàleg <em>Afegir Nou Contacte</em>.";
|
||||
$a->strings["Go to Your Site's Directory"] = "";
|
||||
$a->strings["Go to Your Site's Directory"] = "Anar al Teu Directori";
|
||||
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La pàgina del Directori li permet trobar altres persones en aquesta xarxa o altres llocs federats. Busqui un enllaç <em>Connectar</em> o <em>Seguir</em> a la seva pàgina de perfil. Proporcioni la seva pròpia Adreça de Identitat si així ho sol·licita.";
|
||||
$a->strings["Finding New People"] = "";
|
||||
$a->strings["Finding New People"] = "Trobar Gent Nova";
|
||||
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Al tauler lateral de la pàgina de contacte Hi ha diverses eines per trobar nous amics. Podem coincidir amb les persones per interesos, buscar persones pel nom o per interès, i oferir suggeriments basats en les relacions de la xarxa. En un nou lloc, els suggeriments d'amics, en general comencen a poblar el lloc a les 24 hores.";
|
||||
$a->strings["Groups"] = "Grups";
|
||||
$a->strings["Group Your Contacts"] = "";
|
||||
$a->strings["Group Your Contacts"] = "Agrupar els Teus Contactes";
|
||||
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Una vegada que s'han fet alguns amics, organitzi'ls en grups de conversa privada a la barra lateral de la seva pàgina de contactes i després pot interactuar amb cada grup de forma privada a la pàgina de la xarxa.";
|
||||
$a->strings["Why Aren't My Posts Public?"] = "";
|
||||
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "";
|
||||
$a->strings["Getting Help"] = "";
|
||||
$a->strings["Go to the Help Section"] = "";
|
||||
$a->strings["Why Aren't My Posts Public?"] = "Per que no es public el meu enviament?";
|
||||
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecta la teva privacitat. Per defecte, els teus enviaments només s'envien a gent que has afegit com a amic. Per més informació, mira la secció d'ajuda des de l'enllaç de dalt.";
|
||||
$a->strings["Getting Help"] = "Demanant Ajuda";
|
||||
$a->strings["Go to the Help Section"] = "Anar a la secció d'Ajuda";
|
||||
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "A les nostres pàgines <strong>d'ajuda</strong> es poden consultar detalls sobre les característiques d'altres programes i recursos.";
|
||||
$a->strings["Item not available."] = "Element no disponible";
|
||||
$a->strings["Item was not found."] = "Element no trobat.";
|
||||
|
|
@ -669,7 +707,6 @@ $a->strings["Failed to send email message. Here is the message that failed."] =
|
|||
$a->strings["Your registration can not be processed."] = "El seu registre no pot ser processat.";
|
||||
$a->strings["Registration request at %s"] = "Sol·licitud de registre a %s";
|
||||
$a->strings["Your registration is pending approval by the site owner."] = "El seu registre està pendent d'aprovació pel propietari del lloc.";
|
||||
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà.";
|
||||
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vostè pot (opcionalment), omplir aquest formulari a través de OpenID mitjançant el subministrament de la seva OpenID i fent clic a 'Registrar'.";
|
||||
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vostè no està familiaritzat amb Twitter, si us plau deixi aquest camp en blanc i completi la resta dels elements.";
|
||||
$a->strings["Your OpenID (optional): "] = "El seu OpenID (opcional):";
|
||||
|
|
@ -683,6 +720,7 @@ $a->strings["Choose a profile nickname. This must begin with a text character. Y
|
|||
$a->strings["Choose a nickname: "] = "Tria un àlies:";
|
||||
$a->strings["Register"] = "Registrar";
|
||||
$a->strings["People Search"] = "Cercant Gent";
|
||||
$a->strings["photo"] = "foto";
|
||||
$a->strings["status"] = "estatus";
|
||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "a %1\$s agrada %2\$s de %3\$s";
|
||||
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "a %1\$s no agrada %2\$s de %3\$s";
|
||||
|
|
@ -701,7 +739,7 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
|
|||
$a->strings["You may visit them online at %s"] = "El pot visitar en línia a %s";
|
||||
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Si us plau, poseu-vos en contacte amb el remitent responent a aquest missatge si no voleu rebre aquests missatges.";
|
||||
$a->strings["%s posted an update."] = "%s ha publicat una actualització.";
|
||||
$a->strings["%1\$s is currently %2\$s"] = "";
|
||||
$a->strings["%1\$s is currently %2\$s"] = "%1\$s es normalment %2\$s";
|
||||
$a->strings["Mood"] = "";
|
||||
$a->strings["Set your current mood and tell your friends"] = "";
|
||||
$a->strings["Image uploaded but image cropping failed."] = "Imatge pujada però no es va poder retallar.";
|
||||
|
|
@ -722,8 +760,11 @@ $a->strings["No profile"] = "Sense perfil";
|
|||
$a->strings["Remove My Account"] = "Eliminar el Meu Compte";
|
||||
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no serà recuperable.";
|
||||
$a->strings["Please enter your password for verification:"] = "Si us plau, introduïu la contrasenya per a la verificació:";
|
||||
$a->strings["Nothing new here"] = "Res nou aquí";
|
||||
$a->strings["Clear notifications"] = "";
|
||||
$a->strings["New Message"] = "Nou Missatge";
|
||||
$a->strings["Unable to locate contact information."] = "No es pot trobar informació de contacte.";
|
||||
$a->strings["Do you really want to delete this message?"] = "";
|
||||
$a->strings["Message deleted."] = "Missatge eliminat.";
|
||||
$a->strings["Conversation removed."] = "Conversació esborrada.";
|
||||
$a->strings["No messages."] = "Sense missatges.";
|
||||
|
|
@ -775,22 +816,27 @@ $a->strings["Self-signed certificate, use SSL for local links only (discouraged)
|
|||
$a->strings["File upload"] = "Fitxer carregat";
|
||||
$a->strings["Policies"] = "Polítiques";
|
||||
$a->strings["Advanced"] = "Avançat";
|
||||
$a->strings["Performance"] = "";
|
||||
$a->strings["Site name"] = "Nom del lloc";
|
||||
$a->strings["Banner/Logo"] = "Senyera/Logo";
|
||||
$a->strings["System language"] = "Idioma del Sistema";
|
||||
$a->strings["System theme"] = "Tema del sistema";
|
||||
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Tema per defecte del sistema - pot ser obviat pels perfils del usuari - <a href='#' id='cnftheme'>Canviar ajustos de tema</a>";
|
||||
$a->strings["Mobile system theme"] = "";
|
||||
$a->strings["Theme for mobile devices"] = "";
|
||||
$a->strings["Theme for mobile devices"] = "Tema per a aparells mòbils";
|
||||
$a->strings["SSL link policy"] = "Política SSL per als enllaços";
|
||||
$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina si els enllaços generats han de ser forçats a utilitzar SSL";
|
||||
$a->strings["'Share' element"] = "";
|
||||
$a->strings["Activates the bbcode element 'share' for repeating items."] = "";
|
||||
$a->strings["Maximum image size"] = "Mida màxima de les imatges";
|
||||
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Mida màxima en bytes de les imatges a pujar. Per defecte es 0, que vol dir sense límits.";
|
||||
$a->strings["Maximum image length"] = "";
|
||||
$a->strings["Maximum image length"] = "Maxima longitud d'imatge";
|
||||
$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "";
|
||||
$a->strings["JPEG image quality"] = "";
|
||||
$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
|
||||
$a->strings["Register policy"] = "Política per a registrar";
|
||||
$a->strings["Maximum Daily Registrations"] = "";
|
||||
$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "";
|
||||
$a->strings["Register text"] = "Text al registrar";
|
||||
$a->strings["Will be displayed prominently on the registration page."] = "Serà mostrat de forma preminent a la pàgina durant el procés de registre.";
|
||||
$a->strings["Accounts abandoned after x days"] = "Comptes abandonats després de x dies";
|
||||
|
|
@ -837,6 +883,14 @@ $a->strings["Poll interval"] = "Interval entre sondejos";
|
|||
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Endarrerir els processos de sondeig en segon pla durant aquest període, en segons, per tal de reduir la càrrega de treball del sistema, Si s'empra 0, s'utilitza l'interval d'entregues. ";
|
||||
$a->strings["Maximum Load Average"] = "Càrrega Màxima Sostinguda";
|
||||
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Càrrega màxima del sistema abans d'apaçar els processos d'entrega i sondeig - predeterminat a 50.";
|
||||
$a->strings["Use MySQL full text engine"] = "";
|
||||
$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "";
|
||||
$a->strings["Path to item cache"] = "";
|
||||
$a->strings["Cache duration in seconds"] = "";
|
||||
$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "";
|
||||
$a->strings["Path for lock file"] = "";
|
||||
$a->strings["Temp path"] = "";
|
||||
$a->strings["Base path to installation"] = "";
|
||||
$a->strings["Update has been marked successful"] = "L'actualització ha estat marcada amb èxit";
|
||||
$a->strings["Executing %s failed. Check system logs."] = "Ha fracassat l'execució de %s. Comprova el registre del sistema.";
|
||||
$a->strings["Update %s was successfully applied."] = "L'actualització de %s es va aplicar amb èxit.";
|
||||
|
|
@ -877,7 +931,7 @@ $a->strings["Disable"] = "Deshabilitar";
|
|||
$a->strings["Enable"] = "Habilitar";
|
||||
$a->strings["Toggle"] = "Canviar";
|
||||
$a->strings["Author: "] = "Autor:";
|
||||
$a->strings["Maintainer: "] = "Encarregat:";
|
||||
$a->strings["Maintainer: "] = "Responsable:";
|
||||
$a->strings["No themes found."] = "No s'ha trobat temes.";
|
||||
$a->strings["Screenshot"] = "Captura de pantalla";
|
||||
$a->strings["[Experimental]"] = "[Experimental]";
|
||||
|
|
@ -913,12 +967,17 @@ $a->strings["Login failed."] = "Error d'accés.";
|
|||
$a->strings["Contact added"] = "Contacte afegit";
|
||||
$a->strings["Common Friends"] = "Amics Comuns";
|
||||
$a->strings["No contacts in common."] = "Sense contactes en comú.";
|
||||
$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
|
||||
$a->strings["link"] = "enllaç";
|
||||
$a->strings["Item has been removed."] = "El element ha estat esborrat.";
|
||||
$a->strings["Applications"] = "Aplicacions";
|
||||
$a->strings["No installed applications."] = "Aplicacions no instal·lades.";
|
||||
$a->strings["Search"] = "Cercar";
|
||||
$a->strings["Profile not found."] = "Perfil no trobat.";
|
||||
$a->strings["Profile deleted."] = "Perfil esborrat.";
|
||||
$a->strings["Profile-"] = "Perfil-";
|
||||
$a->strings["New profile created."] = "Nou perfil creat.";
|
||||
$a->strings["Profile unavailable to clone."] = "No es pot clonar el perfil.";
|
||||
$a->strings["Profile Name is required."] = "Nom de perfil requerit.";
|
||||
$a->strings["Marital Status"] = "Estatus Marital";
|
||||
$a->strings["Romantic Partner"] = "Soci Romàntic";
|
||||
|
|
@ -939,12 +998,9 @@ $a->strings["public profile"] = "perfil públic";
|
|||
$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s s'ha canviat de %2\$s a “%3\$s”";
|
||||
$a->strings[" - Visit %1\$s's %2\$s"] = " - Visita %1\$s de %2\$s";
|
||||
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s te una actualització %2\$s, canviant %3\$s.";
|
||||
$a->strings["Profile deleted."] = "Perfil esborrat.";
|
||||
$a->strings["Profile-"] = "Perfil-";
|
||||
$a->strings["New profile created."] = "Nou perfil creat.";
|
||||
$a->strings["Profile unavailable to clone."] = "No es pot clonar el perfil.";
|
||||
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Amaga la llista de contactes/amics en la vista d'aquest perfil?";
|
||||
$a->strings["Edit Profile Details"] = "Editor de Detalls del Perfil";
|
||||
$a->strings["Change Profile Photo"] = "";
|
||||
$a->strings["View this profile"] = "Veure aquest perfil";
|
||||
$a->strings["Create a new profile using these settings"] = "Crear un nou perfil amb aquests ajustos";
|
||||
$a->strings["Clone this profile"] = "Clonar aquest perfil";
|
||||
|
|
@ -1007,6 +1063,7 @@ $a->strings["No entries."] = "Sense entrades";
|
|||
$a->strings["Source (bbcode) text:"] = "Text Codi (bbcode): ";
|
||||
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Font (Diaspora) Convertir text a BBcode";
|
||||
$a->strings["Source input: "] = "Entrada de Codi:";
|
||||
$a->strings["bb2html (raw HTML): "] = "";
|
||||
$a->strings["bb2html: "] = "bb2html: ";
|
||||
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
|
||||
$a->strings["bb2md: "] = "bb2md: ";
|
||||
|
|
@ -1015,6 +1072,7 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
|
|||
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
|
||||
$a->strings["Source input (Diaspora format): "] = "Font d'entrada (format de Diaspora)";
|
||||
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
|
||||
$a->strings["Do you really want to delete this suggestion?"] = "";
|
||||
$a->strings["Friend Suggestions"] = "Amics Suggerits";
|
||||
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores.";
|
||||
$a->strings["Ignore/Hide"] = "Ignorar/Amagar";
|
||||
|
|
@ -1027,8 +1085,10 @@ $a->strings["Status:"] = "Estatus:";
|
|||
$a->strings["Homepage:"] = "Pàgina web:";
|
||||
$a->strings["About:"] = "Acerca de:";
|
||||
$a->strings["No entries (some entries may be hidden)."] = "No hi ha entrades (algunes de les entrades poden estar amagades).";
|
||||
$a->strings["Total invitation limit exceeded."] = "";
|
||||
$a->strings["%s : Not a valid email address."] = "%s : No es una adreça de correu vàlida";
|
||||
$a->strings["Please join us on Friendica"] = "Per favor, uneixi's a nosaltres en Friendica";
|
||||
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
|
||||
$a->strings["%s : Message delivery failed."] = "%s : Ha fallat l'entrega del missatge.";
|
||||
$a->strings["%d message sent."] = array(
|
||||
0 => "%d missatge enviat",
|
||||
|
|
@ -1087,6 +1147,7 @@ $a->strings["Do not import your Facebook profile wall conversations"] = "No impo
|
|||
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Si opta per vincular les converses i deixar ambdues caselles sense marcar, el mur del seu perfil de Facebook es fusionarà amb el mur del seu perfil en aquest lloc web i la seva configuració de privacitat en aquest website serà utilitzada per determinar qui pot veure les converses.";
|
||||
$a->strings["Comma separated applications to ignore"] = "Separats per comes les aplicacions a ignorar";
|
||||
$a->strings["Problems with Facebook Real-Time Updates"] = "Problemes amb Actualitzacions en Temps Real a Facebook";
|
||||
$a->strings["Administrator"] = "Administrador";
|
||||
$a->strings["Facebook Connector Settings"] = "Ajustos del Connector de Facebook";
|
||||
$a->strings["Facebook API Key"] = "Facebook API Key";
|
||||
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Error: Apareix que has especificat el App-ID i el Secret en el arxiu .htconfig.php. Per estar especificat allà, no pot ser canviat utilitzant aquest formulari.<br><br>";
|
||||
|
|
@ -1113,9 +1174,6 @@ $a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Face
|
|||
$a->strings["StatusNet AutoFollow settings updated."] = "Ajustos de AutoSeguiment a StatusNet actualitzats.";
|
||||
$a->strings["StatusNet AutoFollow Settings"] = "Ajustos de AutoSeguiment a StatusNet";
|
||||
$a->strings["Automatically follow any StatusNet followers/mentioners"] = "Segueix Automaticament qualsevol seguidor/mencionador de StatusNet";
|
||||
$a->strings["Bg settings updated."] = "Ajustos de Bg actualitzats.";
|
||||
$a->strings["Bg Settings"] = "Ajustos de Bg";
|
||||
$a->strings["How many contacts to display on profile sidebar"] = "Quants contactes per mostrar a la barra lateral el perfil";
|
||||
$a->strings["Lifetime of the cache (in hours)"] = "Temps de vida de la caché (en hores)";
|
||||
$a->strings["Cache Statistics"] = "Estadístiques de la caché";
|
||||
$a->strings["Number of items"] = "Nombre d'elements";
|
||||
|
|
@ -1125,7 +1183,11 @@ $a->strings["Facebook Post disabled"] = "";
|
|||
$a->strings["Facebook Post"] = "";
|
||||
$a->strings["Install Facebook Post connector for this account."] = "";
|
||||
$a->strings["Remove Facebook Post connector"] = "";
|
||||
$a->strings["Suppress \"View on friendica\""] = "";
|
||||
$a->strings["Mirror wall posts from facebook to friendica."] = "";
|
||||
$a->strings["Post to page/group:"] = "";
|
||||
$a->strings["Facebook Post Settings"] = "";
|
||||
$a->strings["%s:"] = "";
|
||||
$a->strings["%d person likes this"] = array(
|
||||
0 => "%d persona li agrada això",
|
||||
1 => "%d persones els agrada això",
|
||||
|
|
@ -1139,40 +1201,40 @@ $a->strings["Generate new key"] = "Generar nova clau";
|
|||
$a->strings["Widgets key"] = "Ginys clau";
|
||||
$a->strings["Widgets available"] = "Ginys disponibles";
|
||||
$a->strings["Connect on Friendica!"] = "Connectar en Friendica";
|
||||
$a->strings["bitchslap"] = "";
|
||||
$a->strings["bitchslapped"] = "";
|
||||
$a->strings["shag"] = "";
|
||||
$a->strings["shagged"] = "";
|
||||
$a->strings["bitchslap"] = "bufetada";
|
||||
$a->strings["bitchslapped"] = "bufetejat";
|
||||
$a->strings["shag"] = "fotut";
|
||||
$a->strings["shagged"] = "fotre";
|
||||
$a->strings["do something obscenely biological to"] = "";
|
||||
$a->strings["did something obscenely biological to"] = "";
|
||||
$a->strings["point out the poke feature to"] = "";
|
||||
$a->strings["pointed out the poke feature to"] = "";
|
||||
$a->strings["declare undying love for"] = "";
|
||||
$a->strings["declared undying love for"] = "";
|
||||
$a->strings["patent"] = "";
|
||||
$a->strings["patented"] = "";
|
||||
$a->strings["declare undying love for"] = "declara amor inmortal a";
|
||||
$a->strings["declared undying love for"] = "declarat amor inmortal a";
|
||||
$a->strings["patent"] = "patent";
|
||||
$a->strings["patented"] = "patentat";
|
||||
$a->strings["stroke beard"] = "";
|
||||
$a->strings["stroked their beard at"] = "";
|
||||
$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "";
|
||||
$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "";
|
||||
$a->strings["hug"] = "";
|
||||
$a->strings["hugged"] = "";
|
||||
$a->strings["kiss"] = "";
|
||||
$a->strings["kissed"] = "";
|
||||
$a->strings["raise eyebrows at"] = "";
|
||||
$a->strings["raised their eyebrows at"] = "";
|
||||
$a->strings["insult"] = "";
|
||||
$a->strings["insulted"] = "";
|
||||
$a->strings["kiss"] = "petó";
|
||||
$a->strings["kissed"] = "besat";
|
||||
$a->strings["raise eyebrows at"] = "sorprès";
|
||||
$a->strings["raised their eyebrows at"] = "es van sorprendre";
|
||||
$a->strings["insult"] = "insult";
|
||||
$a->strings["insulted"] = "insultat";
|
||||
$a->strings["praise"] = "";
|
||||
$a->strings["praised"] = "";
|
||||
$a->strings["be dubious of"] = "";
|
||||
$a->strings["was dubious of"] = "";
|
||||
$a->strings["eat"] = "";
|
||||
$a->strings["ate"] = "";
|
||||
$a->strings["eat"] = "menja";
|
||||
$a->strings["ate"] = "menjà";
|
||||
$a->strings["giggle and fawn at"] = "";
|
||||
$a->strings["giggled and fawned at"] = "";
|
||||
$a->strings["doubt"] = "";
|
||||
$a->strings["doubted"] = "";
|
||||
$a->strings["doubt"] = "dubte";
|
||||
$a->strings["doubted"] = "dubitat";
|
||||
$a->strings["glare"] = "";
|
||||
$a->strings["glared at"] = "";
|
||||
$a->strings["YourLS Settings"] = "La Teva Configuració de LS";
|
||||
|
|
@ -1203,6 +1265,7 @@ $a->strings["Randomise Page/Forum list"] = "Aleatoritza la llista de Pàgina/Fò
|
|||
$a->strings["Show pages/forums on profile page"] = "Mostra pàgines/fòrums a la pàgina de perfil";
|
||||
$a->strings["Planets Settings"] = "Ajustos de Planet";
|
||||
$a->strings["Enable Planets Plugin"] = "Activa Plugin de Planet";
|
||||
$a->strings["Forum Directory"] = "";
|
||||
$a->strings["Login"] = "Identifica't";
|
||||
$a->strings["OpenID"] = "OpenID";
|
||||
$a->strings["Latest users"] = "Últims usuaris";
|
||||
|
|
@ -1213,25 +1276,25 @@ $a->strings["event"] = "esdeveniment";
|
|||
$a->strings["No access"] = "Inaccessible";
|
||||
$a->strings["Could not open component for editing"] = "";
|
||||
$a->strings["Go back to the calendar"] = "Tornar al calendari";
|
||||
$a->strings["Event data"] = "";
|
||||
$a->strings["Event data"] = "data d'esdeveniment";
|
||||
$a->strings["Calendar"] = "Calendari";
|
||||
$a->strings["Special color"] = "";
|
||||
$a->strings["Subject"] = "";
|
||||
$a->strings["Special color"] = "Color especial";
|
||||
$a->strings["Subject"] = "Subjecte";
|
||||
$a->strings["Starts"] = "Inicia";
|
||||
$a->strings["Ends"] = "Finalitza";
|
||||
$a->strings["Description"] = "Descripció";
|
||||
$a->strings["Recurrence"] = "";
|
||||
$a->strings["Frequency"] = "";
|
||||
$a->strings["Recurrence"] = "Reaparició";
|
||||
$a->strings["Frequency"] = "Freqüència";
|
||||
$a->strings["Daily"] = "Diari";
|
||||
$a->strings["Weekly"] = "Setmanal";
|
||||
$a->strings["Monthly"] = "Mensual";
|
||||
$a->strings["Yearly"] = "";
|
||||
$a->strings["Yearly"] = "Anyal";
|
||||
$a->strings["days"] = "dies";
|
||||
$a->strings["weeks"] = "setmanes";
|
||||
$a->strings["months"] = "mesos";
|
||||
$a->strings["years"] = "anys";
|
||||
$a->strings["Interval"] = "";
|
||||
$a->strings["All %select% %time%"] = "";
|
||||
$a->strings["Interval"] = "Interval";
|
||||
$a->strings["All %select% %time%"] = "Tot %select% %time%";
|
||||
$a->strings["Days"] = "Dies";
|
||||
$a->strings["Sunday"] = "Diumenge";
|
||||
$a->strings["Monday"] = "Dilluns";
|
||||
|
|
@ -1240,53 +1303,53 @@ $a->strings["Wednesday"] = "Dimecres";
|
|||
$a->strings["Thursday"] = "Dijous";
|
||||
$a->strings["Friday"] = "Divendres";
|
||||
$a->strings["Saturday"] = "Dissabte";
|
||||
$a->strings["First day of week:"] = "";
|
||||
$a->strings["Day of month"] = "";
|
||||
$a->strings["#num#th of each month"] = "";
|
||||
$a->strings["#num#th-last of each month"] = "";
|
||||
$a->strings["#num#th #wkday# of each month"] = "";
|
||||
$a->strings["#num#th-last #wkday# of each month"] = "";
|
||||
$a->strings["First day of week:"] = "Primer dia de la setmana:";
|
||||
$a->strings["Day of month"] = "Dia del mes";
|
||||
$a->strings["#num#th of each month"] = "#num# de cada mes";
|
||||
$a->strings["#num#th-last of each month"] = "#num# ultim de cada mes";
|
||||
$a->strings["#num#th #wkday# of each month"] = "#num# #wkday# de cada mes";
|
||||
$a->strings["#num#th-last #wkday# of each month"] = "#num# ultim #wkday# de cada mes";
|
||||
$a->strings["Month"] = "Mes";
|
||||
$a->strings["#num#th of the given month"] = "";
|
||||
$a->strings["#num#th-last of the given month"] = "";
|
||||
$a->strings["#num#th #wkday# of the given month"] = "";
|
||||
$a->strings["#num#th-last #wkday# of the given month"] = "";
|
||||
$a->strings["Repeat until"] = "";
|
||||
$a->strings["Infinite"] = "";
|
||||
$a->strings["Until the following date"] = "";
|
||||
$a->strings["Number of times"] = "";
|
||||
$a->strings["Exceptions"] = "";
|
||||
$a->strings["none"] = "";
|
||||
$a->strings["#num#th of the given month"] = "#num# del mes corrent";
|
||||
$a->strings["#num#th-last of the given month"] = "#num# ultim del mes corrent";
|
||||
$a->strings["#num#th #wkday# of the given month"] = "#num# #wkday# del mes corrent";
|
||||
$a->strings["#num#th-last #wkday# of the given month"] = "#num# ultim #wkday# del mes corrent";
|
||||
$a->strings["Repeat until"] = "repetir fins";
|
||||
$a->strings["Infinite"] = "Infinit";
|
||||
$a->strings["Until the following date"] = "Fins la data següent";
|
||||
$a->strings["Number of times"] = "Nombre de vegades";
|
||||
$a->strings["Exceptions"] = "Excepcions";
|
||||
$a->strings["none"] = "res";
|
||||
$a->strings["Notification"] = "Notificació";
|
||||
$a->strings["Notify by"] = "";
|
||||
$a->strings["E-Mail"] = "";
|
||||
$a->strings["On Friendica / Display"] = "";
|
||||
$a->strings["Time"] = "";
|
||||
$a->strings["Notify by"] = "Notificat per";
|
||||
$a->strings["E-Mail"] = "E-Mail";
|
||||
$a->strings["On Friendica / Display"] = "A Friendica / Display";
|
||||
$a->strings["Time"] = "Hora";
|
||||
$a->strings["Hours"] = "Hores";
|
||||
$a->strings["Minutes"] = "Minuts";
|
||||
$a->strings["Seconds"] = "";
|
||||
$a->strings["Weeks"] = "";
|
||||
$a->strings["before the"] = "";
|
||||
$a->strings["start of the event"] = "";
|
||||
$a->strings["end of the event"] = "";
|
||||
$a->strings["Add a notification"] = "";
|
||||
$a->strings["The event #name# will start at #date"] = "";
|
||||
$a->strings["#name# is about to begin."] = "";
|
||||
$a->strings["Saved"] = "";
|
||||
$a->strings["Seconds"] = "Segons";
|
||||
$a->strings["Weeks"] = "Setmanes";
|
||||
$a->strings["before the"] = "bans de";
|
||||
$a->strings["start of the event"] = "inici del esdeveniment";
|
||||
$a->strings["end of the event"] = "fi del esdeveniment";
|
||||
$a->strings["Add a notification"] = "Afegir una notificació";
|
||||
$a->strings["The event #name# will start at #date"] = "El esdeveniment #name# començara el #date";
|
||||
$a->strings["#name# is about to begin."] = "#name# esta a punt de començar.";
|
||||
$a->strings["Saved"] = "Guardat";
|
||||
$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "Data en format U.S. (mm/dd/YYY)";
|
||||
$a->strings["German Time Format (dd.mm.YYYY)"] = "Data en format Alemany (dd.mm.YYYY)";
|
||||
$a->strings["Private Events"] = "";
|
||||
$a->strings["Private Addressbooks"] = "";
|
||||
$a->strings["Friendica-Native events"] = "";
|
||||
$a->strings["Private Events"] = "Esdeveniment Privat";
|
||||
$a->strings["Private Addressbooks"] = "Contacte Privat";
|
||||
$a->strings["Friendica-Native events"] = "esdeveniments Nadius a Friendica";
|
||||
$a->strings["Friendica-Contacts"] = "Friendica-Contactes";
|
||||
$a->strings["Your Friendica-Contacts"] = "Els teus Contactes a Friendica";
|
||||
$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "";
|
||||
$a->strings["Something went wrong when trying to import the file. Sorry."] = "";
|
||||
$a->strings["The ICS-File has been imported."] = "";
|
||||
$a->strings["No file was uploaded."] = "";
|
||||
$a->strings["Import a ICS-file"] = "";
|
||||
$a->strings["ICS-File"] = "";
|
||||
$a->strings["Overwrite all #num# existing events"] = "";
|
||||
$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "Quelcom va anar malament quan intentava importar l'arxiu. Disculpes. Por ser alguns esdeveniments es varen importar d'alguna manera.";
|
||||
$a->strings["Something went wrong when trying to import the file. Sorry."] = "Quelcom va anar malament quan intentava importar l'arxiu. Disculpes.";
|
||||
$a->strings["The ICS-File has been imported."] = "L'arxiu ICS ha estat importat";
|
||||
$a->strings["No file was uploaded."] = "Cap arxiu es va carregar.";
|
||||
$a->strings["Import a ICS-file"] = "importar un arxiu ICS";
|
||||
$a->strings["ICS-File"] = "Arxiu ICS";
|
||||
$a->strings["Overwrite all #num# existing events"] = "Sobrescriu tots #num# esdeveniments existents";
|
||||
$a->strings["New event"] = "Nou esdeveniment";
|
||||
$a->strings["Today"] = "Avui";
|
||||
$a->strings["Day"] = "Dia";
|
||||
|
|
@ -1294,14 +1357,14 @@ $a->strings["Week"] = "Setmana";
|
|||
$a->strings["Reload"] = "Recarregar";
|
||||
$a->strings["Date"] = "Data";
|
||||
$a->strings["Error"] = "Error";
|
||||
$a->strings["The calendar has been updated."] = "";
|
||||
$a->strings["The new calendar has been created."] = "";
|
||||
$a->strings["The calendar has been deleted."] = "";
|
||||
$a->strings["The calendar has been updated."] = "El calendari ha estat actualitzat.";
|
||||
$a->strings["The new calendar has been created."] = "El nou calendari ha estat creat.";
|
||||
$a->strings["The calendar has been deleted."] = "el calendari ha estat esborrat.";
|
||||
$a->strings["Calendar Settings"] = "Ajustos de Calendari";
|
||||
$a->strings["Date format"] = "Format de la data";
|
||||
$a->strings["Time zone"] = "Zona horària";
|
||||
$a->strings["Calendars"] = "";
|
||||
$a->strings["Create a new calendar"] = "";
|
||||
$a->strings["Calendars"] = "Calendaris";
|
||||
$a->strings["Create a new calendar"] = "Creat un nou calendari";
|
||||
$a->strings["Limitations"] = "Limitacions";
|
||||
$a->strings["Warning"] = "Avís";
|
||||
$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Syncronització (iPhone, Thunderbird Lightning, Android, ...)";
|
||||
|
|
@ -1331,8 +1394,8 @@ $a->strings["Show SQL-statements"] = "Mostrar instruccions de SQL ";
|
|||
$a->strings["Private Calendar"] = "Calendari Privat";
|
||||
$a->strings["Friendica Events: Mine"] = "Esdeveniments Friendica: Meus";
|
||||
$a->strings["Friendica Events: Contacts"] = "Esdeveniments Friendica: Contactes";
|
||||
$a->strings["Private Addresses"] = "";
|
||||
$a->strings["Friendica Contacts"] = "";
|
||||
$a->strings["Private Addresses"] = "Adreces Privades";
|
||||
$a->strings["Friendica Contacts"] = "Contactes a Friendica";
|
||||
$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "Permetre l'ús del seu ID de friendica (%s) per Connectar a l'emmagatzematge extern (com ownCloud). Veure <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\"> WebFinger RemoteStorage </a>";
|
||||
$a->strings["Template URL (with {category})"] = "Plantilles de URL (amb {categoria})";
|
||||
$a->strings["OAuth end-point"] = "OAuth end-point";
|
||||
|
|
@ -1358,16 +1421,15 @@ $a->strings["Enable dreamwidth Post Plugin"] = "Habilitat el plugin d'enviaments
|
|||
$a->strings["dreamwidth username"] = "Nom d'usuari a Dreamwidth";
|
||||
$a->strings["dreamwidth password"] = "Contrasenya a Dreamwidth";
|
||||
$a->strings["Post to dreamwidth by default"] = "Enviar per defecte a Dreamwidth";
|
||||
$a->strings["Post to Drupal"] = "Missatge a Drupal";
|
||||
$a->strings["Drupal Post Settings"] = "Configuració d'enviaments a Drupal";
|
||||
$a->strings["Enable Drupal Post Plugin"] = "Habilitar el Plugin d'Enviaments de Drupal";
|
||||
$a->strings["Drupal username"] = "Nom d'usuari de Drupal";
|
||||
$a->strings["Drupal password"] = "Contrasenya de Drupal";
|
||||
$a->strings["Post Type - article,page,or blog"] = "Tipus d'Enviament- article,pàgina, o blog";
|
||||
$a->strings["Drupal site URL"] = "URL del lloc Drupal";
|
||||
$a->strings["Drupal site uses clean URLS"] = "el Lloc Drupal empra URLS netes";
|
||||
$a->strings["Post to Drupal by default"] = "Enviar a Drupal per defecte";
|
||||
$a->strings["Post from Friendica"] = "Enviament des de Friendica";
|
||||
$a->strings["Remote Permissions Settings"] = "";
|
||||
$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "";
|
||||
$a->strings["Remote Permissions settings updated."] = "";
|
||||
$a->strings["Visible to"] = "";
|
||||
$a->strings["may only be a partial list"] = "";
|
||||
$a->strings["Global"] = "";
|
||||
$a->strings["The posts of every user on this server show the post recipients"] = "";
|
||||
$a->strings["Individual"] = "";
|
||||
$a->strings["Each user chooses whether his/her posts show the post recipients"] = "";
|
||||
$a->strings["Startpage Settings"] = "Ajustos de la pàgina d'inici";
|
||||
$a->strings["Home page to load after login - leave blank for profile wall"] = "Pàgina personal a carregar després d'accedir - deixar buit pel perfil del mur";
|
||||
$a->strings["Examples: "network" or "notifications/system""] = "Exemples: \"xarxa\" o \"notificacions/sistema\"";
|
||||
|
|
@ -1384,15 +1446,13 @@ $a->strings["No files were uploaded."] = "No hi ha arxius carregats.";
|
|||
$a->strings["Uploaded file is empty"] = "L'arxiu carregat està buit";
|
||||
$a->strings["File has an invalid extension, it should be one of "] = "Arxiu té una extensió no vàlida, ha de ser una de";
|
||||
$a->strings["Upload was cancelled, or server error encountered"] = "La pujada va ser cancel.lada, o es va trobar un error de servidor";
|
||||
$a->strings["OEmbed settings updated"] = "Actualitzar la configuració OEmbed";
|
||||
$a->strings["Use OEmbed for YouTube videos"] = "Empreu OEmbed per videos YouTube";
|
||||
$a->strings["URL to embed:"] = "Adreça URL del recurs";
|
||||
$a->strings["show/hide"] = "mostra/amaga";
|
||||
$a->strings["No forum subscriptions"] = "";
|
||||
$a->strings["Forumlist settings updated."] = "";
|
||||
$a->strings["Forumlist Settings"] = "";
|
||||
$a->strings["Randomise Forumlist/Forum list"] = "";
|
||||
$a->strings["Show forumlists/forums on profile forumlist"] = "";
|
||||
$a->strings["No forum subscriptions"] = "No hi ha subscripcions al fòrum";
|
||||
$a->strings["Forumlist settings updated."] = "Ajustos de Forumlist actualitzats.";
|
||||
$a->strings["Forumlist Settings"] = "Ajustos de Forumlist";
|
||||
$a->strings["Randomise forum list"] = "";
|
||||
$a->strings["Show forums on profile page"] = "";
|
||||
$a->strings["Show forums on network page"] = "";
|
||||
$a->strings["Impressum"] = "Impressum";
|
||||
$a->strings["Site Owner"] = "Propietari del lloc";
|
||||
$a->strings["Email Address"] = "Adreça de correu";
|
||||
|
|
@ -1429,7 +1489,7 @@ $a->strings["Tile Server URL"] = "URL del servidor, del mosaico de servidores";
|
|||
$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "Una llista de <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\"> un mosaic de servidors públics</a>";
|
||||
$a->strings["Default zoom"] = "Zoom per defecte";
|
||||
$a->strings["The default zoom level. (1:world, 18:highest)"] = "Nivell de zoom per defecte. (1: el món, 18: el més alt)";
|
||||
$a->strings["Editplain settings updated."] = "Actualitzar la configuració de Editplain.";
|
||||
$a->strings["Group Text settings updated."] = "";
|
||||
$a->strings["Group Text"] = "";
|
||||
$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
|
||||
$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "No puc instal·lar Libravatar , <br>requereix PHP>=5.3";
|
||||
|
|
@ -1441,9 +1501,9 @@ $a->strings["retro arcade style face"] = "Cara d'estil arcade retro";
|
|||
$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "La teva versió de PHP %s es inferior a la requerida, PHP>=5.3";
|
||||
$a->strings["This addon is not functional on your server."] = "Aquest addon no es funcional al teu servidor.";
|
||||
$a->strings["Information"] = "informació";
|
||||
$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
|
||||
$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "el addon Gravatar està instal·lat. Si us plau, desactiva el addon Gravatar.<br> El addon Libravatar tornarà a Gravatar si no es trova res a Libravatar.";
|
||||
$a->strings["Default avatar image"] = "Imatge d'avatar per defecte";
|
||||
$a->strings["Select default avatar image if none was found. See README"] = "";
|
||||
$a->strings["Select default avatar image if none was found. See README"] = "seleccionada la imatge d'avatar per defecte si no es trova cap altre. Veure README";
|
||||
$a->strings["Libravatar settings updated."] = "Ajustos de Libravatar actualitzats.";
|
||||
$a->strings["Post to libertree"] = "Enviament a libertree";
|
||||
$a->strings["libertree Post Settings"] = "Ajustos d'enviaments a libertree";
|
||||
|
|
@ -1453,11 +1513,14 @@ $a->strings["Libertree site URL"] = "lloc URL libertree";
|
|||
$a->strings["Post to Libertree by default"] = "Enviar a libertree per defecte";
|
||||
$a->strings["Altpager settings updated."] = "Ajustos de Altpagerr actualitzats.";
|
||||
$a->strings["Alternate Pagination Setting"] = "Alternate Pagination Setting";
|
||||
$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "";
|
||||
$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "Emprar enllaç a \"més nova\" i \"més antiga\" pàgina, en lloc de números de pàgina? ";
|
||||
$a->strings["Force global use of the alternate pager"] = "";
|
||||
$a->strings["Each user chooses whether to use the alternate pager"] = "";
|
||||
$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "El complement MathJax processa les fórmules matemàtiques escrites utilitzant la sintaxi de LaTeX, envoltades per l'habitual $$ o un bloc de \"eqnarray\" en les publicacions del seu mur, a la fitxa de la xarxa i correu privat.";
|
||||
$a->strings["Use the MathJax renderer"] = "Utilitzar el processador Mathjax";
|
||||
$a->strings["MathJax Base URL"] = "URL Base de Mathjax";
|
||||
$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "La URL del fitxer javascript que ha de ser inclòs per a usar Mathjax. Pot ser utilitzat per Mathjax CDN o un altre instal·lació de Mathjax.";
|
||||
$a->strings["Editplain settings updated."] = "Actualitzar la configuració de Editplain.";
|
||||
$a->strings["Editplain Settings"] = "Configuració de Editplain";
|
||||
$a->strings["Disable richtext status editor"] = "Deshabilitar l'editor d'estatus de texte enriquit";
|
||||
$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
|
||||
|
|
@ -1512,18 +1575,24 @@ $a->strings["If enabled all your <strong>public</strong> postings can be posted
|
|||
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Nota</strong>: A causa de les seves opcions de privacitat (<em>Amaga els detalls del teu perfil dels espectadors desconeguts? </em>) el vincle potencialment inclòs en anuncis públics transmesos a StatusNet conduirà el visitant a una pàgina en blanc en la que informarà al visitants que l'accés al seu perfil s'ha restringit.";
|
||||
$a->strings["Allow posting to StatusNet"] = "Permetre enviaments a StatusNet";
|
||||
$a->strings["Send public postings to StatusNet by default"] = "Enviar missatges públics a StatusNet per defecte";
|
||||
$a->strings["Mirror all posts from statusnet that are no replies or repeated messages"] = "";
|
||||
$a->strings["Shortening method that optimizes the post"] = "";
|
||||
$a->strings["Send linked #-tags and @-names to StatusNet"] = "Enviar enllaços #-etiquetes i @-noms a StatusNet";
|
||||
$a->strings["Clear OAuth configuration"] = "Esborrar configuració de OAuth";
|
||||
$a->strings["API URL"] = "API URL";
|
||||
$a->strings["Infinite Improbability Drive"] = "Infinite Improbability Drive";
|
||||
$a->strings["You are now authenticated to tumblr."] = "";
|
||||
$a->strings["return to the connector page"] = "";
|
||||
$a->strings["Post to Tumblr"] = "Publica-ho al Tumblr";
|
||||
$a->strings["Tumblr Post Settings"] = "Configuració d'Enviaments de Tumblr";
|
||||
$a->strings["(Re-)Authenticate your tumblr page"] = "";
|
||||
$a->strings["Enable Tumblr Post Plugin"] = "Habilita el plugin de enviaments de Tumblr";
|
||||
$a->strings["Tumblr login"] = "Inici de sessió de Tumblr";
|
||||
$a->strings["Tumblr password"] = "Caontrasenya de Tumblr";
|
||||
$a->strings["Post to Tumblr by default"] = "Enviar a Tumblr per defecte";
|
||||
$a->strings["Post to page:"] = "";
|
||||
$a->strings["You are not authenticated to tumblr"] = "";
|
||||
$a->strings["Numfriends settings updated."] = "Actualitzar la configuració de Numfriends.";
|
||||
$a->strings["Numfriends Settings"] = "Configuració de Numfriends";
|
||||
$a->strings["How many contacts to display on profile sidebar"] = "Quants contactes per mostrar a la barra lateral el perfil";
|
||||
$a->strings["Gnot settings updated."] = "Configuració de Gnot actualitzada";
|
||||
$a->strings["Gnot Settings"] = "Configuració de Gnot";
|
||||
$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Permet crear fils de les notificacions de comentaris de correu electrònic a Gmail i anonimat de la línia d'assumpte.";
|
||||
|
|
@ -1537,6 +1606,7 @@ $a->strings["WordPress password"] = "Contrasenya de WordPress";
|
|||
$a->strings["WordPress API URL"] = "WordPress API URL";
|
||||
$a->strings["Post to WordPress by default"] = "Enviar a WordPress per defecte";
|
||||
$a->strings["Provide a backlink to the Friendica post"] = "Proveeix un retroenllaç al missatge de Friendica";
|
||||
$a->strings["Post from Friendica"] = "Enviament des de Friendica";
|
||||
$a->strings["Read the original post and comment stream on Friendica"] = "Llegeix el missatge original i el flux de comentaris en Friendica";
|
||||
$a->strings["\"Show more\" Settings"] = "Configuració de \"Mostrar més\"";
|
||||
$a->strings["Enable Show More"] = "Habilita Mostrar Més";
|
||||
|
|
@ -1560,9 +1630,13 @@ $a->strings["If enabled all your <strong>public</strong> postings can be posted
|
|||
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) 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."] = "<strong>Nota</strong>: donada la seva configuració de privacitat (<em> Amaga els detalls del teu perfil dels espectadors desconeguts? </em>) el vincle potencialment inclòs en anuncis públics retransmesos a Twitter conduirà al visitant a una pàgina en blanc informar als visitants que l'accés al seu perfil s'ha restringit.";
|
||||
$a->strings["Allow posting to Twitter"] = "Permetre anunci a Twitter";
|
||||
$a->strings["Send public postings to Twitter by default"] = "Enviar anuncis públics a Twitter per defecte";
|
||||
$a->strings["Mirror all posts from twitter that are no replies or retweets"] = "";
|
||||
$a->strings["Shortening method that optimizes the tweet"] = "";
|
||||
$a->strings["Send linked #-tags and @-names to Twitter"] = "Enviar enllaços #-etiquetes i @-noms a Twitter";
|
||||
$a->strings["Consumer key"] = "Consumer key";
|
||||
$a->strings["Consumer secret"] = "Consumer secret";
|
||||
$a->strings["Name of the Twitter Application"] = "";
|
||||
$a->strings["set this to avoid mirroring postings from ~friendica back to ~friendica"] = "";
|
||||
$a->strings["IRC Settings"] = "Ajustos de IRC";
|
||||
$a->strings["Channel(s) to auto connect (comma separated)"] = "Canal(s) per auto connectar (separats per comes)";
|
||||
$a->strings["Popular Channels (comma separated)"] = "Canals Populars (separats per comes)";
|
||||
|
|
@ -1628,6 +1702,8 @@ $a->strings["Last tweets"] = "Últims tweets";
|
|||
$a->strings["Alignment"] = "Adaptació";
|
||||
$a->strings["Left"] = "Esquerra";
|
||||
$a->strings["Center"] = "Centre";
|
||||
$a->strings["Posts font size"] = "";
|
||||
$a->strings["Textareas font size"] = "";
|
||||
$a->strings["Set colour scheme"] = "Establir l'esquema de color";
|
||||
$a->strings["j F, Y"] = "j F, Y";
|
||||
$a->strings["j F"] = "j F";
|
||||
|
|
@ -1660,6 +1736,7 @@ $a->strings["Zot!"] = "Zot!";
|
|||
$a->strings["LinkedIn"] = "LinkedIn";
|
||||
$a->strings["XMPP/IM"] = "XMPP/IM";
|
||||
$a->strings["MySpace"] = "MySpace";
|
||||
$a->strings["Google+"] = "";
|
||||
$a->strings["Male"] = "Home";
|
||||
$a->strings["Female"] = "Dona";
|
||||
$a->strings["Currently Male"] = "Actualment Home";
|
||||
|
|
@ -1733,8 +1810,8 @@ $a->strings["%d Contact"] = array(
|
|||
0 => "%d Contacte",
|
||||
1 => "%d Contactes",
|
||||
);
|
||||
$a->strings["poke"] = "";
|
||||
$a->strings["poked"] = "";
|
||||
$a->strings["poke"] = "atia";
|
||||
$a->strings["poked"] = "atiar";
|
||||
$a->strings["ping"] = "";
|
||||
$a->strings["pinged"] = "";
|
||||
$a->strings["prod"] = "";
|
||||
|
|
@ -1745,26 +1822,26 @@ $a->strings["finger"] = "dit";
|
|||
$a->strings["fingered"] = "";
|
||||
$a->strings["rebuff"] = "";
|
||||
$a->strings["rebuffed"] = "";
|
||||
$a->strings["happy"] = "";
|
||||
$a->strings["happy"] = "feliç";
|
||||
$a->strings["sad"] = "";
|
||||
$a->strings["mellow"] = "";
|
||||
$a->strings["tired"] = "";
|
||||
$a->strings["perky"] = "";
|
||||
$a->strings["angry"] = "";
|
||||
$a->strings["angry"] = "disgustat";
|
||||
$a->strings["stupified"] = "";
|
||||
$a->strings["puzzled"] = "";
|
||||
$a->strings["interested"] = "";
|
||||
$a->strings["bitter"] = "";
|
||||
$a->strings["bitter"] = "amarg";
|
||||
$a->strings["cheerful"] = "";
|
||||
$a->strings["alive"] = "";
|
||||
$a->strings["annoyed"] = "";
|
||||
$a->strings["anxious"] = "";
|
||||
$a->strings["alive"] = "viu";
|
||||
$a->strings["annoyed"] = "molest";
|
||||
$a->strings["anxious"] = "ansiós";
|
||||
$a->strings["cranky"] = "";
|
||||
$a->strings["disturbed"] = "";
|
||||
$a->strings["frustrated"] = "";
|
||||
$a->strings["motivated"] = "";
|
||||
$a->strings["relaxed"] = "";
|
||||
$a->strings["surprised"] = "";
|
||||
$a->strings["frustrated"] = "frustrat";
|
||||
$a->strings["motivated"] = "motivat";
|
||||
$a->strings["relaxed"] = "tranquil";
|
||||
$a->strings["surprised"] = "sorprès";
|
||||
$a->strings["January"] = "Gener";
|
||||
$a->strings["February"] = "Febrer";
|
||||
$a->strings["March"] = "Març";
|
||||
|
|
@ -1789,6 +1866,18 @@ $a->strings["Attachments:"] = "Adjunts:";
|
|||
$a->strings["view full size"] = "Veure a mida completa";
|
||||
$a->strings["Embedded content"] = "Contingut incrustat";
|
||||
$a->strings["Embedding disabled"] = "Incrustacions deshabilitades";
|
||||
$a->strings["Error decoding account file"] = "";
|
||||
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
|
||||
$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "";
|
||||
$a->strings["Error! Cannot check nickname"] = "";
|
||||
$a->strings["User '%s' already exists on this server!"] = "";
|
||||
$a->strings["User creation error"] = "";
|
||||
$a->strings["User profile creation error"] = "";
|
||||
$a->strings["%d contact not imported"] = array(
|
||||
0 => "",
|
||||
1 => "",
|
||||
);
|
||||
$a->strings["Done. You can now login with your username and password"] = "";
|
||||
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grup eliminat amb aquest nom va ser restablert. Els permisos dels elements existents <strong>poden</strong> aplicar-se a aquest grup i tots els futurs membres. Si això no és el que pretén, si us plau, crei un altre grup amb un nom diferent.";
|
||||
$a->strings["Default privacy group for new contacts"] = "Privacitat per defecte per a nous contactes";
|
||||
$a->strings["Everybody"] = "Tothom";
|
||||
|
|
@ -1810,6 +1899,8 @@ $a->strings["Conversations on this site"] = "Converses en aquest lloc";
|
|||
$a->strings["Directory"] = "Directori";
|
||||
$a->strings["People directory"] = "Directori de gent";
|
||||
$a->strings["Conversations from your friends"] = "Converses dels teus amics";
|
||||
$a->strings["Network Reset"] = "";
|
||||
$a->strings["Load Network page with no filters"] = "";
|
||||
$a->strings["Friend Requests"] = "Sol·licitud d'Amistat";
|
||||
$a->strings["See all notifications"] = "Veure totes les notificacions";
|
||||
$a->strings["Mark all system notifications seen"] = "Marcar totes les notificacions del sistema com a vistes";
|
||||
|
|
@ -1818,11 +1909,13 @@ $a->strings["Inbox"] = "Safata d'entrada";
|
|||
$a->strings["Outbox"] = "Safata de sortida";
|
||||
$a->strings["Manage"] = "Gestionar";
|
||||
$a->strings["Manage other pages"] = "Gestiona altres pàgines";
|
||||
$a->strings["Delegations"] = "";
|
||||
$a->strings["Profiles"] = "Perfils";
|
||||
$a->strings["Manage/edit profiles"] = "Gestiona/edita perfils";
|
||||
$a->strings["Manage/Edit Profiles"] = "";
|
||||
$a->strings["Manage/edit friends and contacts"] = "Gestiona/edita amics i contactes";
|
||||
$a->strings["Site setup and configuration"] = "Ajustos i configuració del lloc";
|
||||
$a->strings["Nothing new here"] = "Res nou aquí";
|
||||
$a->strings["Navigation"] = "";
|
||||
$a->strings["Site map"] = "";
|
||||
$a->strings["Add New Contact"] = "Afegir Nou Contacte";
|
||||
$a->strings["Enter address or web location"] = "Introdueixi adreça o ubicació web";
|
||||
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara";
|
||||
|
|
@ -1859,10 +1952,47 @@ $a->strings["seconds"] = "segons";
|
|||
$a->strings["%1\$d %2\$s ago"] = " fa %1\$d %2\$s";
|
||||
$a->strings["%s's birthday"] = "%s aniversari";
|
||||
$a->strings["Happy Birthday %s"] = "Feliç Aniversari %s";
|
||||
$a->strings["From: "] = "Des de:";
|
||||
$a->strings["Image/photo"] = "Imatge/foto";
|
||||
$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "";
|
||||
$a->strings["$1 wrote:"] = "$1 va escriure:";
|
||||
$a->strings["Encrypted content"] = "";
|
||||
$a->strings["Encrypted content"] = "Encriptar contingut";
|
||||
$a->strings["General Features"] = "";
|
||||
$a->strings["Multiple Profiles"] = "";
|
||||
$a->strings["Ability to create multiple profiles"] = "";
|
||||
$a->strings["Post Composition Features"] = "";
|
||||
$a->strings["Richtext Editor"] = "";
|
||||
$a->strings["Enable richtext editor"] = "";
|
||||
$a->strings["Post Preview"] = "";
|
||||
$a->strings["Allow previewing posts and comments before publishing them"] = "";
|
||||
$a->strings["Network Sidebar Widgets"] = "";
|
||||
$a->strings["Search by Date"] = "";
|
||||
$a->strings["Ability to select posts by date ranges"] = "";
|
||||
$a->strings["Group Filter"] = "";
|
||||
$a->strings["Enable widget to display Network posts only from selected group"] = "";
|
||||
$a->strings["Network Filter"] = "";
|
||||
$a->strings["Enable widget to display Network posts only from selected network"] = "";
|
||||
$a->strings["Save search terms for re-use"] = "";
|
||||
$a->strings["Network Tabs"] = "";
|
||||
$a->strings["Network Personal Tab"] = "";
|
||||
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
|
||||
$a->strings["Network New Tab"] = "";
|
||||
$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "";
|
||||
$a->strings["Network Shared Links Tab"] = "";
|
||||
$a->strings["Enable tab to display only Network posts with links in them"] = "";
|
||||
$a->strings["Post/Comment Tools"] = "";
|
||||
$a->strings["Multiple Deletion"] = "";
|
||||
$a->strings["Select and delete multiple posts/comments at once"] = "";
|
||||
$a->strings["Edit Sent Posts"] = "";
|
||||
$a->strings["Edit and correct posts and comments after sending"] = "";
|
||||
$a->strings["Tagging"] = "";
|
||||
$a->strings["Ability to tag existing posts"] = "";
|
||||
$a->strings["Post Categories"] = "";
|
||||
$a->strings["Add categories to your posts"] = "";
|
||||
$a->strings["Ability to file posts under folders"] = "";
|
||||
$a->strings["Dislike Posts"] = "";
|
||||
$a->strings["Ability to dislike posts/comments"] = "";
|
||||
$a->strings["Star Posts"] = "";
|
||||
$a->strings["Ability to mark special posts with a star indicator"] = "";
|
||||
$a->strings["Cannot locate DNS info for database server '%s'"] = "No put trobar informació de DNS del servidor de base de dades '%s'";
|
||||
$a->strings["[no subject]"] = "[Sense assumpte]";
|
||||
$a->strings["Visible to everybody"] = "Visible per tothom";
|
||||
|
|
@ -1883,7 +2013,7 @@ $a->strings["%s commented on an item/conversation you have been following."] = "
|
|||
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Si us pau, visiteu %s per a veure i/o respondre la conversació.";
|
||||
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s enviat al teu mur del perfil";
|
||||
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha fet un enviament al teu mur de perfils en %2\$s";
|
||||
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
|
||||
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s enviat a [url=%2\$s]teu mur[/url]";
|
||||
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s t'ha etiquetat";
|
||||
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s t'ha etiquetat a %2\$s";
|
||||
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s] t'ha etiquetat[/url].";
|
||||
|
|
@ -1918,6 +2048,7 @@ $a->strings["Unable to retrieve contact information."] = "No es pot recuperar la
|
|||
$a->strings["following"] = "seguint";
|
||||
$a->strings["A new person is sharing with you at "] = "Una persona nova està compartint amb tú en";
|
||||
$a->strings["You have a new follower at "] = "Tens un nou seguidor a ";
|
||||
$a->strings["Do you really want to delete this item?"] = "";
|
||||
$a->strings["Archives"] = "Arxius";
|
||||
$a->strings["An invitation is required."] = "Es requereix invitació.";
|
||||
$a->strings["Invitation could not be verified."] = "La invitació no ha pogut ser verificada.";
|
||||
|
|
@ -1954,10 +2085,11 @@ $a->strings["Categories:"] = "";
|
|||
$a->strings["Filed under:"] = "";
|
||||
$a->strings["remove"] = "esborrar";
|
||||
$a->strings["Delete Selected Items"] = "Esborra els Elements Seleccionats";
|
||||
$a->strings["Follow Thread"] = "";
|
||||
$a->strings["%s likes this."] = "a %s agrada això.";
|
||||
$a->strings["%s doesn't like this."] = "a %s desagrada això.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> like this."] = "Li agrada a <span %1\$s>%2\$d persones</span> .";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = "No li agrada <span %1\$s>%2\$d persones</span> .";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "";
|
||||
$a->strings["and"] = "i";
|
||||
$a->strings[", and %d other people"] = ", i altres %d persones";
|
||||
$a->strings["%s like this."] = "a %s li agrada això.";
|
||||
|
|
@ -1967,16 +2099,12 @@ $a->strings["Please enter a video link/URL:"] = "Per favor , introdueixi el enll
|
|||
$a->strings["Please enter an audio link/URL:"] = "Per favor , introdueixi el enllaç/URL del audio:";
|
||||
$a->strings["Tag term:"] = "Terminis de l'etiqueta:";
|
||||
$a->strings["Where are you right now?"] = "On ets ara?";
|
||||
$a->strings["upload photo"] = "carregar fotos";
|
||||
$a->strings["attach file"] = "adjuntar arxiu";
|
||||
$a->strings["web link"] = "enllaç de web";
|
||||
$a->strings["Insert video link"] = "Insertar enllaç de video";
|
||||
$a->strings["video link"] = "enllaç de video";
|
||||
$a->strings["Insert audio link"] = "Insertar enllaç de audio";
|
||||
$a->strings["audio link"] = "enllaç de audio";
|
||||
$a->strings["set location"] = "establir la ubicació";
|
||||
$a->strings["clear location"] = "netejar ubicació";
|
||||
$a->strings["Delete item(s)?"] = "";
|
||||
$a->strings["Post to Email"] = "Correu per enviar";
|
||||
$a->strings["permissions"] = "Permissos";
|
||||
$a->strings["Post to Groups"] = "";
|
||||
$a->strings["Post to Contacts"] = "";
|
||||
$a->strings["Private post"] = "";
|
||||
$a->strings["Click here to upgrade."] = "Clica aquí per actualitzar.";
|
||||
$a->strings["This action exceeds the limits set by your subscription plan."] = "Aquesta acció excedeix els límits del teu plan de subscripció.";
|
||||
$a->strings["This action is not available under your subscription plan."] = "Aquesta acció no està disponible en el teu plan de subscripció.";
|
||||
|
|
@ -1987,11 +2115,17 @@ $a->strings["Update Error at %s"] = "Error d'actualització en %s";
|
|||
$a->strings["Create a New Account"] = "Crear un Nou Compte";
|
||||
$a->strings["Nickname or Email address: "] = "Àlies o Adreça de correu:";
|
||||
$a->strings["Password: "] = "Contrasenya:";
|
||||
$a->strings["Remember me"] = "";
|
||||
$a->strings["Or login using OpenID: "] = "O accedixi emprant OpenID:";
|
||||
$a->strings["Forgot your password?"] = "Oblidà la contrasenya?";
|
||||
$a->strings["Website Terms of Service"] = "";
|
||||
$a->strings["terms of service"] = "";
|
||||
$a->strings["Website Privacy Policy"] = "";
|
||||
$a->strings["privacy policy"] = "";
|
||||
$a->strings["Requested account is not available."] = "";
|
||||
$a->strings["Edit profile"] = "Editar perfil";
|
||||
$a->strings["Message"] = "Missatge";
|
||||
$a->strings["Manage/edit profiles"] = "Gestiona/edita perfils";
|
||||
$a->strings["g A l F d"] = "g A l F d";
|
||||
$a->strings["F d"] = "F d";
|
||||
$a->strings["[today]"] = "[avui]";
|
||||
|
|
@ -2004,3 +2138,21 @@ $a->strings["Status Messages and Posts"] = "Missatges i Enviaments d'Estatus";
|
|||
$a->strings["Profile Details"] = "Detalls del Perfil";
|
||||
$a->strings["Events and Calendar"] = "Esdeveniments i Calendari";
|
||||
$a->strings["Only You Can See This"] = "Només ho pots veure tu";
|
||||
$a->strings["via"] = "";
|
||||
$a->strings["toggle mobile"] = "";
|
||||
$a->strings["Bg settings updated."] = "Ajustos de Bg actualitzats.";
|
||||
$a->strings["Bg Settings"] = "Ajustos de Bg";
|
||||
$a->strings["Post to Drupal"] = "Missatge a Drupal";
|
||||
$a->strings["Drupal Post Settings"] = "Configuració d'enviaments a Drupal";
|
||||
$a->strings["Enable Drupal Post Plugin"] = "Habilitar el Plugin d'Enviaments de Drupal";
|
||||
$a->strings["Drupal username"] = "Nom d'usuari de Drupal";
|
||||
$a->strings["Drupal password"] = "Contrasenya de Drupal";
|
||||
$a->strings["Post Type - article,page,or blog"] = "Tipus d'Enviament- article,pàgina, o blog";
|
||||
$a->strings["Drupal site URL"] = "URL del lloc Drupal";
|
||||
$a->strings["Drupal site uses clean URLS"] = "el Lloc Drupal empra URLS netes";
|
||||
$a->strings["Post to Drupal by default"] = "Enviar a Drupal per defecte";
|
||||
$a->strings["OEmbed settings updated"] = "Actualitzar la configuració OEmbed";
|
||||
$a->strings["Use OEmbed for YouTube videos"] = "Empreu OEmbed per videos YouTube";
|
||||
$a->strings["URL to embed:"] = "Adreça URL del recurs";
|
||||
$a->strings["Tumblr login"] = "Inici de sessió de Tumblr";
|
||||
$a->strings["Tumblr password"] = "Caontrasenya de Tumblr";
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@
|
|||
{{ endif }}
|
||||
|
||||
|
||||
<li><a href="network/?cid=$contact_id" id="contact-edit-view-recent">$lblrecent</a></li>
|
||||
<li><a href="network/0?nets=all&cid=$contact_id" id="contact-edit-view-recent">$lblrecent</a></li>
|
||||
{{ if $lblsuggest }}
|
||||
<li><a href="fsuggest/$contact_id" id="contact-edit-suggest">$lblsuggest</a></li>
|
||||
{{ endif }}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
$.get(
|
||||
'$baseurl/events/?id='+eventid,
|
||||
function(data){
|
||||
$.fancybox(data);
|
||||
$.colorbox({html:data});
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
<base href="$baseurl/" />
|
||||
<meta name="generator" content="$generator" />
|
||||
<link rel="stylesheet" href="$baseurl/library/fancybox/jquery.fancybox.css" type="text/css" media="screen" />
|
||||
{#<!--<link rel="stylesheet" href="$baseurl/library/fancybox/jquery.fancybox.css" type="text/css" media="screen" />-->#}
|
||||
<link rel="stylesheet" href="$baseurl/library/colorbox/colorbox.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="$baseurl/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="$stylesheet" media="all" />
|
||||
|
|
@ -23,7 +24,8 @@
|
|||
<script type="text/javascript" src="$baseurl/js/jquery.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/js/jquery.textinputs.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/js/fk.autocomplete.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/library/fancybox/jquery.fancybox.pack.js"></script>
|
||||
{#<!--<script type="text/javascript" src="$baseurl/library/fancybox/jquery.fancybox.pack.js"></script>-->#}
|
||||
<script type="text/javascript" src="$baseurl/library/colorbox/jquery.colorbox-min.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/library/jgrowl/jquery.jgrowl_minimized.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/js/acl.js" ></script>
|
||||
|
|
|
|||
|
|
@ -13,9 +13,9 @@ function initEditor(cb){
|
|||
$("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
|
||||
$("#profile-jot-text").contact_autocomplete(baseurl+"/acl");
|
||||
editor = true;
|
||||
$("a#jot-perms-icon").fancybox({
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
$("a#jot-perms-icon").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'elastic'
|
||||
});
|
||||
$(".jothidden").show();
|
||||
if (typeof cb!="undefined") cb();
|
||||
|
|
@ -105,9 +105,9 @@ function initEditor(cb){
|
|||
});
|
||||
editor = true;
|
||||
// setup acl popup
|
||||
$("a#jot-perms-icon").fancybox({
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
$("a#jot-perms-icon").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'elastic'
|
||||
});
|
||||
} else {
|
||||
if (typeof cb!="undefined") cb();
|
||||
|
|
@ -274,7 +274,7 @@ function enableOnUser(){
|
|||
var bordercolor = $("input").css("border-color");
|
||||
|
||||
$.get('filer/', function(data){
|
||||
$.fancybox(data);
|
||||
$.colorbox({html:data});
|
||||
$("#id_term").keypress(function(){
|
||||
$(this).css("border-color",bordercolor);
|
||||
})
|
||||
|
|
@ -292,7 +292,7 @@ function enableOnUser(){
|
|||
// if(timer) clearTimeout(timer);
|
||||
// timer = setTimeout(NavUpdate,3000);
|
||||
liking = 1;
|
||||
$.fancybox.close();
|
||||
$.colorbox.close();
|
||||
} else {
|
||||
$("#id_term").css("border-color","#FF0000");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,37 +6,40 @@
|
|||
<script>
|
||||
$(function(){
|
||||
|
||||
$("#cnftheme").fancybox({
|
||||
width: 800,
|
||||
autoDimensions: false,
|
||||
onStart: function(){
|
||||
var theme = $("#id_theme :selected").val();
|
||||
var theme_mobile = $("#id_theme_mobile :selected").val();
|
||||
$("#cnftheme").attr('href',"{{$baseurl}}/admin/themes/"+theme);
|
||||
},
|
||||
onComplete: function(){
|
||||
$("div#fancybox-content form").submit(function(e){
|
||||
var url = $(this).attr('action');
|
||||
// can't get .serialize() to work...
|
||||
var data={};
|
||||
$(this).find("input").each(function(){
|
||||
data[$(this).attr('name')] = $(this).val();
|
||||
});
|
||||
$(this).find("select").each(function(){
|
||||
data[$(this).attr('name')] = $(this).children(":selected").val();
|
||||
});
|
||||
console.log(":)", url, data);
|
||||
$("#cnftheme").click(function(){
|
||||
$.colorbox({
|
||||
width: 800,
|
||||
height: '90%',
|
||||
/*onOpen: function(){
|
||||
var theme = $("#id_theme :selected").val();
|
||||
$("#cnftheme").attr('href',"{{$baseurl}}/admin/themes/"+theme);
|
||||
},*/
|
||||
href: "{{$baseurl}}/admin/themes/" + $("#id_theme :selected").val(),
|
||||
onComplete: function(){
|
||||
$("div#fancybox-content form").submit(function(e){
|
||||
var url = $(this).attr('action');
|
||||
// can't get .serialize() to work...
|
||||
var data={};
|
||||
$(this).find("input").each(function(){
|
||||
data[$(this).attr('name')] = $(this).val();
|
||||
});
|
||||
$(this).find("select").each(function(){
|
||||
data[$(this).attr('name')] = $(this).children(":selected").val();
|
||||
});
|
||||
console.log(":)", url, data);
|
||||
|
||||
$.post(url, data, function(data) {
|
||||
if(timer) clearTimeout(timer);
|
||||
NavUpdate();
|
||||
$.fancybox.close();
|
||||
})
|
||||
$.post(url, data, function(data) {
|
||||
if(timer) clearTimeout(timer);
|
||||
NavUpdate();
|
||||
$.colorbox.close();
|
||||
})
|
||||
|
||||
return false;
|
||||
});
|
||||
return false;
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
});
|
||||
return false;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@
|
|||
{{/if}}
|
||||
|
||||
|
||||
<li><a href="network/?cid={{$contact_id}}" id="contact-edit-view-recent">{{$lblrecent}}</a></li>
|
||||
<li><a href="network/0?nets=all&cid={{$contact_id}}" id="contact-edit-view-recent">{{$lblrecent}}</a></li>
|
||||
{{if $lblsuggest}}
|
||||
<li><a href="fsuggest/{{$contact_id}}" id="contact-edit-suggest">{{$lblsuggest}}</a></li>
|
||||
{{/if}}
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
$.get(
|
||||
'{{$baseurl}}/events/?id='+eventid,
|
||||
function(data){
|
||||
$.fancybox(data);
|
||||
$.colorbox({html:data});
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,8 @@
|
|||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
<base href="{{$baseurl}}/" />
|
||||
<meta name="generator" content="{{$generator}}" />
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/fancybox/jquery.fancybox.css" type="text/css" media="screen" />
|
||||
{{*<!--<link rel="stylesheet" href="{{$baseurl}}/library/fancybox/jquery.fancybox.css" type="text/css" media="screen" />-->*}}
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/colorbox/colorbox.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="{{$stylesheet}}" media="all" />
|
||||
|
|
@ -28,7 +29,8 @@
|
|||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.js" ></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.textinputs.js" ></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/fk.autocomplete.js" ></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/fancybox/jquery.fancybox.pack.js"></script>
|
||||
{{*<!--<script type="text/javascript" src="{{$baseurl}}/library/fancybox/jquery.fancybox.pack.js"></script>-->*}}
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/colorbox/jquery.colorbox-min.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/jgrowl/jquery.jgrowl_minimized.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js" ></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/acl.js" ></script>
|
||||
|
|
|
|||
|
|
@ -18,9 +18,9 @@ function initEditor(cb){
|
|||
$("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
|
||||
$("#profile-jot-text").contact_autocomplete(baseurl+"/acl");
|
||||
editor = true;
|
||||
$("a#jot-perms-icon").fancybox({
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
$("a#jot-perms-icon").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'elastic'
|
||||
});
|
||||
$(".jothidden").show();
|
||||
if (typeof cb!="undefined") cb();
|
||||
|
|
@ -110,9 +110,9 @@ function initEditor(cb){
|
|||
});
|
||||
editor = true;
|
||||
// setup acl popup
|
||||
$("a#jot-perms-icon").fancybox({
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
$("a#jot-perms-icon").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'elastic'
|
||||
});
|
||||
} else {
|
||||
if (typeof cb!="undefined") cb();
|
||||
|
|
@ -279,7 +279,7 @@ function enableOnUser(){
|
|||
var bordercolor = $("input").css("border-color");
|
||||
|
||||
$.get('filer/', function(data){
|
||||
$.fancybox(data);
|
||||
$.colorbox({html:data});
|
||||
$("#id_term").keypress(function(){
|
||||
$(this).css("border-color",bordercolor);
|
||||
})
|
||||
|
|
@ -297,7 +297,7 @@ function enableOnUser(){
|
|||
// if(timer) clearTimeout(timer);
|
||||
// timer = setTimeout(NavUpdate,3000);
|
||||
liking = 1;
|
||||
$.fancybox.close();
|
||||
$.colorbox.close();
|
||||
} else {
|
||||
$("#id_term").css("border-color","#FF0000");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@
|
|||
{{ endif }}
|
||||
|
||||
|
||||
<li><a href="network/?cid=$contact_id" id="contact-edit-view-recent">$lblrecent</a></li>
|
||||
<li><a href="network/0?nets=all&cid=$contact_id" id="contact-edit-view-recent">$lblrecent</a></li>
|
||||
{{ if $lblsuggest }}
|
||||
<li><a href="fsuggest/$contact_id" id="contact-edit-suggest">$lblsuggest</a></li>
|
||||
{{ endif }}
|
||||
|
|
|
|||
|
|
@ -10,7 +10,8 @@
|
|||
<script type="text/javascript" src="$baseurl/view/theme/decaf-mobile/js/jquery.divgrow-1.3.1.f1.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/js/jquery.textinputs.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/view/theme/decaf-mobile/js/fk.autocomplete.js" ></script>-->#}
|
||||
{#<!--<script type="text/javascript" src="$baseurl/library/fancybox/jquery.fancybox-1.3.4.pack.js"></script>-->#}
|
||||
{#<!--<script type="text/javascript" src="$baseurl/library/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/library/colorbox/jquery.colorbox-min.js"></script>-->#}
|
||||
{#<!--<script type="text/javascript" src="$baseurl/library/tiptip/jquery.tipTip.minified.js"></script>-->#}
|
||||
{#<!--<script type="text/javascript" src="$baseurl/library/jgrowl/jquery.jgrowl_minimized.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/view/theme/decaf-mobile/js/acl.js" ></script>
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
<base href="$baseurl/" />
|
||||
<meta name="generator" content="$generator" />
|
||||
{#<!--<link rel="stylesheet" href="$baseurl/library/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="$baseurl/library/colorbox/colorbox.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="$baseurl/library/tiptip/tipTip.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="$baseurl/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />-->#}
|
||||
|
||||
|
|
|
|||
1
view/theme/decaf-mobile/js/theme.min.js
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
document.addEventListener("DOMContentLoaded",function(){if(typeof window.AjaxUpload!="undefined"){var uploader=new window.AjaxUpload(window.imageUploadButton,{action:"wall_upload/"+window.nickname,name:"userfile",onSubmit:function(file,ext){$j("#profile-rotator").show()},onComplete:function(file,response){var currentText=$j(window.jotId).val();$j(window.jotId).val(currentText+response);$j("#profile-rotator").hide()}});if(document.getElementById("wall-file-upload")!=null){var file_uploader=new window.AjaxUpload("wall-file-upload",{action:"wall_attach/"+window.nickname,name:"userfile",onSubmit:function(file,ext){$j("#profile-rotator").show()},onComplete:function(file,response){var currentText=$j(window.jotId).val();$j(window.jotId).val(currentText+response);$j("#profile-rotator").hide()}})}}});function confirmDelete(f){response=confirm(window.delItem);if(response&&typeof f=="function"){f()}return response}function changeHref(elemId,url){elem=document.getElementById(elemId);elem.href=url}function remove(elemId){elem=document.getElementById(elemId);elem.parentNode.removeChild(elem)}function openClose(el){}
|
||||
|
|
@ -53,7 +53,7 @@
|
|||
{{/if}}
|
||||
|
||||
|
||||
<li><a href="network/?cid={{$contact_id}}" id="contact-edit-view-recent">{{$lblrecent}}</a></li>
|
||||
<li><a href="network/0?nets=all&cid={{$contact_id}}" id="contact-edit-view-recent">{{$lblrecent}}</a></li>
|
||||
{{if $lblsuggest}}
|
||||
<li><a href="fsuggest/{{$contact_id}}" id="contact-edit-suggest">{{$lblsuggest}}</a></li>
|
||||
{{/if}}
|
||||
|
|
|
|||
|
|
@ -15,7 +15,8 @@
|
|||
<script type="text/javascript" src="{{$baseurl}}/view/theme/decaf-mobile/js/jquery.divgrow-1.3.1.f1.js" ></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.textinputs.js" ></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/view/theme/decaf-mobile/js/fk.autocomplete.js" ></script>-->*}}
|
||||
{{*<!--<script type="text/javascript" src="{{$baseurl}}/library/fancybox/jquery.fancybox-1.3.4.pack.js"></script>-->*}}
|
||||
{{*<!--<script type="text/javascript" src="{{$baseurl}}/library/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/colorbox/jquery.colorbox-min.js"></script>-->*}}
|
||||
{{*<!--<script type="text/javascript" src="{{$baseurl}}/library/tiptip/jquery.tipTip.minified.js"></script>-->*}}
|
||||
{{*<!--<script type="text/javascript" src="{{$baseurl}}/library/jgrowl/jquery.jgrowl_minimized.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/view/theme/decaf-mobile/js/acl.js" ></script>
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
<base href="{{$baseurl}}/" />
|
||||
<meta name="generator" content="{{$generator}}" />
|
||||
{{*<!--<link rel="stylesheet" href="{{$baseurl}}/library/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/colorbox/colorbox.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/tiptip/tipTip.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />-->*}}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,2668 +1,79 @@
|
|||
/**
|
||||
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
|
||||
* Additional Changes: Michael Vogel <icarus@dabo.de>
|
||||
**/
|
||||
|
||||
/* ========= */
|
||||
/* = Admin = */
|
||||
/* ========= */
|
||||
|
||||
#adminpage {
|
||||
/* width: 80%;*/
|
||||
}
|
||||
|
||||
#pending-update {
|
||||
float:right;
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
background-color: #FF0000;
|
||||
padding: 0em 0.3em;
|
||||
}
|
||||
|
||||
.admin.linklist {
|
||||
border: 0px; padding: 0px;
|
||||
}
|
||||
|
||||
.admin.link {
|
||||
list-style-position: inside;
|
||||
font-size: 1em;
|
||||
padding: 5px;
|
||||
width: 100px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
#adminpage dl {
|
||||
clear: left;
|
||||
margin-bottom: 2px;
|
||||
padding-bottom: 2px;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
|
||||
#adminpage dt {
|
||||
width: 200px;
|
||||
float: left;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#adminpage dd {
|
||||
margin-left: 200px;
|
||||
}
|
||||
#adminpage h3 {
|
||||
border-bottom: 1px solid #898989;
|
||||
margin-bottom: 5px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#adminpage .submit {
|
||||
clear:left;
|
||||
}
|
||||
|
||||
#adminpage #pluginslist {
|
||||
margin: 0px; padding: 0px;
|
||||
}
|
||||
|
||||
#adminpage .plugin {
|
||||
list-style: none;
|
||||
display: block;
|
||||
/* border: 1px solid #888888; */
|
||||
padding: 1em;
|
||||
margin-bottom: 5px;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
#adminpage .toggleplugin {
|
||||
float:left;
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
|
||||
#adminpage table th { text-align: left;}
|
||||
#adminpage td .icon { float: left;}
|
||||
#adminpage table#users img { width: 16px; height: 16px; }
|
||||
#adminpage table tr:hover { background-color: #eeeeee; }
|
||||
#adminpage .selectall { text-align: right; }
|
||||
/* icons */
|
||||
|
||||
.icon.contacts {
|
||||
background-image: url("../diabook-aerith/icons/contacts.png");}
|
||||
.icon.notifications {
|
||||
background-image: url("../diabook-aerith/icons/notifications.png");}
|
||||
.icon.notify {
|
||||
background-image: url("../diabook-aerith/icons/notify.png");}
|
||||
.icon.messages {
|
||||
background-image: url("../diabook-aerith/icons/messages.png");}
|
||||
.icon.community {
|
||||
background-image: url("../diabook-aerith/icons/community.png");}
|
||||
|
||||
.icon.drop { background-image: url("../diabook-aerith/icons/drop.png");}
|
||||
.icon.drophide { background-image: url("../diabook-aerith/icons/drop.png");}
|
||||
.icon.dislike { background-image: url("../diabook-aerith/icons/dislike.png");}
|
||||
.icon.like { background-image: url("../diabook-aerith/icons/like.png");}
|
||||
.icon.pencil { background-image: url("../diabook-aerith/icons/pencil.png");}
|
||||
.icon.recycle { background-image: url("../diabook-aerith/icons/recycle.png");}
|
||||
.icon.remote-link { background-image: url("../diabook-aerith/icons/remote.png");}
|
||||
.icon.tagged { background-image: url("../diabook-aerith/icons/tagged.png");}
|
||||
.icon.file-as { background-image: url("../diabook-aerith/icons/file_as.png");}
|
||||
.star-item.icon.unstarred { background-image: url("../diabook-aerith/icons/unstarred.png");}
|
||||
.star-item.icon.starred { background-image: url("../diabook-aerith/icons/starred.png");}
|
||||
.icon.link { background-image: url("../diabook-aerith/icons/link.png");}
|
||||
.icon.lock { background-image: url("../diabook-aerith/icons/lock.png");}
|
||||
.icon.unlock { background-image: url("../diabook-aerith/icons/unlock.png");}
|
||||
.icon.language { background-image: url("../diabook-aerith/icons/language.png");}
|
||||
|
||||
|
||||
.camera { background-image: url("../diabook-aerith/icons/camera.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.attach { background-image: url("../diabook-aerith/icons/attach.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video2 { background-image: url("../diabook-aerith/icons/video.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-aerith/icons/video.png");
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-aerith/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio { background-image: url("../diabook-aerith/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.weblink { background-image: url("../diabook-aerith/icons/weblink.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.globe { background-image: url("../diabook-aerith/icons/globe.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.unglobe { background-image: url("../diabook-aerith/icons/unglobe.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.edit {background-image: url("../diabook-aerith/icons/pencil2.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
|
||||
|
||||
|
||||
|
||||
|
||||
.article { background-position: -50px 0px;}
|
||||
/*.audio { background-position: -70px 0px;}*/
|
||||
.block { background-position: -90px 0px;}
|
||||
/*.drop { background-position: -110px 0px;}*/
|
||||
/*.drophide { background-position: -130px 0px;}*/
|
||||
/*.edit { background-position: -150px 0px;}*/
|
||||
/*.camera { background-position: -170px 0px;}*/
|
||||
/*.dislike { background-position: -190px 0px;}*/
|
||||
/*.like { background-position: -210px 0px;}*/
|
||||
/*.link { background-position: -230px 0px;}*/
|
||||
|
||||
/*.globe { background-position: -50px -20px;}*/
|
||||
/*.noglobe { background-position: -70px -20px;}*/
|
||||
.no { background-position: -90px -20px;}
|
||||
.pause { background-position: -110px -20px;}
|
||||
.play { background-position: -130px -20px;}
|
||||
/*.pencil { background-position: -150px -20px;}*/
|
||||
.small-pencil { background-position: -170px -20px;}
|
||||
/*.recycle { background-position: -190px -20px;}*/
|
||||
/*.remote-link { background-position: -210px -20px;}*/
|
||||
.share { background-position: -230px -20px;}
|
||||
|
||||
.tools { background-position: -50px -40px;}
|
||||
/*.lock { background-position: -70px -40px;}*/
|
||||
|
||||
/*.video { background-position: -110px -40px;}*/
|
||||
.youtube { background-position: -130px -40px;}
|
||||
|
||||
/*.attach { background-position: -190px -40px;}*/
|
||||
/*.language { background-position: -210px -40px;}*/
|
||||
|
||||
|
||||
.icon.on { background-image: url("../diabook-aerith/icons/toogle_on.png"); background-repeat: no-repeat;}
|
||||
.icon.off { background-image: url("../diabook-aerith/icons/toogle_off.png"); background-repeat: no-repeat;}
|
||||
.prev { background-position: -90px -60px;}
|
||||
.next { background-position: -110px -60px;}
|
||||
/*.tagged { background-position: -130px -60px;}*/
|
||||
|
||||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../../images/content-types.png');
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
.type-image { background-position: -20px 0px; }
|
||||
.type-audio { background-position: -40px 0px; }
|
||||
.type-text { background-position: -60px 0px; }
|
||||
.type-unkn { background-position: -80px 0px; }
|
||||
|
||||
.icon.drop, .icon.drophide {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.icon {
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
/*background-image: url('icons.png');*/
|
||||
}
|
||||
|
||||
.icon {
|
||||
background-color: transparent ;
|
||||
background-repeat: no-repeat;
|
||||
/* background-position: left center; */
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
text-indent: -9999px;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
.icon.border.camera{
|
||||
background-image: url("../diabook-aerith/icons/camera.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.icon.border.link{
|
||||
background-image: url("../diabook-aerith/icons/weblink.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.icon.text {
|
||||
text-indent: 0px;
|
||||
}
|
||||
.icon.s10 {
|
||||
min-width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
.icon.s10.notify {
|
||||
background-image: url("../../../../images/icons/10/notify_off.png");
|
||||
}
|
||||
.icon.s10.gear {
|
||||
background-image: url("../../../../images/icons/10/gear.png");
|
||||
}
|
||||
.icon.s10.add {
|
||||
background-image: url("../../../../images/icons/10/add.png");
|
||||
}
|
||||
.icon.s10.delete {
|
||||
background-image: url("../../../../images/icons/10/delete.png");
|
||||
}
|
||||
.icon.s10.edit {
|
||||
background-image: url("../../../../images/icons/10/edit.png");
|
||||
}
|
||||
.icon.s10.star {
|
||||
background-image: url("../../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s10.menu {
|
||||
background-image: url("../../../../images/icons/10/menu.png");
|
||||
}
|
||||
.icon.s10.link {
|
||||
background-image: url("../../../../images/icons/10/link.png");
|
||||
}
|
||||
.icon.s10.lock {
|
||||
background-image: url("../../../../images/icons/10/lock.png");
|
||||
}
|
||||
.icon.s10.unlock {
|
||||
background-image: url("../../../../images/icons/10/unlock.png");
|
||||
}
|
||||
.icon.s10.text {
|
||||
padding: 2px 0px 0px 15px;
|
||||
font-size: 10px;
|
||||
}
|
||||
.icon.s16 {
|
||||
min-width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.icon.s16.notify {
|
||||
background-image: url("../../../../images/icons/16/notify_off.png");
|
||||
}
|
||||
.icon.s16.gear {
|
||||
background-image: url("../../../../images/icons/16/gear.png");
|
||||
}
|
||||
.icon.s16.add {
|
||||
background-image: url("../../../../images/icons/16/add.png");
|
||||
}
|
||||
.icon.s16.delete {
|
||||
background-image: url("../../../../images/icons/16/delete.png");
|
||||
}
|
||||
/*.icon.s16.edit {
|
||||
background-image: url("../../../../images/icons/16/edit.png");
|
||||
}*/
|
||||
.icon.s16.star {
|
||||
background-image: url("../../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s16.menu {
|
||||
background-image: url("../../../../images/icons/16/menu.png");
|
||||
}
|
||||
/*.icon.s16.link {
|
||||
background-image: url("../../../../images/icons/16/link.png");
|
||||
}*/
|
||||
.icon.s16.lock {
|
||||
background-image: url("../../../../images/icons/16/lock.png");
|
||||
}
|
||||
.icon.s16.unlock {
|
||||
background-image: url("../../../../images/icons/16/unlock.png");
|
||||
}
|
||||
.icon.s16.text {
|
||||
padding: 4px 0px 0px 20px;
|
||||
font-size: 10px;
|
||||
}
|
||||
.icon.s22 {
|
||||
min-width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
.icon.s22.notify {
|
||||
background-image: url("../../../../images/icons/22/notify_off.png");
|
||||
}
|
||||
.icon.s22.gear {
|
||||
background-image: url("../../../../images/icons/22/gear.png");
|
||||
}
|
||||
.icon.s22.add {
|
||||
background-image: url("../../../../images/icons/22/add.png");
|
||||
}
|
||||
.icon.s22.delete {
|
||||
background-image: url("../../../../images/icons/22/delete.png");
|
||||
}
|
||||
.icon.s22.edit {
|
||||
background-image: url("../../../../images/icons/22/edit.png");
|
||||
}
|
||||
.icon.s22.star {
|
||||
background-image: url("../../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s22.menu {
|
||||
background-image: url("../../../../images/icons/22/menu.png");
|
||||
}
|
||||
.icon.s22.link {
|
||||
background-image: url("../../../../images/icons/22/link.png");
|
||||
}
|
||||
.icon.s22.lock {
|
||||
background-image: url("../../../../images/icons/22/lock.png");
|
||||
}
|
||||
.icon.s22.unlock {
|
||||
background-image: url("../../../../images/icons/22/unlock.png");
|
||||
}
|
||||
.icon.s22.text {
|
||||
padding: 10px 0px 0px 25px;
|
||||
width: 200px;
|
||||
}
|
||||
.icon.s48 {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.icon.s48.notify {
|
||||
background-image: url("../../../../images/icons/48/notify_off.png");
|
||||
}
|
||||
.icon.s48.gear {
|
||||
background-image: url("../../../../images/icons/48/gear.png");
|
||||
}
|
||||
.icon.s48.add {
|
||||
background-image: url("../../../../images/icons/48/add.png");
|
||||
}
|
||||
.icon.s48.delete {
|
||||
background-image: url("../../../../images/icons/48/delete.png");
|
||||
}
|
||||
.icon.s48.edit {
|
||||
background-image: url("../../../../images/icons/48/edit.png");
|
||||
}
|
||||
.icon.s48.star {
|
||||
background-image: url("../../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s48.menu {
|
||||
background-image: url("../../../../images/icons/48/menu.png");
|
||||
}
|
||||
.icon.s48.link {
|
||||
background-image: url("../../../../images/icons/48/link.png");
|
||||
}
|
||||
.icon.s48.lock {
|
||||
background-image: url("../../../../images/icons/48/lock.png");
|
||||
}
|
||||
.icon.s48.unlock {
|
||||
background-image: url("../../../../images/icons/48/unlock.png");
|
||||
}
|
||||
|
||||
#contact-edit-links ul {
|
||||
list-style: none;
|
||||
list-style-type: none;
|
||||
}
|
||||
@import url('style-network.css');
|
||||
|
||||
.hide-comments-outer {
|
||||
margin-left: 80px;
|
||||
margin-bottom: 1px;
|
||||
width: 675px;
|
||||
border-bottom: 1px solid #BDCDD4;
|
||||
background-color: #fff;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
/* global */
|
||||
body {
|
||||
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 13px;
|
||||
background-color: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 50px auto auto;
|
||||
display: table;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #333333;
|
||||
/* color: #3e3e8c; */
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
/* color: blue; */
|
||||
text-decoration: underline
|
||||
}
|
||||
|
||||
.wall-item-name-link {
|
||||
/* float: left;*/
|
||||
}
|
||||
|
||||
.wall-item-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.left {
|
||||
float: left;
|
||||
}
|
||||
.right {
|
||||
float: right;
|
||||
}
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
.clear {
|
||||
clear: both;
|
||||
}
|
||||
.fakelink {
|
||||
color: #3465A4;
|
||||
/* color: #3e3e8c; */
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.fakelink:hover {
|
||||
/* color: blue; */
|
||||
/*color: #005c94; */
|
||||
text-decoration: underline;
|
||||
}
|
||||
code {
|
||||
font-family: Courier, monospace;
|
||||
white-space: pre;
|
||||
display: block;
|
||||
overflow: auto;
|
||||
border: 1px solid #444;
|
||||
background: #EEE;
|
||||
color: #444;
|
||||
padding: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
#panel {
|
||||
position: absolute;
|
||||
width: 12em;
|
||||
background: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 0px;
|
||||
padding: 1em;
|
||||
list-style: none;
|
||||
border: 3px solid #364e59;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
/* tool */
|
||||
.tool {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
padding: 3px;
|
||||
}
|
||||
#saved-search-ul .tool:hover,
|
||||
#nets-sidebar .tool:hover,
|
||||
#sidebar-group-list .tool:hover ,
|
||||
#fileas-sidebar .tool:hover {
|
||||
background: aliceBlue;
|
||||
}
|
||||
.tool .label {
|
||||
float: left;
|
||||
}
|
||||
.tool .action {
|
||||
float: right;
|
||||
}
|
||||
.tool a {
|
||||
color: #3465A4;
|
||||
}
|
||||
.tool a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
/* popup notifications */
|
||||
div.jGrowl div.notice {
|
||||
background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;
|
||||
color: #ffffff;
|
||||
padding-left: 58px;
|
||||
}
|
||||
div.jGrowl div.info {
|
||||
background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;
|
||||
color: #ffffff;
|
||||
padding-left: 58px;
|
||||
}
|
||||
/* header */
|
||||
header {
|
||||
position: fixed;
|
||||
left: 0%;
|
||||
right: 80%;
|
||||
top: 0px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
width: 22%;
|
||||
height: 32px;
|
||||
background: #ff500f;
|
||||
background-color: #ff500f;
|
||||
z-index: 100;
|
||||
border-bottom: 1px;
|
||||
border-bottom-color: black;
|
||||
border-bottom-style: inset;
|
||||
background-image: linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -o-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -moz-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -webkit-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -ms-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
|
||||
background-image: -webkit-gradient(
|
||||
linear,
|
||||
left bottom,
|
||||
left top,
|
||||
color-stop(0.26, rgb(215,227,241)),
|
||||
color-stop(0.82, rgb(255,255,255))
|
||||
);
|
||||
}
|
||||
header #site-location {
|
||||
display: none;
|
||||
}
|
||||
header #banner {
|
||||
overflow: hidden;
|
||||
text-align: left;
|
||||
width: 82%%;
|
||||
margin-left: 25%;
|
||||
}
|
||||
header #banner a,
|
||||
header #banner a:active,
|
||||
header #banner a:visited,
|
||||
header #banner a:link,
|
||||
header #banner a:hover {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
vertical-align: middle;
|
||||
font-weight: bolder;
|
||||
margin-left: 3px;
|
||||
}
|
||||
header #banner #logo-img {
|
||||
height: 25px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
header #banner #logo-text {
|
||||
font-size: 20px;
|
||||
position: absolute;
|
||||
top: 10%;
|
||||
}
|
||||
/* nav */
|
||||
nav {
|
||||
width: 80%;
|
||||
height: 32px;
|
||||
position: fixed;
|
||||
left: 22%;
|
||||
top: 0px;
|
||||
padding: 0px;
|
||||
background: #ff500f;
|
||||
color: #000;
|
||||
z-index: 99;
|
||||
border-bottom: 1px;
|
||||
border-bottom-color: black;
|
||||
border-bottom-style: inset;
|
||||
background-image: linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -o-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -moz-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -webkit-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -ms-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
|
||||
background-image: -webkit-gradient(
|
||||
linear,
|
||||
left bottom,
|
||||
left top,
|
||||
color-stop(0.26, rgb(215,227,241)),
|
||||
color-stop(0.82, rgb(255,255,255))
|
||||
);
|
||||
}
|
||||
nav a,
|
||||
nav a:active,
|
||||
nav a:visited,
|
||||
nav a:link,
|
||||
nav a:hover {
|
||||
/*color: #1f1f1f;*/
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
}
|
||||
nav #banner {
|
||||
overflow: hidden;
|
||||
/*text-align: center;*/
|
||||
width: 100%;
|
||||
}
|
||||
nav #banner a,
|
||||
nav #banner a:active,
|
||||
nav #banner a:visited,
|
||||
nav #banner a:link,
|
||||
nav #banner a:hover {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
nav #banner #logo-img {
|
||||
height: 22px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
nav #banner #logo-text {
|
||||
font-size: 22px;
|
||||
}
|
||||
nav #navbar{
|
||||
}
|
||||
nav ul {
|
||||
margin: 0px;
|
||||
padding: 0px 20px;
|
||||
}
|
||||
nav ul li {
|
||||
list-style: none;
|
||||
margin: 0px;
|
||||
/* padding: 1px 1px 3px 1px; */
|
||||
float: left;
|
||||
}
|
||||
nav ul li .menu-popup {
|
||||
left: 0px;
|
||||
right: auto;
|
||||
}
|
||||
|
||||
nav #logo-img {
|
||||
height: 25px;
|
||||
margin-top: 4px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
nav #logo-text {
|
||||
font-size: 22px;
|
||||
margin-top: 3px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
nav .nav-menu-search {
|
||||
position: relative;
|
||||
|
||||
margin: 4px 17px;
|
||||
margin-right: 0px;
|
||||
height: 17px;
|
||||
width: 180px;
|
||||
|
||||
}
|
||||
|
||||
nav #search-box #search-text {
|
||||
background-image: url('icons/lupe.png');
|
||||
background-repeat:no-repeat;
|
||||
padding-left:20px;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
border-bottom-left-radius: 15px;
|
||||
}
|
||||
|
||||
|
||||
nav .nav-menu-icon {
|
||||
position: relative;
|
||||
height: 22px;
|
||||
padding: 5px;
|
||||
margin: 0px 5px;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
nav .nav-menu-icon:hover {
|
||||
position: relative;
|
||||
height: 22px;
|
||||
padding: 5px;
|
||||
margin: 0px 5px;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
|
||||
nav .nav-menu-icon.selected {
|
||||
background-color: #fff;
|
||||
}
|
||||
nav .nav-menu-icon img {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
nav .nav-menu-icon .nav-notify {
|
||||
top: 3px;
|
||||
}
|
||||
/*marker*/
|
||||
nav .nav-menu {
|
||||
position: relative;
|
||||
height: 16px;
|
||||
padding: 5px;
|
||||
margin: 3px 15px 0px;
|
||||
font-size: 15px;
|
||||
/*border: 3px solid #364A84;*/
|
||||
}
|
||||
nav .nav-menu.selected {
|
||||
/*border-bottom: 3px solid #9eabb0;*/
|
||||
}
|
||||
nav .nav-notify {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: #fff;
|
||||
/* background-color: #19aeff; */
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-size: 10px;
|
||||
font-weight: 900;
|
||||
padding: 1px 4px;
|
||||
top: 0px;
|
||||
right: -6px;
|
||||
min-width: 10px;
|
||||
text-align: center;
|
||||
border: 1px solid black;
|
||||
}
|
||||
nav .nav-notify.show {
|
||||
display: block;
|
||||
}
|
||||
nav #nav-help-link,
|
||||
nav #nav-search-link,
|
||||
nav #nav-directory-link,
|
||||
nav #nav-apps-link,
|
||||
nav #nav-site-linkmenu,
|
||||
nav #nav-home-link,
|
||||
nav #nav-user-linkmenu
|
||||
{
|
||||
float: right;
|
||||
}
|
||||
nav #nav-user-linkmenu{
|
||||
margin-right: 0px;
|
||||
}
|
||||
nav #nav-home-link, #nav-directory-link, #nav-apps-link{
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
font-weight: bold;
|
||||
margin: 3px 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
nav #nav-directory-link{
|
||||
margin-right: 0px;
|
||||
}
|
||||
nav #nav-home-link{
|
||||
margin-left: 0px;
|
||||
}
|
||||
nav #nav-help-link .menu-popup,
|
||||
nav #nav-search-link .menu-popup,
|
||||
nav #nav-directory-link .menu-popup,
|
||||
nav #nav-apps-link .menu-popup,
|
||||
nav #nav-site-linkmenu .menu-popup {
|
||||
right: 0px;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
|
||||
background-image: url("../diabook-aerith/icons/messages.png");
|
||||
}
|
||||
|
||||
/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
|
||||
background-image: url("../diabook-aerith/icons/notify.png");
|
||||
}
|
||||
|
||||
nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
|
||||
background-image: url("../diabook-aerith/icons/contacts.png");
|
||||
}
|
||||
|
||||
nav #nav-apps-link.selected {
|
||||
background-color: #fff;
|
||||
moz-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
|
||||
#nav-notifications-mark-all {
|
||||
/* padding: 1px 1px 2px 26px; */
|
||||
/* border-bottom: 1px solid #364E59; */
|
||||
/* margin: 0px 0px 2px 0px;
|
||||
padding: 5px 10px; */
|
||||
}
|
||||
|
||||
#nav-notifications-see-all {
|
||||
/* padding: 1px 1px 2px 26px; */
|
||||
/* border-bottom: 1px solid #364E59; */
|
||||
/* margin: 0px 0px 2px 0px;
|
||||
padding: 5px 10px; */
|
||||
}
|
||||
|
||||
.notify-seen {
|
||||
background: none repeat scroll 0 0 #DDDDDD;
|
||||
}
|
||||
|
||||
ul.menu-popup {
|
||||
position: absolute;
|
||||
display: none;
|
||||
width: 11em;
|
||||
background: #fff;
|
||||
color: #2d2d2d;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
list-style: none;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
ul.menu-popup a {
|
||||
display: block;
|
||||
color: #2d2d2d;
|
||||
padding: 5px 10px;
|
||||
text-decoration: none;
|
||||
}
|
||||
ul.menu-popup a:hover {
|
||||
background-color: #3465A4; /*bdcdd4;*/
|
||||
color: #fff;
|
||||
}
|
||||
ul.menu-popup .menu-sep {
|
||||
border-top: 1px solid #9eabb0;
|
||||
}
|
||||
ul.menu-popup li {
|
||||
float: none;
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
ul.menu-popup li img {
|
||||
float: left;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
ul.menu-popup .empty {
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
color: #9eabb0;
|
||||
}
|
||||
/* autocomplete popup */
|
||||
.acpopup {
|
||||
max-height: 150px;
|
||||
background-color: #ffffff;
|
||||
color: #2d2d2d;
|
||||
border: 1px solid #MenuBorder;
|
||||
overflow: auto;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
.acpopupitem {
|
||||
color: #2d2d2d;
|
||||
padding: 4px;
|
||||
clear: left;
|
||||
}
|
||||
.acpopupitem img {
|
||||
float: left;
|
||||
margin-right: 4px;
|
||||
}
|
||||
.acpopupitem.selected {
|
||||
background-color: #bdcdd4;
|
||||
}
|
||||
#nav-notifications-menu {
|
||||
width: 400px;
|
||||
max-height: 550px;
|
||||
overflow: auto;
|
||||
}
|
||||
/* #nav-notifications-menu a {
|
||||
display: inline;
|
||||
padding: 5px 0px;
|
||||
margin: 0px 0px 2px 0px;
|
||||
}
|
||||
#nav-notifications-menu li:hover {
|
||||
background-color: #bdcdd4;
|
||||
}*/
|
||||
|
||||
#nav-notifications-menu img {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
}
|
||||
#nav-notifications-menu .contactname {
|
||||
font-weight: bold;
|
||||
}
|
||||
#nav-notifications-menu .notif-when {
|
||||
font-size: 10px;
|
||||
color: #9eabb0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.notif-image {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
padding: 7px 7px 0px 0px;
|
||||
}
|
||||
|
||||
/*profile_side*/
|
||||
#profile_side {
|
||||
margin-bottom: 30px;
|
||||
|
||||
}
|
||||
#profile_side a{
|
||||
color: #333;
|
||||
}
|
||||
#ps-usericon{
|
||||
height: 25px
|
||||
}
|
||||
#ps-username{
|
||||
font-size: 1.17em;
|
||||
font-weight: bold;
|
||||
vertical-align: top;
|
||||
position: absolute;
|
||||
padding-top: 4px;
|
||||
padding-left: 5px;
|
||||
word-wrap: break-word;
|
||||
width: 130px;
|
||||
}
|
||||
#ps-username:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
.menu-profile-side{
|
||||
list-style: none;
|
||||
padding-left: 0px;
|
||||
min-height: 0px;
|
||||
}
|
||||
.menu-profile-list{
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
min-height: 16px;
|
||||
list-style: none;
|
||||
}
|
||||
.menu-profile-list:hover{
|
||||
background: aliceBlue;
|
||||
}
|
||||
.menu-profile-list-item{
|
||||
padding-left: 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.menu-profile-list-item:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
/*http://prothemedesign.com/circular-icons/*/
|
||||
.menu-profile-icon.home{
|
||||
background: url("../diabook-aerith/icons/home.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;
|
||||
}
|
||||
.menu-profile-icon.photos{
|
||||
background: url("../diabook-aerith/icons/mess_side.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.events{
|
||||
background: url("../diabook-aerith/icons/events.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.notes{
|
||||
background: url("../diabook-aerith/icons/notes.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.foren{
|
||||
background: url("../diabook-aerith/icons/pubgroups.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.com_side{
|
||||
background: url("../diabook-aerith/icons/com_side.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.pscontacts{
|
||||
background: url("../diabook-aerith/icons/pscontacts.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
|
||||
/* aside */
|
||||
/*marker*/
|
||||
aside {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 180px;
|
||||
padding: 0px 5px 0px 0px;
|
||||
border-right: 1px solid #D2D2D2;
|
||||
float: left;
|
||||
/* background: #F1F1F1; */
|
||||
}
|
||||
aside #page-sidebar{display: none;}
|
||||
aside .vcard .fn {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
aside .vcard .title {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
aside .vcard dl {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
}
|
||||
aside .vcard dt {
|
||||
float: left;
|
||||
margin-left: 0px;
|
||||
/*width: 35%;*/
|
||||
text-align: right;
|
||||
color: #999999;
|
||||
}
|
||||
aside .vcard dd {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
/*width: 60%;*/
|
||||
}
|
||||
aside #profile-extra-links ul {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
aside #profile-extra-links li {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
list-style: none;
|
||||
}
|
||||
aside #dfrn-request-link {
|
||||
display: block;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
color: #ffffff;
|
||||
background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
padding: 4px 2px 2px 35px;
|
||||
}
|
||||
aside #dfrn-request-link:hover {
|
||||
text-decoration: none;
|
||||
background-color: #36c;
|
||||
/* background-color: #19aeff; */
|
||||
}
|
||||
aside #profiles-menu {
|
||||
width: 20em;
|
||||
}
|
||||
aside #search-text {
|
||||
width: 150px;
|
||||
height: 17px;
|
||||
padding-left: 10px;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
border-bottom-left-radius: 15px;
|
||||
-moz-border-bottom-colors: #dbdbdb;
|
||||
-moz-border-top-colors: #999;
|
||||
-moz-border-left-colors: #999;
|
||||
-moz-border-right-colors: #dbdbdb;
|
||||
}
|
||||
aside #side-follow-url {
|
||||
width: 150px;
|
||||
}
|
||||
aside #side-peoplefind-url {
|
||||
width: 150px;
|
||||
}
|
||||
#contact-block {
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
}
|
||||
#contact-block .contact-block-h4 {
|
||||
float: left;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
#contact-block .allcontact-link {
|
||||
float: right;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
#contact-block .contact-block-content {
|
||||
clear: both;
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
}
|
||||
#contact-block .contact-block-link {
|
||||
float: left;
|
||||
margin: 0px 2px 2px 0px;
|
||||
}
|
||||
#contact-block .contact-block-link img {
|
||||
widht: 55px;
|
||||
height: 55px;
|
||||
}
|
||||
#lost-password-link {
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
}
|
||||
/* widget */
|
||||
.widget {
|
||||
margin-bottom: 2em;
|
||||
/*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
|
||||
.action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
|
||||
/* font-size: 12px; */
|
||||
}
|
||||
|
||||
/*marker*/
|
||||
.widget h3 {
|
||||
padding: 0px;
|
||||
margin: 2px;
|
||||
font-size: 1.05em;
|
||||
}
|
||||
.widget .action {
|
||||
opacity: 0.1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget input.action {
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget:hover .title .action {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget .tool:hover .action {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget .tool:hover .action.ticked {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget ul {
|
||||
padding: 0px;
|
||||
}
|
||||
.widget ul li {
|
||||
padding-left: 16px;
|
||||
min-height: 16px;
|
||||
list-style: none;
|
||||
}
|
||||
#side-bar-photos-albums li{
|
||||
list-style-type: disc;
|
||||
}
|
||||
#side-bar-photos-albums ul li{
|
||||
margin-left: 30px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
#side-bar-photos-albums ul li a{
|
||||
color: #3465A4;
|
||||
}
|
||||
.widget .tool.selected {
|
||||
background: url("../diabook-aerith/icons/selected.png") no-repeat left center;
|
||||
}
|
||||
/* widget: search */
|
||||
span.sbox_l {
|
||||
background: white url('../diabook-aerith/icons/srch_l.gif') no-repeat top left;
|
||||
float: left;
|
||||
width: 19px; height: 19px;
|
||||
margin-left: 10px;
|
||||
margin-top: 5px;
|
||||
|
||||
}
|
||||
|
||||
span.sbox_r {
|
||||
background: white url('../diabook-aerith/icons/srch_r.gif') no-repeat top left;
|
||||
float: left;
|
||||
width: 19px; height: 19px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
span.sbox input {
|
||||
background: white url('../diabook-aerith/icons/srch_bg.gif') repeat-x top left;
|
||||
float: left;
|
||||
margin-top: 5px;
|
||||
border: 0;
|
||||
height: 13px; width: 100px;
|
||||
padding: 3px;
|
||||
font: 11px/13px arial;
|
||||
color: #000;
|
||||
}
|
||||
#add-search-popup {
|
||||
width: 200px;
|
||||
top: 18px;
|
||||
}
|
||||
/* section */
|
||||
section {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: auto;
|
||||
padding: 0px 0px 0px 12px;
|
||||
}
|
||||
|
||||
body .pageheader{
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
margin-bottom: 20px;
|
||||
margin-top: 0px;
|
||||
max-width: 575px;
|
||||
}
|
||||
.qcomment{
|
||||
max-width: 122px;
|
||||
}
|
||||
#id_username {
|
||||
width: 173px;
|
||||
}
|
||||
#id_password {
|
||||
width: 173px;
|
||||
}
|
||||
#id_openid_url {
|
||||
width: 173px;
|
||||
}
|
||||
#contact-edit-end {
|
||||
}
|
||||
.pager {
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
font-size: 1.0em;
|
||||
clear: both;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.tabs {
|
||||
|
||||
background-position: 0 -20px;
|
||||
background-repeat: repeat-x;
|
||||
height: 27px;
|
||||
padding: 0;
|
||||
}
|
||||
.tab.button {
|
||||
margin-left: 5px;
|
||||
/*background: none repeat scroll 0 0 #F8F8F8;*/
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
font-weight: normal;
|
||||
padding: 3px;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
#birthday-wrapper a {
|
||||
color: #3465A4;
|
||||
}
|
||||
|
||||
/*marker*/
|
||||
right_aside {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 180px;
|
||||
/*border-left: 1px solid #D2D2D2;*/
|
||||
|
||||
/* background: #F1F1F1; */
|
||||
}
|
||||
right_aside a{color: #3465A4;}
|
||||
/*marker*/
|
||||
right_aside h3 {font-size: 1.05em; border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px;
|
||||
margin-top:30px;}
|
||||
right_aside .directory-item { width: 50px; height: 50px; vertical-align: center; text-align: center; }
|
||||
right_aside .directory-photo { margin: 0px; }
|
||||
right_aside .directory-photo-img { max-width: 45px; max-height: 45px; }
|
||||
right_aside #likes { margin: 0px; padding: 0px; list-style: none; }
|
||||
right_aside .items-wrapper{ overflow: auto; width: 100%; }
|
||||
right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; }
|
||||
right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; }
|
||||
#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;}
|
||||
#page-sidebar-right_aside ul {margin-top: 0px;}
|
||||
#page-sidebar-right_aside .label {max-width: 128px;}
|
||||
right_aside .icon {width: 10px; height: 10px;}
|
||||
.close_box {
|
||||
background-image: url("../diabook-aerith/icons/close_box.png");
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
opacity: 0.1;
|
||||
}
|
||||
.close_box:hover {
|
||||
background-image: url("../diabook-aerith/icons/close_box.png");
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
right_aside h3 {font-size: 1.05em;}
|
||||
|
||||
/* wall item */
|
||||
/*marker*/
|
||||
.tread-wrapper {
|
||||
border-bottom: 1px solid #D2D2D2;
|
||||
position: relative;
|
||||
padding: 5px;
|
||||
margin-bottom: 0px;
|
||||
width: 775px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
.tread-wrapper a{
|
||||
color: #3465A4;
|
||||
}
|
||||
|
||||
/*marker*/
|
||||
.wall-item-decor {
|
||||
position: absolute;
|
||||
left: 780px;
|
||||
top: -10px;
|
||||
width: 16px;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container {
|
||||
display: table;
|
||||
width: 770px;
|
||||
}
|
||||
|
||||
|
||||
.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
.wall-item-bottom {
|
||||
font-size: 13px;
|
||||
}
|
||||
.wall-item-container .wall-item-bottom {
|
||||
/* opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out; */
|
||||
}
|
||||
.wall-item-container:hover .wall-item-bottom {
|
||||
/* opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out; */
|
||||
}
|
||||
.wall-item-container .wall-item-info {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
text-align: left;
|
||||
width: 80px;
|
||||
}
|
||||
.wall-item-container .wall-item-location {
|
||||
padding-right: 40px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-ago {
|
||||
word-wrap: break-word;
|
||||
width: 50px;
|
||||
margin-left: 10px;
|
||||
color: #999;
|
||||
}
|
||||
.wall-item-location {
|
||||
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content {
|
||||
|
||||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
max-width: auto;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-container .wall-item-name {
|
||||
font-weight: bold;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-author {
|
||||
width: 100%;
|
||||
margin-bottom: 0.3em;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-social {
|
||||
float: left;
|
||||
margin-bottom: 1px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-social a {
|
||||
margin-right: 1em;
|
||||
}
|
||||
.wall-item-actions-social a {
|
||||
float: left;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools {
|
||||
float: right;
|
||||
width: 80px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools a {
|
||||
float: right;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools input {
|
||||
float: right;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container.comment {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
margin-left: 80px;
|
||||
width: 690px;
|
||||
border-bottom: 1px solid hsl(198, 21%, 79%);
|
||||
}
|
||||
.wall-item-container.comment .contact-photo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 16px;
|
||||
/*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
|
||||
|
||||
}
|
||||
.wall-item-container.comment {
|
||||
top: 15px !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
.wall-item-container.comment .wall-item-links {
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
.wall-item-comment-wrapper {
|
||||
margin: 1px 5px 5px 80px;
|
||||
background-color: #fff;
|
||||
width: 500px;
|
||||
}
|
||||
.wall-item-comment-wrapper .comment-edit-photo {
|
||||
display: none;
|
||||
}
|
||||
.wall-item-comment-wrapper textarea {
|
||||
height: 1.6em ;
|
||||
width: 100%;
|
||||
font-size: 10px;
|
||||
color: #999999;
|
||||
border: 1px solid #DDD;
|
||||
padding: 0.3em;
|
||||
font-size: 14px;
|
||||
}
|
||||
.wall-item-comment-wrapper .comment-edit-text-full {
|
||||
font-size: 14px;
|
||||
height: 4em;
|
||||
color: #2d2d2d;
|
||||
border: 1px solid #2d2d2d;
|
||||
}
|
||||
.comment-edit-preview {
|
||||
width: 500px;
|
||||
margin-top: 10px;
|
||||
background-color: #fff797;
|
||||
}
|
||||
.comment-edit-preview .contact-photo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 16px;
|
||||
/*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
|
||||
|
||||
}
|
||||
.comment-edit-preview {
|
||||
top: 15px !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
.comment-edit-preview .wall-item-links {
|
||||
padding-left: 12px;
|
||||
}
|
||||
.comment-edit-preview .wall-item-container {
|
||||
width: 700px;
|
||||
}
|
||||
.comment-edit-preview .tread-wrapper {
|
||||
width: 700px;
|
||||
padding: 0;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.shiny {
|
||||
/* border-right: 10px solid #fce94f; */
|
||||
border-right: 1px solid #A7C7F7;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
#jot-preview-content{
|
||||
margin-top: 30px;}
|
||||
|
||||
#jot-preview-content .tread-wrapper {
|
||||
background-color: #fff797;
|
||||
}
|
||||
|
||||
.wall-item-tags {
|
||||
padding-top: 1px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
.tag {
|
||||
/*background: url("../../../../images/tag_b.png") repeat-x center left;*/
|
||||
color: #999;
|
||||
padding-left: 3px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.tag a {
|
||||
padding-right: 5px;
|
||||
/*background: url("../../../../images/tag.png") no-repeat center right;*/
|
||||
color: #999;
|
||||
}
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
background: #FFFFFF;
|
||||
border: 2px solid #364e59;
|
||||
height: 25px;
|
||||
width: 25px;
|
||||
overflow: hidden;
|
||||
padding: 1px;
|
||||
position: absolute !important;
|
||||
top: 40px;
|
||||
left: 30px;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
.wwto .contact-photo {
|
||||
width: auto;
|
||||
height: 25px;
|
||||
}
|
||||
/* contacts menu */
|
||||
.contact-photo-wrapper {
|
||||
position: relative;
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.contact-photo-wrapper.wwto {
|
||||
width: 25px;
|
||||
}
|
||||
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
|
||||
.contact-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.contact-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-name {
|
||||
/* text-align: center; */
|
||||
/*font-weight: bold;*/
|
||||
font-size: 12px;
|
||||
}
|
||||
.contact-details {
|
||||
color: #999999;
|
||||
}
|
||||
/* editor */
|
||||
.jothidden {
|
||||
display: none;
|
||||
}
|
||||
#jot {
|
||||
width: 585px;
|
||||
margin: 0px 2em 20px 0px;
|
||||
}
|
||||
#profile-jot-form #profile-jot-text {
|
||||
height: 2.0em;
|
||||
width: 99%;
|
||||
font-size: 15px;
|
||||
color: #999999;
|
||||
border: 1px solid #DDD;
|
||||
padding: 0.3em;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.grey
|
||||
{
|
||||
display: inline;
|
||||
float: right;
|
||||
}
|
||||
#jot #jot-tools {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
height: 40px;
|
||||
overflow: none;
|
||||
width: 583px;
|
||||
background-color: #fff;
|
||||
border-bottom: 2px solid #9eabb0;
|
||||
}
|
||||
|
||||
#jot #jot-tools li {
|
||||
list-style: none;
|
||||
float: left;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border-bottom: 2px solid #9eabb0;
|
||||
}
|
||||
#jot #jot-tools li a {
|
||||
display: block;
|
||||
color: #cccccc;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
text-align: center;
|
||||
line-height: 40px;
|
||||
overflow: hidden;
|
||||
}
|
||||
#jot #jot-tools li:hover {
|
||||
background-color: #364e59;
|
||||
border-bottom: 2px solid #bdcdd4;
|
||||
}
|
||||
#jot #jot-tools li.perms {
|
||||
float: right;
|
||||
width: 40px;
|
||||
}
|
||||
#jot #jot-tools li.perms a.unlock {
|
||||
width: 30px;
|
||||
border-left: 10px solid #cccccc;
|
||||
background-color: #cccccc;
|
||||
background-position: left center;
|
||||
}
|
||||
#jot #jot-tools li.perms a.lock {
|
||||
width: 30px;
|
||||
border-left: 10px solid #666666;
|
||||
background-color: #666666;
|
||||
}
|
||||
#jot #jot-tools li.submit {
|
||||
float: right;
|
||||
background-color: #cccccc;
|
||||
border-bottom: 2px solid #cccccc;
|
||||
border-right: 1px solid #666666;
|
||||
border-left: 1px solid #666666;
|
||||
}
|
||||
#jot #jot-tools li.submit input {
|
||||
border: 0px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
background-color: #cccccc;
|
||||
color: #666666;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
}
|
||||
#jot #jot-tools li.submit input:hover {
|
||||
background-color: #bdcdd4;
|
||||
color: #666666;
|
||||
}
|
||||
#jot #jot-tools li.loading {
|
||||
float: right;
|
||||
background-color: #ffffff;
|
||||
width: 20px;
|
||||
vertical-align: center;
|
||||
text-align: center;
|
||||
border-top: 2px solid #9eabb0;
|
||||
height: 38px;
|
||||
}
|
||||
#jot #jot-tools li.loading img {
|
||||
margin-top: 10px;
|
||||
}
|
||||
#profile-jot-form #jot-title {
|
||||
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-weight: bold;
|
||||
height: 20px;
|
||||
margin: 0 0 5px;
|
||||
width: 60%;
|
||||
border: 1px solid #d2d2d2;
|
||||
}
|
||||
#profile-jot-form #jot-title:-webkit-input-placeholder {
|
||||
font-weight: normal;
|
||||
}
|
||||
#profile-jot-form #jot-title:-moz-placeholder {
|
||||
font-weight: normal;
|
||||
}
|
||||
#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
|
||||
width: 585px;
|
||||
height: 100px;
|
||||
}
|
||||
#jot #jot-title:hover {
|
||||
border: 1px solid #999999;
|
||||
}
|
||||
#jot #jot-title:focus {
|
||||
border: 1px solid #999999;
|
||||
}
|
||||
#jot #character-counter {
|
||||
width: 80px;
|
||||
float: right;
|
||||
text-align: right;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
#jot-perms-icon,
|
||||
#profile-location,
|
||||
#profile-nolocation,
|
||||
#profile-youtube,
|
||||
#profile-video,
|
||||
#profile-audio,
|
||||
#profile-link,
|
||||
#profile-title,
|
||||
#wall-image-upload,
|
||||
#wall-file-upload,
|
||||
#wall-image-upload-div,
|
||||
#wall-file-upload-div,
|
||||
.hover, .focus {
|
||||
cursor: pointer;
|
||||
margin-top: 2px;
|
||||
}
|
||||
/*marker*/
|
||||
#profile-jot-wrapper{
|
||||
margin: 0 20px 20px 0;
|
||||
width: 785px;
|
||||
}
|
||||
}
|
||||
/*marker*/
|
||||
#profile-jot-submit-wrapper {
|
||||
margin-bottom: 50px;
|
||||
width: 785px;
|
||||
}
|
||||
|
||||
#profile-jot-submit {
|
||||
float: right;
|
||||
margin-top: 2px;
|
||||
font-size: 14px;
|
||||
|
||||
}
|
||||
#profile-upload-wrapper {
|
||||
float: left;
|
||||
margin-top: 2px;
|
||||
margin-left: 10px;
|
||||
|
||||
}
|
||||
#profile-attach-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-rotator {
|
||||
float: left;
|
||||
margin-left: 30px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-link-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-youtube-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-video-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-audio-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-location-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-jot-perms {
|
||||
float: left;
|
||||
margin-left: 45px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#jot-preview-link {
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-top: 2px;
|
||||
font-size: 9px;
|
||||
font-weight: bolder;
|
||||
cursor: pointer;
|
||||
}
|
||||
#profile-jot-perms{
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
/** buttons **/
|
||||
.button.creation1 {
|
||||
background-color: #fff;
|
||||
border: 1px solid #777777;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
cursor: pointer;
|
||||
font-weight: bolder;
|
||||
}
|
||||
.button.creation2 {
|
||||
background-color: #3465A4;
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
margin-left: 5px;
|
||||
cursor: pointer;
|
||||
font-weight: bolder;
|
||||
}
|
||||
/*input[type="submit"] {
|
||||
border: 0px;
|
||||
background-color: @ButtonBackgroundColor;
|
||||
color: @ButtonColor;
|
||||
padding: 0px 10px;
|
||||
.rounded(5px);
|
||||
height: 18px;
|
||||
}*/
|
||||
/** acl **/
|
||||
#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
|
||||
display: block!important;
|
||||
}
|
||||
#acl-wrapper {
|
||||
width: 690px;
|
||||
float: left;
|
||||
}
|
||||
#acl-search {
|
||||
float: right;
|
||||
background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
|
||||
padding-right: 20px;
|
||||
}
|
||||
#acl-showall {
|
||||
float: left;
|
||||
display: block;
|
||||
width: auto;
|
||||
height: 18px;
|
||||
background-color: #cccccc;
|
||||
background-image: url("../../../../images/show_all_off.png");
|
||||
background-position: 7px 7px;
|
||||
background-repeat: no-repeat;
|
||||
padding: 7px 5px 0px 30px;
|
||||
color: #999999;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
#acl-showall.selected {
|
||||
color: #000000;
|
||||
background-color: #ff9900;
|
||||
background-image: url("../../../../images/show_all_on.png");
|
||||
}
|
||||
#acl-list {
|
||||
height: 210px;
|
||||
border: 1px solid #cccccc;
|
||||
clear: both;
|
||||
margin-top: 30px;
|
||||
overflow: auto;
|
||||
}
|
||||
.acl-list-item {
|
||||
display: block;
|
||||
width: 150px;
|
||||
height: 30px;
|
||||
border: 1px solid #cccccc;
|
||||
margin: 5px;
|
||||
float: left;
|
||||
}
|
||||
.acl-list-item img {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
float: left;
|
||||
margin: 4px;
|
||||
}
|
||||
.acl-list-item p {
|
||||
height: 12px;
|
||||
font-size: 10px;
|
||||
margin: 0px;
|
||||
padding: 2px 0px 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.acl-list-item a {
|
||||
font-size: 8px;
|
||||
display: block;
|
||||
width: 40px;
|
||||
height: 10px;
|
||||
float: left;
|
||||
color: #999999;
|
||||
background-color: #cccccc;
|
||||
background-position: 3px 3px;
|
||||
background-repeat: no-repeat;
|
||||
margin-right: 5px;
|
||||
-webkit-border-radius: 2px ;
|
||||
-moz-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
#acl-wrapper a:hover {
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
}
|
||||
.acl-button-show {
|
||||
background-image: url("../../../../images/show_off.png");
|
||||
}
|
||||
.acl-button-hide {
|
||||
background-image: url("../../../../images/hide_off.png");
|
||||
}
|
||||
.acl-button-show.selected {
|
||||
color: #000000;
|
||||
background-color: #9ade00;
|
||||
background-image: url("../../../../images/show_on.png");
|
||||
}
|
||||
.acl-button-hide.selected {
|
||||
color: #000000;
|
||||
background-color: #ff4141;
|
||||
background-image: url("../../../../images/hide_on.png");
|
||||
}
|
||||
.acl-list-item.groupshow {
|
||||
border-color: #9ade00;
|
||||
}
|
||||
.acl-list-item.grouphide {
|
||||
border-color: #ff4141;
|
||||
}
|
||||
/** /acl **/
|
||||
/** tab buttons 14618a**/
|
||||
/** tab buttons **/
|
||||
/*marker*/
|
||||
ul.tabs {
|
||||
list-style-type: none;
|
||||
padding-bottom: 10px;
|
||||
font-size: 13px;
|
||||
width: 805px;
|
||||
}
|
||||
ul.tabs li {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
}
|
||||
ul.tabs li .active {
|
||||
background-color: #3465A4;
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 2px 2px 2px #CFCFCF;
|
||||
margin-left: 5px;
|
||||
}
|
||||
/**
|
||||
* Form fields
|
||||
*/
|
||||
.field {
|
||||
margin-bottom: 10px;
|
||||
padding-bottom: 10px;
|
||||
overflow: auto;
|
||||
width: 100%;
|
||||
}
|
||||
.field label {
|
||||
float: left;
|
||||
width: 200px;
|
||||
}
|
||||
.field input, .field textarea {
|
||||
width: 400px;
|
||||
}
|
||||
.field textarea {
|
||||
height: 100px;
|
||||
}
|
||||
.field .field_help {
|
||||
display: block;
|
||||
margin-left: 200px;
|
||||
color: #666666;
|
||||
}
|
||||
.field .onoff {
|
||||
float: left;
|
||||
width: 80px;
|
||||
}
|
||||
.field .onoff a {
|
||||
display: block;
|
||||
border: 1px solid #666666;
|
||||
background-image: url("../../../../images/onoff.jpg");
|
||||
background-repeat: no-repeat;
|
||||
padding: 4px 2px 2px 2px;
|
||||
height: 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.field .onoff .off {
|
||||
border-color: #666666;
|
||||
padding-left: 40px;
|
||||
background-position: left center;
|
||||
background-color: #cccccc;
|
||||
color: #666666;
|
||||
text-align: right;
|
||||
}
|
||||
.field .onoff .on {
|
||||
border-color: #204A87;
|
||||
padding-right: 40px;
|
||||
background-position: right center;
|
||||
background-color: #D7E3F1;
|
||||
color: #204A87;
|
||||
text-align: left;
|
||||
}
|
||||
.field .hidden {
|
||||
display: none!important;
|
||||
}
|
||||
.field.radio .field_help {
|
||||
margin-left: 0px;
|
||||
}
|
||||
#directory-search-form{
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
#profile-edit-links-end {
|
||||
clear: both;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
|
||||
|
||||
#profile-edit-links li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.profile-edit-side-div {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#register-form label,
|
||||
#profile-edit-form label {
|
||||
width: 300px; float: left;
|
||||
}
|
||||
|
||||
.required {
|
||||
display: inline;
|
||||
color: #B20202;
|
||||
}
|
||||
|
||||
/* oauth */
|
||||
.oauthapp {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
border-bottom: 2px solid #cccccc;
|
||||
padding-bottom: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.oauthapp img {
|
||||
float: left;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
margin: 10px;
|
||||
}
|
||||
.oauthapp img.noicon {
|
||||
background-image: url("../../../../images/icons/48/plugin.png");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.oauthapp a {
|
||||
float: left;
|
||||
}
|
||||
/* contacts */
|
||||
.contact-entry-wrapper {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
float: left;
|
||||
}
|
||||
/* photo */
|
||||
.photo {
|
||||
box-shadow: 2px 2px 5px 0px #000000;
|
||||
margin: 0px;
|
||||
border-radius: 10px;
|
||||
height: 145px !important;
|
||||
width: 145px !important;
|
||||
}
|
||||
.lframe {
|
||||
float: left;
|
||||
/*margin: 0px 10px 10px 0px;*/
|
||||
}
|
||||
/* profile match wrapper */
|
||||
.profile-match-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.profile-match-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.profile-match-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.profile-match-wrapper {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
|
||||
.contact-photo-menu-button {
|
||||
position: relative;
|
||||
background-image: url("../../../../images/icons/16/menu.png");
|
||||
background-position: top left;
|
||||
background-repeat: no-repeat;
|
||||
margin: 0px 0px -16px 0px;
|
||||
padding: 0px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
top: -16px; left:0px;
|
||||
overflow: hidden;
|
||||
text-indent: 40px;
|
||||
display: none;
|
||||
|
||||
}
|
||||
.contact-photo-menu {
|
||||
width: 11em;
|
||||
border: 3px solid #364e59;
|
||||
color: #2d2d2d;
|
||||
background: #FFFFFF;
|
||||
/* position: absolute;*/
|
||||
position: relative;
|
||||
left: 0px; top: 0px;
|
||||
display: none;
|
||||
z-index: 10000;
|
||||
}
|
||||
.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
|
||||
.contact-photo-menu li a {
|
||||
display: block;
|
||||
padding: 5px 10px;
|
||||
color: #2d2d2d;
|
||||
text-decoration: none;
|
||||
}
|
||||
.contact-photo-menu li a:hover {
|
||||
background-color: #bdcdd4;
|
||||
}
|
||||
|
||||
/* page footer */
|
||||
footer {
|
||||
height: 100px;
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 1px solid #D2D2D2;
|
||||
padding-left: 9px;
|
||||
margin: 0 0 0 .8ex;
|
||||
color: #777;
|
||||
}
|
||||
.oembed {
|
||||
|
||||
font-weight: bold;
|
||||
}
|
||||
.aprofile dt{
|
||||
box-shadow: 1px 1px 5px 0;
|
||||
color: #666666;
|
||||
margin: 15px 0 5px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
/* ================== */
|
||||
/* = Contacts Block = */
|
||||
/* ================== */
|
||||
|
||||
.contact-block-img {
|
||||
width: 55px;
|
||||
height: 55px;
|
||||
padding-right: 3px;
|
||||
}
|
||||
.contact-block-div {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.contact-block-textdiv { width: 150px; height: 34px; float: left; }
|
||||
#contact-block-end { clear: both; }
|
||||
|
||||
#group-edit-wrapper {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#group-members-end {
|
||||
clear: both;
|
||||
}
|
||||
#group-edit-desc {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
/*
|
||||
#group-separator,
|
||||
#prof-separator { display: none;}
|
||||
*/
|
||||
#prof-members-end{
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
|
||||
margin-bottom: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#prvmail-submit {
|
||||
float: right;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#prvmail-subject
|
||||
{
|
||||
background: none repeat scroll 0 0 #FFFFFF;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-weight: bold;
|
||||
height: 20px;
|
||||
margin: 0 0 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
#prvmail-form{
|
||||
width: 597px;
|
||||
}
|
||||
|
||||
#prvmail-upload-wrapper,
|
||||
#prvmail-link-wrapper,
|
||||
#prvmail-rotator-wrapper {
|
||||
float: left;
|
||||
margin-top: 10px;
|
||||
margin-right: 10px;
|
||||
width: 24px;
|
||||
}
|
||||
|
||||
#prvmail-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-list-sender,
|
||||
.mail-list-detail {
|
||||
float: left;
|
||||
}
|
||||
.mail-list-detail {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.mail-list-subject {
|
||||
font-size: 1.1em;
|
||||
margin-top: 10px;
|
||||
}
|
||||
a.mail-list-link {
|
||||
display: block;
|
||||
font-size: 1.3em;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
/*
|
||||
*a.mail-list-link:hover {
|
||||
* background-color: #15607B;
|
||||
* color: #F5F6FB;
|
||||
*}
|
||||
*/
|
||||
|
||||
.mail-list-outside-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-list-outside-wrapper {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.mail-list-delete-wrapper {
|
||||
float: right;
|
||||
margin-right: 30px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.mail-list-delete-icon {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.mail-conv-sender,
|
||||
.mail-conv-detail {
|
||||
float: left;
|
||||
}
|
||||
.mail-conv-detail {
|
||||
margin-left: 20px;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.mail-conv-subject {
|
||||
font-size: 1.4em;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.mail-conv-outside-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-conv-outside-wrapper {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.mail-conv-delete-wrapper {
|
||||
float: right;
|
||||
margin-right: 30px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
.mail-conv-break {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-conv-delete-icon {
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* ========== */
|
||||
/* = Events = */
|
||||
/* ========== */
|
||||
.eventcal {
|
||||
float: left;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.vevent {
|
||||
|
||||
}
|
||||
.vevent .event-description, .vevent .event-location {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.vevent .event-start {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
#new-event-link {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.edit-event-link, .plink-event-link {
|
||||
float: left;
|
||||
margin-top: 4px;
|
||||
margin-right: 4px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.event-description:before {
|
||||
content: url('../../../../images/calendar.png');
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.event-start, .event-end {
|
||||
margin-left: 10px;
|
||||
width: 330px;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.event-start .dtstart, .event-end .dtend {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.event-list-date {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.prevcal, .nextcal {
|
||||
float: left;
|
||||
margin-left: 32px;
|
||||
margin-right: 32px;
|
||||
margin-top: 64px;
|
||||
}
|
||||
.event-calendar-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
.calendar {
|
||||
font-family: Courier, monospace;
|
||||
}
|
||||
.calendar.eventcal a {
|
||||
color: #3465A4;
|
||||
}
|
||||
.today {
|
||||
font-weight: bold;
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
.settings-block {
|
||||
border: 1px solid #AAA;
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.app-title {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#identity-manage-desc {
|
||||
margin-top:15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#identity-manage-choose {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#identity-submit {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#photo-prev-link, #photo-next-link {
|
||||
padding: 10px;
|
||||
float: left;
|
||||
}
|
||||
.lightbox{
|
||||
float: left;
|
||||
}
|
||||
|
||||
#photo-photo {
|
||||
float: left;
|
||||
}
|
||||
#photo-like-div .wall-item-like-buttons {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
.comment-edit-text-empty {
|
||||
margin: 10px 0 0;
|
||||
width: 85%;
|
||||
}
|
||||
.comment-edit-photo {
|
||||
margin: 10px 0 0;
|
||||
}
|
||||
.wall-item-like-buttons .icon.like {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#photo-photo-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.tabs .comment-wwedit-wrapper {
|
||||
display: block;
|
||||
margin-top: 30px;
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.profile-match-photo {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
.profile-match-name {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 120px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.profile-match-break,
|
||||
.profile-match-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.profile-match-connect {
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.profile-match-wrapper {
|
||||
float: left;
|
||||
padding: 10px;
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
scroll: auto;
|
||||
}
|
||||
#profile-match-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* ============= */
|
||||
/* = Directory = */
|
||||
/* ============= */
|
||||
/* contacts menu */
|
||||
.contact-photo-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-photo-menu-button {
|
||||
display: none;
|
||||
/* position: absolute; */
|
||||
/* position: absolute; */
|
||||
left: 0px;
|
||||
top: -16px;
|
||||
}
|
||||
.contact-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.contact-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo-menu-button {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
.directory-item {
|
||||
float: left;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
.directory-item .contact-photo {
|
||||
width: 175px;
|
||||
height: 175px;
|
||||
}
|
||||
.directory-item .contact-photo img {
|
||||
width: 175px;
|
||||
height: 175px;
|
||||
}
|
||||
.contact-name {
|
||||
text-align: left;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
}
|
||||
.contact-details {
|
||||
color: #999999;
|
||||
}
|
||||
#side-bar-photos-albums li{
|
||||
list-style-type: disc;
|
||||
}
|
||||
#side-bar-photos-albums ul li{
|
||||
margin-left: 30px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
#side-bar-photos-albums{
|
||||
margin-top: 15px;
|
||||
}
|
||||
.photo-top-photo, .photo-album-photo {
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
.photo-album-image-wrapper, .photo-top-image-wrapper {
|
||||
float: left;
|
||||
-moz-box-shadow: 0 0 5px #888;
|
||||
-webkit-box-shadow: 0 0 5px #888;
|
||||
box-shadow: 0 0 5px #888;
|
||||
background-color: #000;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
padding-bottom: 20px;
|
||||
position: relative;
|
||||
margin: 0 10px 10px 0;
|
||||
width: 200px; height: 140px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.photo-top-album-name {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
padding-left: 3px;
|
||||
background-color: #EEE;
|
||||
}
|
||||
.photo-top-album-link{
|
||||
color: #3465A4;
|
||||
}
|
||||
.photo-top-album-img{
|
||||
|
||||
}
|
||||
/*.photo-top-image-wrapper {
|
||||
position: relative;
|
||||
float: left;
|
||||
margin-top: 15px;
|
||||
margin-right: 15px;
|
||||
width: 200px; height: 200px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.photo-top-album-name {
|
||||
width: 100%;
|
||||
min-height: 2em;
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
padding: 0px 3px;
|
||||
padding-top: 0.5em;
|
||||
background-color: rgb(255, 255, 255);
|
||||
}*/
|
||||
#photo-top-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#photo-top-links {
|
||||
margin-bottom: 30px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
#photos-upload-newalbum-div {
|
||||
float: left;
|
||||
width: 175px;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -185,6 +185,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -1,2639 +1,79 @@
|
|||
/**
|
||||
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
|
||||
* Additional Changes: Michael Vogel <icarus@dabo.de>
|
||||
**/
|
||||
|
||||
/* ========= */
|
||||
/* = Admin = */
|
||||
/* ========= */
|
||||
|
||||
#adminpage {
|
||||
/* width: 80%;*/
|
||||
}
|
||||
|
||||
#pending-update {
|
||||
float:right;
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
background-color: #FF0000;
|
||||
padding: 0em 0.3em;
|
||||
}
|
||||
|
||||
.admin.linklist {
|
||||
border: 0px; padding: 0px;
|
||||
}
|
||||
|
||||
.admin.link {
|
||||
list-style-position: inside;
|
||||
font-size: 1em;
|
||||
padding: 5px;
|
||||
width: 100px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
#adminpage dl {
|
||||
clear: left;
|
||||
margin-bottom: 2px;
|
||||
padding-bottom: 2px;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
|
||||
#adminpage dt {
|
||||
width: 200px;
|
||||
float: left;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#adminpage dd {
|
||||
margin-left: 200px;
|
||||
}
|
||||
#adminpage h3 {
|
||||
border-bottom: 1px solid #898989;
|
||||
margin-bottom: 5px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#adminpage .submit {
|
||||
clear:left;
|
||||
}
|
||||
|
||||
#adminpage #pluginslist {
|
||||
margin: 0px; padding: 0px;
|
||||
}
|
||||
|
||||
#adminpage .plugin {
|
||||
list-style: none;
|
||||
display: block;
|
||||
/* border: 1px solid #888888; */
|
||||
padding: 1em;
|
||||
margin-bottom: 5px;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
#adminpage .toggleplugin {
|
||||
float:left;
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
|
||||
#adminpage table th { text-align: left;}
|
||||
#adminpage td .icon { float: left;}
|
||||
#adminpage table#users img { width: 16px; height: 16px; }
|
||||
#adminpage table tr:hover { background-color: #eeeeee; }
|
||||
#adminpage .selectall { text-align: right; }
|
||||
/* icons */
|
||||
|
||||
.icon.contacts {
|
||||
background-image: url("../diabook-aerith/icons/contacts.png");}
|
||||
.icon.notifications {
|
||||
background-image: url("../diabook-aerith/icons/notifications.png");}
|
||||
.icon.notify {
|
||||
background-image: url("../diabook-aerith/icons/notify.png");}
|
||||
.icon.messages {
|
||||
background-image: url("../diabook-aerith/icons/messages.png");}
|
||||
.icon.community {
|
||||
background-image: url("../diabook-aerith/icons/community.png");}
|
||||
|
||||
.icon.drop { background-image: url("../diabook-aerith/icons/drop.png");}
|
||||
.icon.drophide { background-image: url("../diabook-aerith/icons/drop.png");}
|
||||
.icon.dislike { background-image: url("../diabook-aerith/icons/dislike.png");}
|
||||
.icon.like { background-image: url("../diabook-aerith/icons/like.png");}
|
||||
.icon.pencil { background-image: url("../diabook-aerith/icons/pencil.png");}
|
||||
.icon.recycle { background-image: url("../diabook-aerith/icons/recycle.png");}
|
||||
.icon.remote-link { background-image: url("../diabook-aerith/icons/remote.png");}
|
||||
.icon.tagged { background-image: url("../diabook-aerith/icons/tagged.png");}
|
||||
.icon.file-as { background-image: url("../diabook-aerith/icons/file_as.png");}
|
||||
.star-item.icon.unstarred { background-image: url("../diabook-aerith/icons/unstarred.png");}
|
||||
.star-item.icon.starred { background-image: url("../diabook-aerith/icons/starred.png");}
|
||||
.icon.link { background-image: url("../diabook-aerith/icons/link.png");}
|
||||
.icon.lock { background-image: url("../diabook-aerith/icons/lock.png");}
|
||||
.icon.unlock { background-image: url("../diabook-aerith/icons/unlock.png");}
|
||||
.icon.language { background-image: url("../diabook-aerith/icons/language.png");}
|
||||
|
||||
|
||||
.camera { background-image: url("../diabook-aerith/icons/camera.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.attach { background-image: url("../diabook-aerith/icons/attach.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video2 { background-image: url("../diabook-aerith/icons/video.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../diabook-aerith/icons/video.png");
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../diabook-aerith/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio { background-image: url("../diabook-aerith/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.weblink { background-image: url("../diabook-aerith/icons/weblink.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.globe { background-image: url("../diabook-aerith/icons/globe.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.unglobe { background-image: url("../diabook-aerith/icons/unglobe.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.edit {background-image: url("../diabook-aerith/icons/pencil2.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
|
||||
|
||||
|
||||
|
||||
|
||||
.article { background-position: -50px 0px;}
|
||||
/*.audio { background-position: -70px 0px;}*/
|
||||
.block { background-position: -90px 0px;}
|
||||
/*.drop { background-position: -110px 0px;}*/
|
||||
/*.drophide { background-position: -130px 0px;}*/
|
||||
/*.edit { background-position: -150px 0px;}*/
|
||||
/*.camera { background-position: -170px 0px;}*/
|
||||
/*.dislike { background-position: -190px 0px;}*/
|
||||
/*.like { background-position: -210px 0px;}*/
|
||||
/*.link { background-position: -230px 0px;}*/
|
||||
|
||||
/*.globe { background-position: -50px -20px;}*/
|
||||
/*.noglobe { background-position: -70px -20px;}*/
|
||||
.no { background-position: -90px -20px;}
|
||||
.pause { background-position: -110px -20px;}
|
||||
.play { background-position: -130px -20px;}
|
||||
/*.pencil { background-position: -150px -20px;}*/
|
||||
.small-pencil { background-position: -170px -20px;}
|
||||
/*.recycle { background-position: -190px -20px;}*/
|
||||
/*.remote-link { background-position: -210px -20px;}*/
|
||||
.share { background-position: -230px -20px;}
|
||||
|
||||
.tools { background-position: -50px -40px;}
|
||||
/*.lock { background-position: -70px -40px;}*/
|
||||
|
||||
/*.video { background-position: -110px -40px;}*/
|
||||
.youtube { background-position: -130px -40px;}
|
||||
|
||||
/*.attach { background-position: -190px -40px;}*/
|
||||
/*.language { background-position: -210px -40px;}*/
|
||||
|
||||
|
||||
.icon.on { background-image: url("../diabook-aerith/icons/toogle_on.png"); background-repeat: no-repeat;}
|
||||
.icon.off { background-image: url("../diabook-aerith/icons/toogle_off.png"); background-repeat: no-repeat;}
|
||||
.prev { background-position: -90px -60px;}
|
||||
.next { background-position: -110px -60px;}
|
||||
/*.tagged { background-position: -130px -60px;}*/
|
||||
|
||||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../../images/content-types.png');
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
.type-image { background-position: -20px 0px; }
|
||||
.type-audio { background-position: -40px 0px; }
|
||||
.type-text { background-position: -60px 0px; }
|
||||
.type-unkn { background-position: -80px 0px; }
|
||||
|
||||
.icon.drop, .icon.drophide {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.icon {
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
/*background-image: url('icons.png');*/
|
||||
}
|
||||
|
||||
.icon {
|
||||
background-color: transparent ;
|
||||
background-repeat: no-repeat;
|
||||
/* background-position: left center; */
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
text-indent: -9999px;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
.icon.border.camera{
|
||||
background-image: url("../diabook-aerith/icons/camera.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.icon.border.link{
|
||||
background-image: url("../diabook-aerith/icons/weblink.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.icon.text {
|
||||
text-indent: 0px;
|
||||
}
|
||||
.icon.s10 {
|
||||
min-width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
.icon.s10.notify {
|
||||
background-image: url("../../../../images/icons/10/notify_off.png");
|
||||
}
|
||||
.icon.s10.gear {
|
||||
background-image: url("../../../../images/icons/10/gear.png");
|
||||
}
|
||||
.icon.s10.add {
|
||||
background-image: url("../../../../images/icons/10/add.png");
|
||||
}
|
||||
.icon.s10.delete {
|
||||
background-image: url("../../../../images/icons/10/delete.png");
|
||||
}
|
||||
.icon.s10.edit {
|
||||
background-image: url("../../../../images/icons/10/edit.png");
|
||||
}
|
||||
.icon.s10.star {
|
||||
background-image: url("../../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s10.menu {
|
||||
background-image: url("../../../../images/icons/10/menu.png");
|
||||
}
|
||||
.icon.s10.link {
|
||||
background-image: url("../../../../images/icons/10/link.png");
|
||||
}
|
||||
.icon.s10.lock {
|
||||
background-image: url("../../../../images/icons/10/lock.png");
|
||||
}
|
||||
.icon.s10.unlock {
|
||||
background-image: url("../../../../images/icons/10/unlock.png");
|
||||
}
|
||||
.icon.s10.text {
|
||||
padding: 2px 0px 0px 15px;
|
||||
font-size: 10px;
|
||||
}
|
||||
.icon.s16 {
|
||||
min-width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.icon.s16.notify {
|
||||
background-image: url("../../../../images/icons/16/notify_off.png");
|
||||
}
|
||||
.icon.s16.gear {
|
||||
background-image: url("../../../../images/icons/16/gear.png");
|
||||
}
|
||||
.icon.s16.add {
|
||||
background-image: url("../../../../images/icons/16/add.png");
|
||||
}
|
||||
.icon.s16.delete {
|
||||
background-image: url("../../../../images/icons/16/delete.png");
|
||||
}
|
||||
/*.icon.s16.edit {
|
||||
background-image: url("../../../../images/icons/16/edit.png");
|
||||
}*/
|
||||
.icon.s16.star {
|
||||
background-image: url("../../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s16.menu {
|
||||
background-image: url("../../../../images/icons/16/menu.png");
|
||||
}
|
||||
/*.icon.s16.link {
|
||||
background-image: url("../../../../images/icons/16/link.png");
|
||||
}*/
|
||||
.icon.s16.lock {
|
||||
background-image: url("../../../../images/icons/16/lock.png");
|
||||
}
|
||||
.icon.s16.unlock {
|
||||
background-image: url("../../../../images/icons/16/unlock.png");
|
||||
}
|
||||
.icon.s16.text {
|
||||
padding: 4px 0px 0px 20px;
|
||||
font-size: 10px;
|
||||
}
|
||||
.icon.s22 {
|
||||
min-width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
.icon.s22.notify {
|
||||
background-image: url("../../../../images/icons/22/notify_off.png");
|
||||
}
|
||||
.icon.s22.gear {
|
||||
background-image: url("../../../../images/icons/22/gear.png");
|
||||
}
|
||||
.icon.s22.add {
|
||||
background-image: url("../../../../images/icons/22/add.png");
|
||||
}
|
||||
.icon.s22.delete {
|
||||
background-image: url("../../../../images/icons/22/delete.png");
|
||||
}
|
||||
.icon.s22.edit {
|
||||
background-image: url("../../../../images/icons/22/edit.png");
|
||||
}
|
||||
.icon.s22.star {
|
||||
background-image: url("../../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s22.menu {
|
||||
background-image: url("../../../../images/icons/22/menu.png");
|
||||
}
|
||||
.icon.s22.link {
|
||||
background-image: url("../../../../images/icons/22/link.png");
|
||||
}
|
||||
.icon.s22.lock {
|
||||
background-image: url("../../../../images/icons/22/lock.png");
|
||||
}
|
||||
.icon.s22.unlock {
|
||||
background-image: url("../../../../images/icons/22/unlock.png");
|
||||
}
|
||||
.icon.s22.text {
|
||||
padding: 10px 0px 0px 25px;
|
||||
width: 200px;
|
||||
}
|
||||
.icon.s48 {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.icon.s48.notify {
|
||||
background-image: url("../../../../images/icons/48/notify_off.png");
|
||||
}
|
||||
.icon.s48.gear {
|
||||
background-image: url("../../../../images/icons/48/gear.png");
|
||||
}
|
||||
.icon.s48.add {
|
||||
background-image: url("../../../../images/icons/48/add.png");
|
||||
}
|
||||
.icon.s48.delete {
|
||||
background-image: url("../../../../images/icons/48/delete.png");
|
||||
}
|
||||
.icon.s48.edit {
|
||||
background-image: url("../../../../images/icons/48/edit.png");
|
||||
}
|
||||
.icon.s48.star {
|
||||
background-image: url("../../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s48.menu {
|
||||
background-image: url("../../../../images/icons/48/menu.png");
|
||||
}
|
||||
.icon.s48.link {
|
||||
background-image: url("../../../../images/icons/48/link.png");
|
||||
}
|
||||
.icon.s48.lock {
|
||||
background-image: url("../../../../images/icons/48/lock.png");
|
||||
}
|
||||
.icon.s48.unlock {
|
||||
background-image: url("../../../../images/icons/48/unlock.png");
|
||||
}
|
||||
|
||||
#contact-edit-links ul {
|
||||
list-style: none;
|
||||
list-style-type: none;
|
||||
}
|
||||
@import url('style-profile.css');
|
||||
|
||||
.hide-comments-outer {
|
||||
margin-left: 80px;
|
||||
margin-bottom: 5px;
|
||||
width: 675px;
|
||||
border-bottom: 1px solid #BDCDD4;
|
||||
border-top: 1px solid #BDCDD4;
|
||||
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
/* global */
|
||||
body {
|
||||
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 13px;
|
||||
background-color: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 50px auto auto;
|
||||
display: table;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #333333;
|
||||
/* color: #3e3e8c; */
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
/* color: blue; */
|
||||
text-decoration: underline
|
||||
}
|
||||
|
||||
.wall-item-name-link {
|
||||
/* float: left;*/
|
||||
}
|
||||
|
||||
.wall-item-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.left {
|
||||
float: left;
|
||||
}
|
||||
.right {
|
||||
float: right;
|
||||
}
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
.clear {
|
||||
clear: both;
|
||||
}
|
||||
.fakelink {
|
||||
color: #3465A4;
|
||||
/* color: #3e3e8c; */
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.fakelink:hover {
|
||||
/* color: blue; */
|
||||
/*color: #005c94; */
|
||||
text-decoration: underline;
|
||||
}
|
||||
code {
|
||||
font-family: Courier, monospace;
|
||||
white-space: pre;
|
||||
display: block;
|
||||
overflow: auto;
|
||||
border: 1px solid #444;
|
||||
background: #EEE;
|
||||
color: #444;
|
||||
padding: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
#panel {
|
||||
position: absolute;
|
||||
width: 12em;
|
||||
background: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 0px;
|
||||
padding: 1em;
|
||||
list-style: none;
|
||||
border: 3px solid #364e59;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
/* tool */
|
||||
.tool {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
padding: 3px;
|
||||
}
|
||||
#saved-search-ul .tool:hover,
|
||||
#nets-sidebar .tool:hover,
|
||||
#sidebar-group-list .tool:hover {
|
||||
background: #EEE;
|
||||
}
|
||||
.tool .label {
|
||||
float: left;
|
||||
}
|
||||
.tool .action {
|
||||
float: right;
|
||||
}
|
||||
.tool a {
|
||||
color: ##3F8FBA;
|
||||
}
|
||||
.tool a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
/* popup notifications */
|
||||
div.jGrowl div.notice {
|
||||
background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;
|
||||
color: #ffffff;
|
||||
padding-left: 58px;
|
||||
}
|
||||
div.jGrowl div.info {
|
||||
background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;
|
||||
color: #ffffff;
|
||||
padding-left: 58px;
|
||||
}
|
||||
/* header */
|
||||
header {
|
||||
position: fixed;
|
||||
left: 0%;
|
||||
right: 80%;
|
||||
top: 0px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
width: 22%;
|
||||
height: 32px;
|
||||
background: #ff500f;
|
||||
background-color: #ff500f;
|
||||
z-index: 100;
|
||||
border-bottom: 1px;
|
||||
border-bottom-color: black;
|
||||
border-bottom-style: inset;
|
||||
background-image: linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -o-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -moz-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -webkit-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -ms-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
|
||||
background-image: -webkit-gradient(
|
||||
linear,
|
||||
left bottom,
|
||||
left top,
|
||||
color-stop(0.26, rgb(215,227,241)),
|
||||
color-stop(0.82, rgb(255,255,255))
|
||||
);
|
||||
}
|
||||
header #site-location {
|
||||
display: none;
|
||||
}
|
||||
header #banner {
|
||||
overflow: hidden;
|
||||
text-align: left;
|
||||
width: 82%%;
|
||||
margin-left: 25%;
|
||||
}
|
||||
header #banner a,
|
||||
header #banner a:active,
|
||||
header #banner a:visited,
|
||||
header #banner a:link,
|
||||
header #banner a:hover {
|
||||
color: #1f1f1f;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
vertical-align: middle;
|
||||
font-weight: bolder;
|
||||
margin-left: 3px;
|
||||
}
|
||||
header #banner #logo-img {
|
||||
height: 25px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
header #banner #logo-text {
|
||||
font-size: 20px;
|
||||
position: absolute;
|
||||
top: 10%;
|
||||
}
|
||||
/* nav */
|
||||
nav {
|
||||
width: 80%;
|
||||
height: 32px;
|
||||
position: fixed;
|
||||
left: 22%;
|
||||
top: 0px;
|
||||
padding: 0px;
|
||||
background: #ff500f;
|
||||
color: #1f1f1f;
|
||||
z-index: 99;
|
||||
border-bottom: 1px;
|
||||
border-bottom-color: black;
|
||||
border-bottom-style: inset;
|
||||
background-image: linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -o-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -moz-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -webkit-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -ms-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
|
||||
background-image: -webkit-gradient(
|
||||
linear,
|
||||
left bottom,
|
||||
left top,
|
||||
color-stop(0.26, rgb(215,227,241)),
|
||||
color-stop(0.82, rgb(255,255,255))
|
||||
);
|
||||
}
|
||||
nav a,
|
||||
nav a:active,
|
||||
nav a:visited,
|
||||
nav a:link,
|
||||
nav a:hover {
|
||||
color: #1f1f1f;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
}
|
||||
nav #banner {
|
||||
overflow: hidden;
|
||||
/*text-align: center;*/
|
||||
width: 100%;
|
||||
}
|
||||
nav #banner a,
|
||||
nav #banner a:active,
|
||||
nav #banner a:visited,
|
||||
nav #banner a:link,
|
||||
nav #banner a:hover {
|
||||
color: #1f1f1f;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
nav #banner #logo-img {
|
||||
height: 22px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
nav #banner #logo-text {
|
||||
font-size: 22px;
|
||||
}
|
||||
nav #navbar{
|
||||
}
|
||||
nav ul {
|
||||
margin: 0px;
|
||||
padding: 0px 20px;
|
||||
}
|
||||
nav ul li {
|
||||
list-style: none;
|
||||
margin: 0px;
|
||||
/* padding: 1px 1px 3px 1px; */
|
||||
float: left;
|
||||
}
|
||||
nav ul li .menu-popup {
|
||||
left: 0px;
|
||||
right: auto;
|
||||
}
|
||||
|
||||
nav #logo-img {
|
||||
height: 25px;
|
||||
margin-top: 4px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
nav #logo-text {
|
||||
font-size: 22px;
|
||||
margin-top: 3px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
nav .nav-menu-search {
|
||||
position: relative;
|
||||
|
||||
margin: 4px 17px;
|
||||
margin-right: 0px;
|
||||
height: 17px;
|
||||
width: 180px;
|
||||
|
||||
}
|
||||
|
||||
nav #search-box #search-text {
|
||||
background-image: url('icons/lupe.png');
|
||||
background-repeat:no-repeat;
|
||||
padding-left:20px;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
border-bottom-left-radius: 15px;
|
||||
}
|
||||
|
||||
|
||||
nav .nav-menu-icon {
|
||||
position: relative;
|
||||
height: 22px;
|
||||
padding: 5px;
|
||||
margin: 0px 5px;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
nav .nav-menu-icon:hover {
|
||||
position: relative;
|
||||
height: 22px;
|
||||
padding: 5px;
|
||||
margin: 0px 5px;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
|
||||
nav .nav-menu-icon.selected {
|
||||
background-color: #fff;
|
||||
}
|
||||
nav .nav-menu-icon img {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
nav .nav-menu-icon .nav-notify {
|
||||
top: 3px;
|
||||
}
|
||||
/*marker*/
|
||||
nav .nav-menu {
|
||||
position: relative;
|
||||
height: 16px;
|
||||
padding: 5px;
|
||||
margin: 3px 15px 0px;
|
||||
font-size: 15px;
|
||||
/*border-bottom: 3px solid #364A84;*/
|
||||
}
|
||||
nav .nav-menu.selected {
|
||||
/*border-bottom: 3px solid #9eabb0;*/
|
||||
}
|
||||
nav .nav-notify {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: #fff;
|
||||
/* background-color: #19aeff; */
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-size: 10px;
|
||||
font-weight: 900;
|
||||
padding: 1px 4px;
|
||||
top: 0px;
|
||||
right: -6px;
|
||||
min-width: 10px;
|
||||
text-align: center;
|
||||
border: 1px solid black;
|
||||
}
|
||||
nav .nav-notify.show {
|
||||
display: block;
|
||||
}
|
||||
nav #nav-help-link,
|
||||
nav #nav-search-link,
|
||||
nav #nav-directory-link,
|
||||
nav #nav-apps-link,
|
||||
nav #nav-site-linkmenu,
|
||||
nav #nav-home-link,
|
||||
nav #nav-user-linkmenu
|
||||
{
|
||||
float: right;
|
||||
}
|
||||
nav #nav-user-linkmenu{
|
||||
margin-right: 0px;
|
||||
}
|
||||
nav #nav-home-link, #nav-directory-link, #nav-apps-link{
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
font-weight: bold;
|
||||
margin: 3px 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
nav #nav-directory-link{
|
||||
margin-right: 0px;
|
||||
}
|
||||
nav #nav-home-link{
|
||||
margin-left: 0px;
|
||||
}
|
||||
nav #nav-help-link .menu-popup,
|
||||
nav #nav-search-link .menu-popup,
|
||||
nav #nav-directory-link .menu-popup,
|
||||
nav #nav-apps-link .menu-popup,
|
||||
nav #nav-site-linkmenu .menu-popup {
|
||||
right: 0px;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
|
||||
background-image: url("../diabook-aerith/icons/messages.png");
|
||||
}
|
||||
|
||||
/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
|
||||
background-image: url("../diabook-aerith/icons/notify.png");
|
||||
}
|
||||
|
||||
nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
|
||||
background-image: url("../diabook-aerith/icons/contacts.png");
|
||||
}
|
||||
|
||||
nav #nav-apps-link.selected {
|
||||
background-color: #fff;
|
||||
moz-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
|
||||
#nav-notifications-mark-all {
|
||||
/* padding: 1px 1px 2px 26px; */
|
||||
/* border-bottom: 1px solid #364E59; */
|
||||
/* margin: 0px 0px 2px 0px;
|
||||
padding: 5px 10px; */
|
||||
}
|
||||
|
||||
#nav-notifications-see-all {
|
||||
/* padding: 1px 1px 2px 26px; */
|
||||
/* border-bottom: 1px solid #364E59; */
|
||||
/* margin: 0px 0px 2px 0px;
|
||||
padding: 5px 10px; */
|
||||
}
|
||||
|
||||
.notify-seen {
|
||||
background: none repeat scroll 0 0 #DDDDDD;
|
||||
}
|
||||
|
||||
ul.menu-popup {
|
||||
position: absolute;
|
||||
display: none;
|
||||
width: 11em;
|
||||
background: #fff;
|
||||
color: #2d2d2d;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
list-style: none;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
ul.menu-popup a {
|
||||
display: block;
|
||||
color: #2d2d2d;
|
||||
padding: 5px 10px;
|
||||
text-decoration: none;
|
||||
}
|
||||
ul.menu-popup a:hover {
|
||||
background-color: #3465A4; /*bdcdd4;*/
|
||||
color: #fff;
|
||||
}
|
||||
ul.menu-popup .menu-sep {
|
||||
border-top: 1px solid #9eabb0;
|
||||
}
|
||||
ul.menu-popup li {
|
||||
float: none;
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
ul.menu-popup li img {
|
||||
float: left;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
ul.menu-popup .empty {
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
color: #9eabb0;
|
||||
}
|
||||
/* autocomplete popup */
|
||||
.acpopup {
|
||||
max-height: 150px;
|
||||
background-color: #ffffff;
|
||||
color: #2d2d2d;
|
||||
border: 1px solid #MenuBorder;
|
||||
overflow: auto;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
.acpopupitem {
|
||||
color: #2d2d2d;
|
||||
padding: 4px;
|
||||
clear: left;
|
||||
}
|
||||
.acpopupitem img {
|
||||
float: left;
|
||||
margin-right: 4px;
|
||||
}
|
||||
.acpopupitem.selected {
|
||||
background-color: #bdcdd4;
|
||||
}
|
||||
#nav-notifications-menu {
|
||||
width: 400px;
|
||||
max-height: 550px;
|
||||
overflow: auto;
|
||||
}
|
||||
/* #nav-notifications-menu a {
|
||||
display: inline;
|
||||
padding: 5px 0px;
|
||||
margin: 0px 0px 2px 0px;
|
||||
}
|
||||
#nav-notifications-menu li:hover {
|
||||
background-color: #bdcdd4;
|
||||
}*/
|
||||
|
||||
#nav-notifications-menu img {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
}
|
||||
#nav-notifications-menu .contactname {
|
||||
font-weight: bold;
|
||||
}
|
||||
#nav-notifications-menu .notif-when {
|
||||
font-size: 10px;
|
||||
color: #9eabb0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.notif-image {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
padding: 7px 7px 0px 0px;
|
||||
}
|
||||
|
||||
/*profile_side*/
|
||||
#profile_side {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
#ps-usericon{
|
||||
height: 25px
|
||||
}
|
||||
#ps-username{
|
||||
font-size: 1.17em;
|
||||
font-weight: bold;
|
||||
vertical-align: top;
|
||||
position: absolute;
|
||||
padding-top: 4px;
|
||||
padding-left: 5px;
|
||||
word-wrap: break-word;
|
||||
width: 130px;
|
||||
}
|
||||
#ps-username:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
.menu-profile-side{
|
||||
list-style: none;
|
||||
padding-left: 0px;
|
||||
min-height: 0px;
|
||||
}
|
||||
.menu-profile-list{
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
padding-left: 16px;
|
||||
min-height: 16px;
|
||||
list-style: none;
|
||||
}
|
||||
.menu-profile-list:hover{
|
||||
background: #EEE;
|
||||
}
|
||||
.menu-profile-list-item{
|
||||
padding-left: 5px;
|
||||
}
|
||||
.menu-profile-list-item:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
/*http://prothemedesign.com/circular-icons/*/
|
||||
.menu-profile-list.home{
|
||||
background: url("../diabook-aerith/icons/home.png") no-repeat;
|
||||
}
|
||||
.menu-profile-list.photos{
|
||||
background: url("../diabook-aerith/icons/mess_side.png") no-repeat;
|
||||
}
|
||||
.menu-profile-list.events{
|
||||
background: url("../diabook-aerith/icons/events.png") no-repeat;
|
||||
}
|
||||
.menu-profile-list.notes{
|
||||
background: url("../diabook-aerith/icons/notes.png") no-repeat;
|
||||
}
|
||||
.menu-profile-list.foren{
|
||||
background: url("../diabook-aerith/icons/pubgroups.png") no-repeat;
|
||||
}
|
||||
.menu-profile-list.com_side{
|
||||
background: url("../diabook-aerith/icons/com_side.png") no-repeat;
|
||||
}
|
||||
|
||||
/* aside */
|
||||
/*marker*/
|
||||
aside {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 180px;
|
||||
padding: 0px 5px 0px 0px;
|
||||
border-right: 1px solid #D2D2D2;
|
||||
float: left;
|
||||
/* background: #F1F1F1; */
|
||||
}
|
||||
|
||||
aside .vcard .fn {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
aside .vcard .title {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
aside .vcard dl {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
}
|
||||
aside .vcard dt {
|
||||
float: left;
|
||||
margin-left: 0px;
|
||||
/*width: 35%;*/
|
||||
text-align: right;
|
||||
color: #999999;
|
||||
}
|
||||
aside .vcard dd {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
/*width: 60%;*/
|
||||
}
|
||||
aside #profile-extra-links ul {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
aside #profile-extra-links li {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
list-style: none;
|
||||
}
|
||||
aside #dfrn-request-link {
|
||||
display: block;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
color: #ffffff;
|
||||
background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
padding: 4px 2px 2px 35px;
|
||||
}
|
||||
aside #dfrn-request-link:hover {
|
||||
text-decoration: none;
|
||||
background-color: #36c;
|
||||
/* background-color: #19aeff; */
|
||||
}
|
||||
aside #profiles-menu {
|
||||
width: 20em;
|
||||
}
|
||||
aside #search-text {
|
||||
width: 150px;
|
||||
height: 17px;
|
||||
padding-left: 10px;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
border-bottom-left-radius: 15px;
|
||||
}
|
||||
aside #side-follow-url {
|
||||
width: 150px;
|
||||
}
|
||||
aside #side-peoplefind-url {
|
||||
width: 150px;
|
||||
}
|
||||
#contact-block {
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
}
|
||||
#contact-block .contact-block-h4 {
|
||||
float: left;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
#contact-block .allcontact-link {
|
||||
float: right;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
#contact-block .contact-block-content {
|
||||
clear: both;
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
}
|
||||
#contact-block .contact-block-link {
|
||||
float: left;
|
||||
margin: 0px 2px 2px 0px;
|
||||
}
|
||||
#contact-block .contact-block-link img {
|
||||
widht: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
#lost-password-link {
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
}
|
||||
/* widget */
|
||||
.widget {
|
||||
margin-bottom: 2em;
|
||||
/*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
|
||||
.action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
|
||||
/* font-size: 12px; */
|
||||
}
|
||||
/*marker*/
|
||||
.widget h3 {
|
||||
padding: 0px;
|
||||
margin: 2px;
|
||||
font-size: 1.05em;
|
||||
}
|
||||
.widget .action {
|
||||
opacity: 0.1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget input.action {
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget:hover .title .action {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget .tool:hover .action {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget .tool:hover .action.ticked {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget ul {
|
||||
padding: 0px;
|
||||
}
|
||||
.widget ul li {
|
||||
padding-left: 16px;
|
||||
min-height: 16px;
|
||||
list-style: none;
|
||||
}
|
||||
#side-bar-photos-albums li{
|
||||
list-style-type: disc;
|
||||
}
|
||||
#side-bar-photos-albums ul li{
|
||||
margin-left: 30px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
#side-bar-photos-albums ul li a{
|
||||
color: #3465A4;
|
||||
}
|
||||
.widget .tool.selected {
|
||||
background: url("../diabook-aerith/icons/selected.png") no-repeat left center;
|
||||
}
|
||||
/* widget: search */
|
||||
span.sbox_l {
|
||||
background: white url('../diabook-aerith/icons/srch_l.gif') no-repeat top left;
|
||||
float: left;
|
||||
width: 19px; height: 19px;
|
||||
margin-left: 10px;
|
||||
margin-top: 5px;
|
||||
|
||||
}
|
||||
|
||||
span.sbox_r {
|
||||
background: white url('../diabook-aerith/icons/srch_r.gif') no-repeat top left;
|
||||
float: left;
|
||||
width: 19px; height: 19px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
span.sbox input {
|
||||
background: white url('../diabook-aerith/icons/srch_bg.gif') repeat-x top left;
|
||||
float: left;
|
||||
margin-top: 5px;
|
||||
border: 0;
|
||||
height: 13px; width: 100px;
|
||||
padding: 3px;
|
||||
font: 11px/13px arial;
|
||||
color: #000;
|
||||
}
|
||||
#add-search-popup {
|
||||
width: 200px;
|
||||
top: 18px;
|
||||
}
|
||||
/* section */
|
||||
section {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 611px;
|
||||
padding: 0px 0px 0px 12px;
|
||||
}
|
||||
|
||||
body .pageheader{
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
margin-bottom: 20px;
|
||||
margin-top: 0px;
|
||||
max-width: 575px;
|
||||
}
|
||||
.qcomment{
|
||||
max-width: 122px;
|
||||
}
|
||||
#id_username {
|
||||
width: 173px;
|
||||
}
|
||||
#id_password {
|
||||
width: 173px;
|
||||
}
|
||||
#id_openid_url {
|
||||
width: 173px;
|
||||
}
|
||||
#contact-edit-end {
|
||||
}
|
||||
.pager {
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
font-size: 1.0em;
|
||||
clear: both;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.tabs {
|
||||
|
||||
background-position: 0 -20px;
|
||||
background-repeat: repeat-x;
|
||||
height: 27px;
|
||||
padding: 0;
|
||||
}
|
||||
.tab.button {
|
||||
margin-left: 5px;
|
||||
/*background: none repeat scroll 0 0 #F8F8F8;*/
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
font-weight: normal;
|
||||
padding: 3px;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
#birthday-wrapper a {
|
||||
color: #3465A4;
|
||||
}
|
||||
|
||||
/*marker*/
|
||||
right_aside {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 180px;
|
||||
/*border-left: 1px solid #D2D2D2;*/
|
||||
|
||||
/* background: #F1F1F1; */
|
||||
}
|
||||
right_aside a{color: #3465A4;}
|
||||
/*marker*/
|
||||
right_aside h3 {font-size: 1.05em; border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px;
|
||||
margin-top:30px;}
|
||||
right_aside .directory-item { width: 50px; height: 50px; vertical-align: center; text-align: center; }
|
||||
right_aside .directory-photo { margin: 0px; }
|
||||
right_aside .directory-photo-img { max-width: 45px; max-height: 45px; }
|
||||
right_aside #likes { margin: 0px; padding: 0px; list-style: none; }
|
||||
right_aside .items-wrapper{ overflow: auto; width: 100%; }
|
||||
right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; }
|
||||
right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; }
|
||||
#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;}
|
||||
#page-sidebar-right_aside ul {margin-top: 0px;}
|
||||
#page-sidebar-right_aside .label {max-width: 128px;}
|
||||
right_aside .icon {width: 10px; height: 10px;}
|
||||
.close_box {
|
||||
background-image: url("../diabook-aerith/icons/close_box.png");
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
opacity: 0.1;
|
||||
}
|
||||
.close_box:hover {
|
||||
background-image: url("../diabook-aerith/icons/close_box.png");
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
right_aside h3 {font-size: 1.05em;}
|
||||
|
||||
/* wall item */
|
||||
/*marker*/
|
||||
.tread-wrapper {
|
||||
border-bottom: 1px solid #D2D2D2;
|
||||
position: relative;
|
||||
padding: 5px;
|
||||
margin-bottom: 0px;
|
||||
width: 775px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
.tread-wrapper a{
|
||||
color: #3465A4;
|
||||
}
|
||||
|
||||
/*marker*/
|
||||
.wall-item-decor {
|
||||
position: absolute;
|
||||
left: 780px;
|
||||
top: -10px;
|
||||
width: 16px;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container {
|
||||
display: table;
|
||||
width: 770px;
|
||||
}
|
||||
|
||||
|
||||
.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
.wall-item-bottom {
|
||||
font-size: 13px;
|
||||
}
|
||||
.wall-item-container .wall-item-bottom {
|
||||
/* opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out; */
|
||||
}
|
||||
.wall-item-container:hover .wall-item-bottom {
|
||||
/* opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out; */
|
||||
}
|
||||
.wall-item-container .wall-item-info {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
text-align: left;
|
||||
width: 80px;
|
||||
}
|
||||
.wall-item-container .wall-item-location {
|
||||
padding-right: 40px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-ago {
|
||||
word-wrap: break-word;
|
||||
width: 50px;
|
||||
margin-left: 10px;
|
||||
color: #999;
|
||||
}
|
||||
.wall-item-location {
|
||||
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content {
|
||||
|
||||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
max-width: auto;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-container .wall-item-name {
|
||||
font-weight: bold;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-author {
|
||||
width: 100%;
|
||||
margin-bottom: 0.3em;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-social {
|
||||
float: left;
|
||||
margin-bottom: 1px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-social a {
|
||||
margin-right: 1em;
|
||||
}
|
||||
.wall-item-actions-social a {
|
||||
float: left;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools {
|
||||
float: right;
|
||||
width: 80px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools a {
|
||||
float: right;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools input {
|
||||
float: right;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container.comment {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
margin-left: 80px;
|
||||
width: 690px;
|
||||
border-bottom: 1px solid hsl(198, 21%, 79%);
|
||||
}
|
||||
.wall-item-container.comment .contact-photo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 16px;
|
||||
/*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
|
||||
|
||||
}
|
||||
.wall-item-container.comment {
|
||||
top: 15px !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
.wall-item-container.comment .wall-item-links {
|
||||
padding-left: 12px;
|
||||
}
|
||||
.wall-item-comment-wrapper {
|
||||
margin: 1px 5px 5px 80px;
|
||||
}
|
||||
.wall-item-comment-wrapper .comment-edit-photo {
|
||||
display: none;
|
||||
}
|
||||
.wall-item-comment-wrapper textarea {
|
||||
height: 1.6em ;
|
||||
width: 100%;
|
||||
font-size: 10px;
|
||||
color: #999999;
|
||||
border: 1px solid #DDD;
|
||||
padding: 0.3em;
|
||||
font-size: 14px;
|
||||
}
|
||||
.wall-item-comment-wrapper .comment-edit-text-full {
|
||||
font-size: 14px;
|
||||
height: 4em;
|
||||
color: #2d2d2d;
|
||||
border: 1px solid #2d2d2d;
|
||||
}
|
||||
.comment-edit-preview {
|
||||
width: 500px;
|
||||
margin-top: 10px;
|
||||
background-color: #fff797;
|
||||
}
|
||||
.comment-edit-preview .contact-photo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 16px;
|
||||
/*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
|
||||
|
||||
}
|
||||
.comment-edit-preview {
|
||||
top: 15px !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
.comment-edit-preview .wall-item-links {
|
||||
padding-left: 12px;
|
||||
}
|
||||
.comment-edit-preview .wall-item-container {
|
||||
width: 700px;
|
||||
}
|
||||
.comment-edit-preview .tread-wrapper {
|
||||
width: 700px;
|
||||
padding: 0;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.shiny {
|
||||
/* border-right: 10px solid #fce94f; */
|
||||
border-right: 1px solid #A7C7F7;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
#jot-preview-content{
|
||||
margin-top: 30px;}
|
||||
|
||||
#jot-preview-content .tread-wrapper {
|
||||
background-color: #fff797;
|
||||
}
|
||||
|
||||
.wall-item-tags {
|
||||
padding-top: 1px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
.tag {
|
||||
/*background: url("../../../../images/tag_b.png") repeat-x center left;*/
|
||||
color: #999;
|
||||
padding-left: 3px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.tag a {
|
||||
padding-right: 5px;
|
||||
/*background: url("../../../../images/tag.png") no-repeat center right;*/
|
||||
color: #999;
|
||||
}
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
background: #FFFFFF;
|
||||
border: 2px solid #364e59;
|
||||
height: 25px;
|
||||
width: 25px;
|
||||
overflow: hidden;
|
||||
padding: 1px;
|
||||
position: absolute !important;
|
||||
top: 40px;
|
||||
left: 30px;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
.wwto .contact-photo {
|
||||
width: auto;
|
||||
height: 25px;
|
||||
}
|
||||
/* contacts menu */
|
||||
.contact-photo-wrapper {
|
||||
position: relative;
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.contact-photo-wrapper.wwto {
|
||||
width: 25px;
|
||||
}
|
||||
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
|
||||
.contact-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.contact-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-name {
|
||||
/* text-align: center; */
|
||||
/*font-weight: bold;*/
|
||||
font-size: 12px;
|
||||
}
|
||||
.contact-details {
|
||||
color: #999999;
|
||||
}
|
||||
/* editor */
|
||||
.jothidden {
|
||||
display: none;
|
||||
}
|
||||
#jot {
|
||||
width: 585px;
|
||||
margin: 0px 2em 20px 0px;
|
||||
}
|
||||
#profile-jot-form #profile-jot-text {
|
||||
height: 2.0em;
|
||||
width: 99%;
|
||||
font-size: 15px;
|
||||
color: #999999;
|
||||
border: 1px solid #DDD;
|
||||
padding: 0.3em;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.grey
|
||||
{
|
||||
display: inline;
|
||||
float: right;
|
||||
}
|
||||
#jot #jot-tools {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
height: 40px;
|
||||
overflow: none;
|
||||
width: 583px;
|
||||
background-color: #fff;
|
||||
border-bottom: 2px solid #9eabb0;
|
||||
}
|
||||
|
||||
#jot #jot-tools li {
|
||||
list-style: none;
|
||||
float: left;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border-bottom: 2px solid #9eabb0;
|
||||
}
|
||||
#jot #jot-tools li a {
|
||||
display: block;
|
||||
color: #cccccc;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
text-align: center;
|
||||
line-height: 40px;
|
||||
overflow: hidden;
|
||||
}
|
||||
#jot #jot-tools li:hover {
|
||||
background-color: #364e59;
|
||||
border-bottom: 2px solid #bdcdd4;
|
||||
}
|
||||
#jot #jot-tools li.perms {
|
||||
float: right;
|
||||
width: 40px;
|
||||
}
|
||||
#jot #jot-tools li.perms a.unlock {
|
||||
width: 30px;
|
||||
border-left: 10px solid #cccccc;
|
||||
background-color: #cccccc;
|
||||
background-position: left center;
|
||||
}
|
||||
#jot #jot-tools li.perms a.lock {
|
||||
width: 30px;
|
||||
border-left: 10px solid #666666;
|
||||
background-color: #666666;
|
||||
}
|
||||
#jot #jot-tools li.submit {
|
||||
float: right;
|
||||
background-color: #cccccc;
|
||||
border-bottom: 2px solid #cccccc;
|
||||
border-right: 1px solid #666666;
|
||||
border-left: 1px solid #666666;
|
||||
}
|
||||
#jot #jot-tools li.submit input {
|
||||
border: 0px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
background-color: #cccccc;
|
||||
color: #666666;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
}
|
||||
#jot #jot-tools li.submit input:hover {
|
||||
background-color: #bdcdd4;
|
||||
color: #666666;
|
||||
}
|
||||
#jot #jot-tools li.loading {
|
||||
float: right;
|
||||
background-color: #ffffff;
|
||||
width: 20px;
|
||||
vertical-align: center;
|
||||
text-align: center;
|
||||
border-top: 2px solid #9eabb0;
|
||||
height: 38px;
|
||||
}
|
||||
#jot #jot-tools li.loading img {
|
||||
margin-top: 10px;
|
||||
}
|
||||
#profile-jot-form #jot-title {
|
||||
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-weight: bold;
|
||||
height: 20px;
|
||||
margin: 0 0 5px;
|
||||
width: 60%;
|
||||
border: 1px solid #d2d2d2;
|
||||
}
|
||||
#profile-jot-form #jot-title:-webkit-input-placeholder {
|
||||
font-weight: normal;
|
||||
}
|
||||
#profile-jot-form #jot-title:-moz-placeholder {
|
||||
font-weight: normal;
|
||||
}
|
||||
#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
|
||||
width: 585px;
|
||||
height: 100px;
|
||||
}
|
||||
#jot #jot-title:hover {
|
||||
border: 1px solid #999999;
|
||||
}
|
||||
#jot #jot-title:focus {
|
||||
border: 1px solid #999999;
|
||||
}
|
||||
#jot #character-counter {
|
||||
width: 80px;
|
||||
float: right;
|
||||
text-align: right;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
#jot-perms-icon,
|
||||
#profile-location,
|
||||
#profile-nolocation,
|
||||
#profile-youtube,
|
||||
#profile-video,
|
||||
#profile-audio,
|
||||
#profile-link,
|
||||
#profile-title,
|
||||
#wall-image-upload,
|
||||
#wall-file-upload,
|
||||
#wall-image-upload-div,
|
||||
#wall-file-upload-div,
|
||||
.hover, .focus {
|
||||
cursor: pointer;
|
||||
margin-top: 2px;
|
||||
}
|
||||
/*marker*/
|
||||
#profile-jot-wrapper{
|
||||
margin: 0 20px 20px 0;
|
||||
width: 785px;
|
||||
}
|
||||
}
|
||||
/*marker*/
|
||||
#profile-jot-submit-wrapper {
|
||||
margin-bottom: 50px;
|
||||
width: 785px;
|
||||
}
|
||||
|
||||
#profile-jot-submit {
|
||||
float: right;
|
||||
margin-top: 2px;
|
||||
font-size: 14px;
|
||||
}
|
||||
#profile-upload-wrapper {
|
||||
float: left;
|
||||
margin-top: 2px;
|
||||
margin-left: 10px;
|
||||
|
||||
}
|
||||
#profile-attach-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-rotator {
|
||||
float: left;
|
||||
margin-left: 30px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-link-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-youtube-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-video-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-audio-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-location-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-jot-perms {
|
||||
float: left;
|
||||
margin-left: 45px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#jot-preview-link {
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-top: 2px;
|
||||
font-size: 9px;
|
||||
font-weight: bolder;
|
||||
cursor: pointer;
|
||||
}
|
||||
#profile-jot-perms{
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
/** buttons **/
|
||||
.button.creation1 {
|
||||
background-color: #fff;
|
||||
border: 1px solid #777777;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
font-weight: bolder;
|
||||
cursor: pointer;
|
||||
}
|
||||
.button.creation2 {
|
||||
background-color: #3465A4;
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
margin-left: 5px;
|
||||
font-weight: bolder;
|
||||
cursor: pointer;
|
||||
}
|
||||
/*input[type="submit"] {
|
||||
border: 0px;
|
||||
background-color: @ButtonBackgroundColor;
|
||||
color: @ButtonColor;
|
||||
padding: 0px 10px;
|
||||
.rounded(5px);
|
||||
height: 18px;
|
||||
}*/
|
||||
/** acl **/
|
||||
#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
|
||||
display: block!important;
|
||||
}
|
||||
#acl-wrapper {
|
||||
width: 690px;
|
||||
float: left;
|
||||
}
|
||||
#acl-search {
|
||||
float: right;
|
||||
background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
|
||||
padding-right: 20px;
|
||||
}
|
||||
#acl-showall {
|
||||
float: left;
|
||||
display: block;
|
||||
width: auto;
|
||||
height: 18px;
|
||||
background-color: #cccccc;
|
||||
background-image: url("../../../../images/show_all_off.png");
|
||||
background-position: 7px 7px;
|
||||
background-repeat: no-repeat;
|
||||
padding: 7px 5px 0px 30px;
|
||||
color: #999999;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
#acl-showall.selected {
|
||||
color: #000000;
|
||||
background-color: #ff9900;
|
||||
background-image: url("../../../../images/show_all_on.png");
|
||||
}
|
||||
#acl-list {
|
||||
height: 210px;
|
||||
border: 1px solid #cccccc;
|
||||
clear: both;
|
||||
margin-top: 30px;
|
||||
overflow: auto;
|
||||
}
|
||||
.acl-list-item {
|
||||
display: block;
|
||||
width: 150px;
|
||||
height: 30px;
|
||||
border: 1px solid #cccccc;
|
||||
margin: 5px;
|
||||
float: left;
|
||||
}
|
||||
.acl-list-item img {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
float: left;
|
||||
margin: 4px;
|
||||
}
|
||||
.acl-list-item p {
|
||||
height: 12px;
|
||||
font-size: 10px;
|
||||
margin: 0px;
|
||||
padding: 2px 0px 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.acl-list-item a {
|
||||
font-size: 8px;
|
||||
display: block;
|
||||
width: 40px;
|
||||
height: 10px;
|
||||
float: left;
|
||||
color: #999999;
|
||||
background-color: #cccccc;
|
||||
background-position: 3px 3px;
|
||||
background-repeat: no-repeat;
|
||||
margin-right: 5px;
|
||||
-webkit-border-radius: 2px ;
|
||||
-moz-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
#acl-wrapper a:hover {
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
}
|
||||
.acl-button-show {
|
||||
background-image: url("../../../../images/show_off.png");
|
||||
}
|
||||
.acl-button-hide {
|
||||
background-image: url("../../../../images/hide_off.png");
|
||||
}
|
||||
.acl-button-show.selected {
|
||||
color: #000000;
|
||||
background-color: #9ade00;
|
||||
background-image: url("../../../../images/show_on.png");
|
||||
}
|
||||
.acl-button-hide.selected {
|
||||
color: #000000;
|
||||
background-color: #ff4141;
|
||||
background-image: url("../../../../images/hide_on.png");
|
||||
}
|
||||
.acl-list-item.groupshow {
|
||||
border-color: #9ade00;
|
||||
}
|
||||
.acl-list-item.grouphide {
|
||||
border-color: #ff4141;
|
||||
}
|
||||
/** /acl **/
|
||||
/** tab buttons 14618a**/
|
||||
/** tab buttons **/
|
||||
/*marker*/
|
||||
ul.tabs {
|
||||
list-style-type: none;
|
||||
padding-bottom: 10px;
|
||||
font-size: 13px;
|
||||
width: 805px;
|
||||
}
|
||||
ul.tabs li {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
}
|
||||
ul.tabs li .active {
|
||||
background-color: #3465A4;
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 2px 2px 2px #CFCFCF;
|
||||
margin-left: 5px;
|
||||
}
|
||||
/**
|
||||
* Form fields
|
||||
*/
|
||||
.field {
|
||||
margin-bottom: 10px;
|
||||
padding-bottom: 10px;
|
||||
overflow: auto;
|
||||
width: 100%;
|
||||
}
|
||||
.field label {
|
||||
float: left;
|
||||
width: 200px;
|
||||
}
|
||||
.field input, .field textarea {
|
||||
width: 400px;
|
||||
}
|
||||
.field textarea {
|
||||
height: 100px;
|
||||
}
|
||||
.field .field_help {
|
||||
display: block;
|
||||
margin-left: 200px;
|
||||
color: #666666;
|
||||
}
|
||||
.field .onoff {
|
||||
float: left;
|
||||
width: 80px;
|
||||
}
|
||||
.field .onoff a {
|
||||
display: block;
|
||||
border: 1px solid #666666;
|
||||
background-image: url("../../../../images/onoff.jpg");
|
||||
background-repeat: no-repeat;
|
||||
padding: 4px 2px 2px 2px;
|
||||
height: 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.field .onoff .off {
|
||||
border-color: #666666;
|
||||
padding-left: 40px;
|
||||
background-position: left center;
|
||||
background-color: #cccccc;
|
||||
color: #666666;
|
||||
text-align: right;
|
||||
}
|
||||
.field .onoff .on {
|
||||
border-color: #204A87;
|
||||
padding-right: 40px;
|
||||
background-position: right center;
|
||||
background-color: #D7E3F1;
|
||||
color: #204A87;
|
||||
text-align: left;
|
||||
}
|
||||
.field .hidden {
|
||||
display: none!important;
|
||||
}
|
||||
.field.radio .field_help {
|
||||
margin-left: 0px;
|
||||
}
|
||||
#directory-search-form{
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
#profile-edit-links-end {
|
||||
clear: both;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
|
||||
|
||||
#profile-edit-links li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.profile-edit-side-div {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#register-form label,
|
||||
#profile-edit-form label {
|
||||
width: 300px; float: left;
|
||||
}
|
||||
|
||||
.required {
|
||||
display: inline;
|
||||
color: #B20202;
|
||||
}
|
||||
|
||||
/* oauth */
|
||||
.oauthapp {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
border-bottom: 2px solid #cccccc;
|
||||
padding-bottom: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.oauthapp img {
|
||||
float: left;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
margin: 10px;
|
||||
}
|
||||
.oauthapp img.noicon {
|
||||
background-image: url("../../../../images/icons/48/plugin.png");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.oauthapp a {
|
||||
float: left;
|
||||
}
|
||||
/* contacts */
|
||||
.contact-entry-wrapper {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
float: left;
|
||||
}
|
||||
/* photo */
|
||||
.photo {
|
||||
box-shadow: 2px 2px 5px 0px #000000;
|
||||
margin: 0px;
|
||||
border-radius: 10px;
|
||||
height: 145px !important;
|
||||
width: 145px !important;
|
||||
}
|
||||
.lframe {
|
||||
float: left;
|
||||
/*margin: 0px 10px 10px 0px;*/
|
||||
}
|
||||
/* profile match wrapper */
|
||||
.profile-match-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.profile-match-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.profile-match-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.profile-match-wrapper {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
|
||||
.contact-photo-menu-button {
|
||||
position: relative;
|
||||
background-image: url("../../../../images/icons/16/menu.png");
|
||||
background-position: top left;
|
||||
background-repeat: no-repeat;
|
||||
margin: 0px 0px -16px 0px;
|
||||
padding: 0px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
top: -16px; left:0px;
|
||||
overflow: hidden;
|
||||
text-indent: 40px;
|
||||
display: none;
|
||||
|
||||
}
|
||||
.contact-photo-menu {
|
||||
width: 11em;
|
||||
border: 3px solid #364e59;
|
||||
color: #2d2d2d;
|
||||
background: #FFFFFF;
|
||||
/* position: absolute;*/
|
||||
position: relative;
|
||||
left: 0px; top: 0px;
|
||||
display: none;
|
||||
z-index: 10000;
|
||||
}
|
||||
.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
|
||||
.contact-photo-menu li a {
|
||||
display: block;
|
||||
padding: 5px 10px;
|
||||
color: #2d2d2d;
|
||||
text-decoration: none;
|
||||
}
|
||||
.contact-photo-menu li a:hover {
|
||||
background-color: #bdcdd4;
|
||||
}
|
||||
|
||||
/* page footer */
|
||||
footer {
|
||||
height: 100px;
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 1px solid #D2D2D2;
|
||||
padding-left: 9px;
|
||||
margin: 0 0 0 .8ex;
|
||||
color: #777;
|
||||
}
|
||||
.oembed {
|
||||
|
||||
font-weight: bold;
|
||||
}
|
||||
.aprofile dt{
|
||||
box-shadow: 1px 1px 5px 0;
|
||||
color: #666666;
|
||||
margin: 15px 0 5px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
/* ================== */
|
||||
/* = Contacts Block = */
|
||||
/* ================== */
|
||||
|
||||
.contact-block-img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
padding-right: 3px;
|
||||
}
|
||||
.contact-block-div {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.contact-block-textdiv { width: 150px; height: 34px; float: left; }
|
||||
#contact-block-end { clear: both; }
|
||||
|
||||
#group-edit-wrapper {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#group-members-end {
|
||||
clear: both;
|
||||
}
|
||||
#group-edit-desc {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
/*
|
||||
#group-separator,
|
||||
#prof-separator { display: none;}
|
||||
*/
|
||||
#prof-members-end{
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
|
||||
margin-bottom: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#prvmail-submit {
|
||||
float: right;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#prvmail-subject
|
||||
{
|
||||
background: none repeat scroll 0 0 #FFFFFF;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-weight: bold;
|
||||
height: 20px;
|
||||
margin: 0 0 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
#prvmail-form{
|
||||
width: 597px;
|
||||
}
|
||||
|
||||
#prvmail-upload-wrapper,
|
||||
#prvmail-link-wrapper,
|
||||
#prvmail-rotator-wrapper {
|
||||
float: left;
|
||||
margin-top: 10px;
|
||||
margin-right: 10px;
|
||||
width: 24px;
|
||||
}
|
||||
|
||||
#prvmail-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-list-sender,
|
||||
.mail-list-detail {
|
||||
float: left;
|
||||
}
|
||||
.mail-list-detail {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.mail-list-subject {
|
||||
font-size: 1.1em;
|
||||
margin-top: 10px;
|
||||
}
|
||||
a.mail-list-link {
|
||||
display: block;
|
||||
font-size: 1.3em;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
/*
|
||||
*a.mail-list-link:hover {
|
||||
* background-color: #15607B;
|
||||
* color: #F5F6FB;
|
||||
*}
|
||||
*/
|
||||
|
||||
.mail-list-outside-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-list-outside-wrapper {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.mail-list-delete-wrapper {
|
||||
float: right;
|
||||
margin-right: 30px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.mail-list-delete-icon {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.mail-conv-sender,
|
||||
.mail-conv-detail {
|
||||
float: left;
|
||||
}
|
||||
.mail-conv-detail {
|
||||
margin-left: 20px;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.mail-conv-subject {
|
||||
font-size: 1.4em;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.mail-conv-outside-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-conv-outside-wrapper {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.mail-conv-delete-wrapper {
|
||||
float: right;
|
||||
margin-right: 30px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
.mail-conv-break {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-conv-delete-icon {
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* ========== */
|
||||
/* = Events = */
|
||||
/* ========== */
|
||||
.eventcal {
|
||||
float: left;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.vevent {
|
||||
|
||||
}
|
||||
.vevent .event-description, .vevent .event-location {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.vevent .event-start {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
#new-event-link {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.edit-event-link, .plink-event-link {
|
||||
float: left;
|
||||
margin-top: 4px;
|
||||
margin-right: 4px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.event-description:before {
|
||||
content: url('../../../../images/calendar.png');
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.event-start, .event-end {
|
||||
margin-left: 10px;
|
||||
width: 330px;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.event-start .dtstart, .event-end .dtend {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.event-list-date {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.prevcal, .nextcal {
|
||||
float: left;
|
||||
margin-left: 32px;
|
||||
margin-right: 32px;
|
||||
margin-top: 64px;
|
||||
}
|
||||
.event-calendar-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
.calendar {
|
||||
font-family: Courier, monospace;
|
||||
}
|
||||
.calendar.eventcal a {
|
||||
color: #3465A4;
|
||||
}
|
||||
.today {
|
||||
font-weight: bold;
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
.settings-block {
|
||||
border: 1px solid #AAA;
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.app-title {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#identity-manage-desc {
|
||||
margin-top:15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#identity-manage-choose {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#identity-submit {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#photo-prev-link, #photo-next-link {
|
||||
padding: 10px;
|
||||
float: left;
|
||||
}
|
||||
.lightbox{
|
||||
float: left;
|
||||
}
|
||||
|
||||
#photo-photo {
|
||||
float: left;
|
||||
}
|
||||
#photo-like-div .wall-item-like-buttons {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
.comment-edit-text-empty {
|
||||
margin: 10px 0 0;
|
||||
width: 85%;
|
||||
}
|
||||
.comment-edit-photo {
|
||||
margin: 10px 0 0;
|
||||
}
|
||||
.wall-item-like-buttons .icon.like {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#photo-photo-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.tabs .comment-wwedit-wrapper {
|
||||
display: block;
|
||||
margin-top: 30px;
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.profile-match-photo {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
.profile-match-name {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 120px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.profile-match-break,
|
||||
.profile-match-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.profile-match-connect {
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.profile-match-wrapper {
|
||||
float: left;
|
||||
padding: 10px;
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
scroll: auto;
|
||||
}
|
||||
#profile-match-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* ============= */
|
||||
/* = Directory = */
|
||||
/* ============= */
|
||||
/* contacts menu */
|
||||
.contact-photo-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-photo-menu-button {
|
||||
display: none;
|
||||
/* position: absolute; */
|
||||
/* position: absolute; */
|
||||
left: 0px;
|
||||
top: -16px;
|
||||
}
|
||||
.contact-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.contact-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo-menu-button {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
.directory-item {
|
||||
float: left;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
.directory-item .contact-photo {
|
||||
width: 175px;
|
||||
height: 175px;
|
||||
}
|
||||
.directory-item .contact-photo img {
|
||||
width: 175px;
|
||||
height: 175px;
|
||||
}
|
||||
.contact-name {
|
||||
text-align: left;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
}
|
||||
.contact-details {
|
||||
color: #999999;
|
||||
}
|
||||
#side-bar-photos-albums li{
|
||||
list-style-type: disc;
|
||||
}
|
||||
#side-bar-photos-albums ul li{
|
||||
margin-left: 30px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
#side-bar-photos-albums{
|
||||
margin-top: 15px;
|
||||
}
|
||||
.photo-top-photo, .photo-album-photo {
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
.photo-album-image-wrapper, .photo-top-image-wrapper {
|
||||
float: left;
|
||||
-moz-box-shadow: 0 0 5px #888;
|
||||
-webkit-box-shadow: 0 0 5px #888;
|
||||
box-shadow: 0 0 5px #888;
|
||||
background-color: #000;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
padding-bottom: 20px;
|
||||
position: relative;
|
||||
margin: 0 10px 10px 0;
|
||||
width: 200px; height: 140px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.photo-top-album-name {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
padding-left: 3px;
|
||||
background-color: #EEE;
|
||||
}
|
||||
.photo-top-album-link{
|
||||
color: #3465A4;
|
||||
}
|
||||
.photo-top-album-img{
|
||||
|
||||
}
|
||||
/*.photo-top-image-wrapper {
|
||||
position: relative;
|
||||
float: left;
|
||||
margin-top: 15px;
|
||||
margin-right: 15px;
|
||||
width: 200px; height: 200px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.photo-top-album-name {
|
||||
width: 100%;
|
||||
min-height: 2em;
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
padding: 0px 3px;
|
||||
padding-top: 0.5em;
|
||||
background-color: rgb(255, 255, 255);
|
||||
}*/
|
||||
#photo-top-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#photo-top-links {
|
||||
margin-bottom: 30px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
#photos-upload-newalbum-div {
|
||||
float: left;
|
||||
width: 175px;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -185,6 +185,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -1,2986 +1,86 @@
|
|||
/**
|
||||
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
|
||||
* Additional Changes: Michael Vogel <icarus@dabo.de>
|
||||
**/
|
||||
|
||||
/* ========= */
|
||||
/* = Admin = */
|
||||
/* ========= */
|
||||
|
||||
#adminpage {
|
||||
/* width: 80%;*/
|
||||
}
|
||||
|
||||
#pending-update {
|
||||
float:right;
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
background-color: #FF0000;
|
||||
padding: 0em 0.3em;
|
||||
}
|
||||
|
||||
.admin.linklist {
|
||||
border: 0px; padding: 0px;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.admin.link {
|
||||
list-style-position: inside;
|
||||
font-size: 1em;
|
||||
padding: 5px;
|
||||
width: 100px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
#adminpage dl {
|
||||
clear: left;
|
||||
margin-bottom: 2px;
|
||||
padding-bottom: 2px;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
|
||||
#adminpage dt {
|
||||
width: 200px;
|
||||
float: left;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#adminpage dd {
|
||||
margin-left: 200px;
|
||||
}
|
||||
#adminpage h3 {
|
||||
border-bottom: 1px solid #898989;
|
||||
margin-bottom: 5px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#adminpage .submit {
|
||||
clear:left;
|
||||
}
|
||||
|
||||
#adminpage #pluginslist {
|
||||
margin: 0px; padding: 0px;
|
||||
}
|
||||
|
||||
#adminpage .plugin {
|
||||
list-style: none;
|
||||
display: block;
|
||||
/* border: 1px solid #888888; */
|
||||
padding: 1em;
|
||||
margin-bottom: 5px;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
#adminpage .toggleplugin {
|
||||
float:left;
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
|
||||
#adminpage table th { text-align: left;}
|
||||
#adminpage td .icon { float: left;}
|
||||
#adminpage table#users img { width: 16px; height: 16px; }
|
||||
#adminpage table tr:hover { background-color: #eeeeee; }
|
||||
#adminpage .selectall { text-align: right; }
|
||||
/* icons */
|
||||
|
||||
.icon.bb-url{
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-url.png");
|
||||
float: right;
|
||||
margin-top: 2px;}
|
||||
.icon.quote{
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/quote.png");
|
||||
float: right;
|
||||
margin-top: 2px;}
|
||||
.icon.bold{
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bold.png");
|
||||
float: right;
|
||||
margin-top: 2px;}
|
||||
.icon.underline{
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/underline.png");
|
||||
float: right;
|
||||
margin-top: 2px;}
|
||||
.icon.italic{
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/italic.png");
|
||||
float: right;
|
||||
margin-top: 2px;}
|
||||
.icon.bb-image{
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-image.png");
|
||||
float: right;
|
||||
margin-top: 2px;}
|
||||
.icon.bb-video{
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-video.png");
|
||||
float: right;
|
||||
margin-top: 2px;}
|
||||
|
||||
.icon.contacts {
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/contacts.png");}
|
||||
.icon.notifications {
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notifications.png");}
|
||||
.icon.notify {
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notify.png");}
|
||||
.icon.messages {
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/messages.png");}
|
||||
.icon.community {
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/community.png");}
|
||||
|
||||
.icon.drop { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/drop.png");}
|
||||
.icon.drophide { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/drop.png");}
|
||||
.icon.dislike { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/dislike.png");}
|
||||
.icon.like { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/like.png");}
|
||||
.icon.pencil { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/pencil.png");}
|
||||
.icon.recycle { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/recycle.png");}
|
||||
.icon.remote-link { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/remote.png");}
|
||||
.icon.tagged { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/tagged.png");}
|
||||
.icon.file-as { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/file_as.png");}
|
||||
.star-item.icon.unstarred { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unstarred.png");}
|
||||
.star-item.icon.starred { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/starred.png");}
|
||||
.icon.link { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/link.png");}
|
||||
.icon.lock { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/lock.png");}
|
||||
.icon.unlock { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unlock.png");}
|
||||
.icon.language { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/language.png");}
|
||||
|
||||
|
||||
.camera { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/camera.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.attach { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/attach.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video2 { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png");
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.weblink { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/weblink.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.globe { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/globe.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.unglobe { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unglobe.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.edit {background-image: url("../../../view/theme/diabook/diabook-aerith/icons/pencil2.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
|
||||
.icon.block {background-image: url("../../../view/theme/diabook/icons/block.png");
|
||||
display: block; width: 16px; height: 16px; background-repeat: no-repeat;}
|
||||
.icon.block.dim {background-image: url("../../../view/theme/diabook/icons/block.png");
|
||||
display: block; width: 16px; height: 16px; background-repeat: no-repeat; opacity: 0.3;}
|
||||
.icon.ad_drop { background-image: url("../../../view/theme/diabook/icons/drop.png");
|
||||
display: block; margin-left:5px; width: 16px; height: 16px; background-repeat: no-repeat;}
|
||||
|
||||
|
||||
|
||||
.article { background-position: -50px 0px;}
|
||||
/*.audio { background-position: -70px 0px;}*/
|
||||
/*.drop { background-position: -110px 0px;}*/
|
||||
/*.drophide { background-position: -130px 0px;}*/
|
||||
/*.edit { background-position: -150px 0px;}*/
|
||||
/*.camera { background-position: -170px 0px;}*/
|
||||
/*.dislike { background-position: -190px 0px;}*/
|
||||
/*.like { background-position: -210px 0px;}*/
|
||||
/*.link { background-position: -230px 0px;}*/
|
||||
|
||||
/*.globe { background-position: -50px -20px;}*/
|
||||
/*.noglobe { background-position: -70px -20px;}*/
|
||||
.no { background-position: -90px -20px;}
|
||||
.pause { background-position: -110px -20px;}
|
||||
.play { background-position: -130px -20px;}
|
||||
/*.pencil { background-position: -150px -20px;}*/
|
||||
.small-pencil { background-position: -170px -20px;}
|
||||
/*.recycle { background-position: -190px -20px;}*/
|
||||
/*.remote-link { background-position: -210px -20px;}*/
|
||||
.share { background-position: -230px -20px;}
|
||||
|
||||
.tools { background-position: -50px -40px;}
|
||||
/*.lock { background-position: -70px -40px;}*/
|
||||
|
||||
/*.video { background-position: -110px -40px;}*/
|
||||
.youtube { background-position: -130px -40px;}
|
||||
|
||||
/*.attach { background-position: -190px -40px;}*/
|
||||
/*.language { background-position: -210px -40px;}*/
|
||||
|
||||
|
||||
.icon.on { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/toogle_on.png"); background-repeat: no-repeat;}
|
||||
.icon.off { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/toogle_off.png"); background-repeat: no-repeat;}
|
||||
.icon.prev { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/prev.png"); background-repeat: no-repeat;}
|
||||
.icon.next { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/next.png"); background-repeat: no-repeat;}
|
||||
/*.tagged { background-position: -130px -60px;}*/
|
||||
|
||||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../images/content-types.png');
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
.type-image { background-position: -20px 0px; }
|
||||
.type-audio { background-position: -40px 0px; }
|
||||
.type-text { background-position: -60px 0px; }
|
||||
.type-unkn { background-position: -80px 0px; }
|
||||
|
||||
.icon.drop, .icon.drophide {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.icon {
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
/*background-image: url('icons.png');*/
|
||||
}
|
||||
|
||||
.icon {
|
||||
background-color: transparent ;
|
||||
background-repeat: no-repeat;
|
||||
/* background-position: left center; */
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
text-indent: -9999px;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
.icon.border.camera{
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/camera.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.icon.border.link{
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/weblink.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.icon.text {
|
||||
text-indent: 0px;
|
||||
}
|
||||
.icon.s10 {
|
||||
min-width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
.icon.s10.notify {
|
||||
background-image: url("../../../images/icons/10/notify_off.png");
|
||||
}
|
||||
.icon.s10.gear {
|
||||
background-image: url("../../../images/icons/10/gear.png");
|
||||
}
|
||||
.icon.s10.add {
|
||||
background-image: url("../../../images/icons/10/add.png");
|
||||
}
|
||||
.icon.s10.delete {
|
||||
background-image: url("../../../images/icons/10/delete.png");
|
||||
}
|
||||
.icon.s10.edit {
|
||||
background-image: url("../../../images/icons/10/edit.png");
|
||||
}
|
||||
.icon.s10.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s10.menu {
|
||||
background-image: url("../../../images/icons/10/menu.png");
|
||||
}
|
||||
.icon.s10.link {
|
||||
background-image: url("../../../images/icons/10/link.png");
|
||||
}
|
||||
.icon.s10.lock {
|
||||
background-image: url("../../../images/icons/10/lock.png");
|
||||
}
|
||||
.icon.s10.unlock {
|
||||
background-image: url("../../../images/icons/10/unlock.png");
|
||||
}
|
||||
.icon.s10.text {
|
||||
padding: 2px 0px 0px 15px;
|
||||
font-size: 10px;
|
||||
}
|
||||
.icon.s16 {
|
||||
min-width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.icon.s16.notify {
|
||||
background-image: url("../../../images/icons/16/notify_off.png");
|
||||
}
|
||||
.icon.s16.gear {
|
||||
background-image: url("../../../images/icons/16/gear.png");
|
||||
}
|
||||
.icon.s16.add {
|
||||
background-image: url("../../../images/icons/16/add.png");
|
||||
}
|
||||
.icon.s16.delete {
|
||||
background-image: url("../../../images/icons/16/delete.png");
|
||||
}
|
||||
/*.icon.s16.edit {
|
||||
background-image: url("../../../images/icons/16/edit.png");
|
||||
}*/
|
||||
.icon.s16.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s16.menu {
|
||||
background-image: url("../../../images/icons/16/menu.png");
|
||||
}
|
||||
/*.icon.s16.link {
|
||||
background-image: url("../../../images/icons/16/link.png");
|
||||
}*/
|
||||
.icon.s16.lock {
|
||||
background-image: url("../../../images/icons/16/lock.png");
|
||||
}
|
||||
.icon.s16.unlock {
|
||||
background-image: url("../../../images/icons/16/unlock.png");
|
||||
}
|
||||
.icon.s16.text {
|
||||
padding: 4px 0px 0px 20px;
|
||||
font-size: 10px;
|
||||
}
|
||||
.icon.s22 {
|
||||
min-width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
.icon.s22.notify {
|
||||
background-image: url("../../../images/icons/22/notify_off.png");
|
||||
}
|
||||
.icon.s22.gear {
|
||||
background-image: url("../../../images/icons/22/gear.png");
|
||||
}
|
||||
.icon.s22.add {
|
||||
background-image: url("../../../images/icons/22/add.png");
|
||||
}
|
||||
.icon.s22.delete {
|
||||
background-image: url("../../../images/icons/22/delete.png");
|
||||
}
|
||||
.icon.s22.edit {
|
||||
background-image: url("../../../images/icons/22/edit.png");
|
||||
}
|
||||
.icon.s22.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s22.menu {
|
||||
background-image: url("../../../images/icons/22/menu.png");
|
||||
}
|
||||
.icon.s22.link {
|
||||
background-image: url("../../../images/icons/22/link.png");
|
||||
}
|
||||
.icon.s22.lock {
|
||||
background-image: url("../../../images/icons/22/lock.png");
|
||||
}
|
||||
.icon.s22.unlock {
|
||||
background-image: url("../../../images/icons/22/unlock.png");
|
||||
}
|
||||
.icon.s22.text {
|
||||
padding: 10px 0px 0px 25px;
|
||||
width: 200px;
|
||||
}
|
||||
.icon.s48 {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.icon.s48.notify {
|
||||
background-image: url("../../../images/icons/48/notify_off.png");
|
||||
}
|
||||
.icon.s48.gear {
|
||||
background-image: url("../../../images/icons/48/gear.png");
|
||||
}
|
||||
.icon.s48.add {
|
||||
background-image: url("../../../images/icons/48/add.png");
|
||||
}
|
||||
.icon.s48.delete {
|
||||
background-image: url("../../../images/icons/48/delete.png");
|
||||
}
|
||||
.icon.s48.edit {
|
||||
background-image: url("../../../images/icons/48/edit.png");
|
||||
}
|
||||
.icon.s48.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s48.menu {
|
||||
background-image: url("../../../images/icons/48/menu.png");
|
||||
}
|
||||
.icon.s48.link {
|
||||
background-image: url("../../../images/icons/48/link.png");
|
||||
}
|
||||
.icon.s48.lock {
|
||||
background-image: url("../../../images/icons/48/lock.png");
|
||||
}
|
||||
.icon.s48.unlock {
|
||||
background-image: url("../../../images/icons/48/unlock.png");
|
||||
}
|
||||
|
||||
#contact-edit-links ul {
|
||||
list-style: none;
|
||||
list-style-type: none;
|
||||
}
|
||||
@import url('style.css');
|
||||
|
||||
.hide-comments-outer {
|
||||
margin-left: 80px;
|
||||
margin-bottom: 5px;
|
||||
width: 675px;
|
||||
border-bottom: 1px solid #BDCDD4;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
/* global */
|
||||
body {
|
||||
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 13px;
|
||||
background-color: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 50px auto auto;
|
||||
display: table;
|
||||
}
|
||||
|
||||
#jappix_mini {
|
||||
right: 45px !important;
|
||||
}
|
||||
|
||||
|
||||
h4 {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #333333;
|
||||
/* color: #3e3e8c; */
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
/* color: blue; */
|
||||
text-decoration: underline
|
||||
}
|
||||
|
||||
.wall-item-name-link {
|
||||
/* float: left;*/
|
||||
}
|
||||
|
||||
.wall-item-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.left {
|
||||
float: left;
|
||||
}
|
||||
.right {
|
||||
float: right;
|
||||
}
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
.clear {
|
||||
clear: both;
|
||||
}
|
||||
.fakelink {
|
||||
color: #3465A4;
|
||||
/* color: #3e3e8c; */
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.fakelink:hover {
|
||||
/* color: blue; */
|
||||
/*color: #005c94; */
|
||||
text-decoration: underline;
|
||||
}
|
||||
.intro-end {
|
||||
border-bottom: 1px solid black;
|
||||
clear: both;
|
||||
margin-bottom: 25px;
|
||||
padding-bottom: 25px;
|
||||
width: 75%;
|
||||
}
|
||||
.intro-form-end {
|
||||
clear: both;
|
||||
}
|
||||
.intro-fullname {
|
||||
padding-bottom: 5px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
.intro-wrapper-end {
|
||||
clear: both;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
code {
|
||||
font-family: Courier, monospace;
|
||||
white-space: pre;
|
||||
display: block;
|
||||
overflow: auto;
|
||||
border: 1px solid #444;
|
||||
background: #EEE;
|
||||
color: #444;
|
||||
padding: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
#panel {
|
||||
position: absolute;
|
||||
width: 12em;
|
||||
background: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 0px;
|
||||
padding: 1em;
|
||||
list-style: none;
|
||||
border: 3px solid #364e59;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
/* tool */
|
||||
.tool {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
padding: 3px;
|
||||
}
|
||||
#saved-search-ul .tool:hover,
|
||||
#nets-sidebar .tool:hover,
|
||||
#sidebar-group-list .tool:hover,
|
||||
#fileas-sidebar .tool:hover {
|
||||
background: aliceBlue;
|
||||
}
|
||||
.tool .label {
|
||||
float: left;
|
||||
}
|
||||
.tool .action {
|
||||
float: right;
|
||||
}
|
||||
.tool a {
|
||||
color: ##3F8FBA;
|
||||
}
|
||||
.tool a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
/* popup notifications */
|
||||
div.jGrowl.top-right { top: 30px; /* put it below header/nav bar */ }
|
||||
div.jGrowl div.notice {
|
||||
background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
|
||||
color: #ffffff;
|
||||
padding-left: 58px;
|
||||
}
|
||||
div.jGrowl div.info {
|
||||
background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
|
||||
color: #ffffff;
|
||||
padding-left: 58px;
|
||||
}
|
||||
/* header */
|
||||
header {
|
||||
position: fixed;
|
||||
left: 0%;
|
||||
right: 80%;
|
||||
top: 0px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
width: 22%;
|
||||
height: 32px;
|
||||
background: #ff500f;
|
||||
background-color: #ff500f;
|
||||
z-index: 100;
|
||||
border-bottom: 1px;
|
||||
border-bottom-color: black;
|
||||
border-bottom-style: inset;
|
||||
background-image: linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -o-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -moz-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -webkit-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -ms-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
|
||||
background-image: -webkit-gradient(
|
||||
linear,
|
||||
left bottom,
|
||||
left top,
|
||||
color-stop(0.26, rgb(215,227,241)),
|
||||
color-stop(0.82, rgb(255,255,255))
|
||||
);
|
||||
}
|
||||
header #site-location {
|
||||
display: none;
|
||||
}
|
||||
header #banner {
|
||||
overflow: hidden;
|
||||
text-align: banner;
|
||||
width: 82%;
|
||||
margin-left: 25%;
|
||||
}
|
||||
header #banner a,
|
||||
header #banner a:active,
|
||||
header #banner a:visited,
|
||||
header #banner a:link,
|
||||
header #banner a:hover {
|
||||
color: #1f1f1f;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
vertical-align: middle;
|
||||
font-weight: bolder;
|
||||
margin-left: 3px;
|
||||
}
|
||||
header #banner #logo-img {
|
||||
height: 25px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
header #banner #logo-text {
|
||||
font-size: 20px!important;position: relative!important;top: -4px!important;
|
||||
}
|
||||
/* messages */
|
||||
#message-new {
|
||||
background: #3465A4;
|
||||
border: 1px solid #333;
|
||||
width: 150px;
|
||||
}
|
||||
#message-new a {
|
||||
color: #ffffff;
|
||||
text-align: center;
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
padding: 1em 0px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.mail-list-wrapper {
|
||||
background-color: #f6f7f8;
|
||||
margin-bottom: 5px;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
.mail-list-wrapper span {
|
||||
display: block;
|
||||
float: left;
|
||||
width: 20%;
|
||||
overflow: hidden;
|
||||
}
|
||||
.mail-list-wrapper .mail-subject {
|
||||
width: 30%;
|
||||
padding: 4px 0px 0px 4px;
|
||||
}
|
||||
.mail-list-wrapper .mail-subject a {
|
||||
display: block;
|
||||
}
|
||||
.mail-list-wrapper .mail-subject.unseen a {
|
||||
font-weight: bold;
|
||||
}
|
||||
.mail-list-wrapper .mail-date {
|
||||
padding: 4px 4px 0px 4px;
|
||||
}
|
||||
.mail-list-wrapper .mail-from {
|
||||
padding: 4px 4px 0px 4px;
|
||||
}
|
||||
.mail-list-wrapper .mail-count {
|
||||
padding: 4px 4px 0px 4px;
|
||||
text-align: right;
|
||||
}
|
||||
.mail-list-wrapper .mail-delete {
|
||||
float: right;
|
||||
}
|
||||
#mail-display-subject {
|
||||
background-color: #f6f7f8;
|
||||
color: #2d2d2d;
|
||||
margin-bottom: 10px;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
#mail-display-subject span {
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
padding: 4px 0px 0px 10px;
|
||||
}
|
||||
#mail-display-subject .mail-delete {
|
||||
float: right;
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
#mail-display-subject:hover .mail-delete {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
/* nav */
|
||||
nav {
|
||||
width: 80%;
|
||||
height: 32px;
|
||||
position: fixed;
|
||||
left: 22%;
|
||||
top: 0px;
|
||||
padding: 0px;
|
||||
background: #ff500f;
|
||||
color: #1f1f1f;
|
||||
z-index: 99;
|
||||
border-bottom: 1px;
|
||||
border-bottom-color: black;
|
||||
border-bottom-style: inset;
|
||||
background-image: linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -o-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -moz-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -webkit-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
background-image: -ms-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
|
||||
|
||||
background-image: -webkit-gradient(
|
||||
linear,
|
||||
left bottom,
|
||||
left top,
|
||||
color-stop(0.26, rgb(215,227,241)),
|
||||
color-stop(0.82, rgb(255,255,255))
|
||||
);
|
||||
}
|
||||
nav a,
|
||||
nav a:active,
|
||||
nav a:visited,
|
||||
nav a:link,
|
||||
nav a:hover {
|
||||
color: #1f1f1f;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
}
|
||||
nav #banner {
|
||||
overflow: hidden;
|
||||
/*text-align: center;*/
|
||||
width: 100%;
|
||||
}
|
||||
nav #banner a,
|
||||
nav #banner a:active,
|
||||
nav #banner a:visited,
|
||||
nav #banner a:link,
|
||||
nav #banner a:hover {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
nav #banner #logo-img {
|
||||
height: 22px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
nav #banner #logo-text {
|
||||
font-size: 22px;
|
||||
}
|
||||
nav #navbar{
|
||||
}
|
||||
nav ul {
|
||||
margin: 0px;
|
||||
padding: 0px 20px;
|
||||
}
|
||||
nav ul li {
|
||||
list-style: none;
|
||||
margin: 0px;
|
||||
/* padding: 1px 1px 3px 1px; */
|
||||
float: left;
|
||||
}
|
||||
nav ul li .menu-popup {
|
||||
left: 0px;
|
||||
right: auto;
|
||||
}
|
||||
|
||||
nav #logo-img {
|
||||
height: 25px;
|
||||
margin-top: 4px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
nav #logo-text {
|
||||
font-size: 22px;
|
||||
margin-top: 3px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
nav .nav-menu-search {
|
||||
position: relative;
|
||||
|
||||
margin: 4px 17px;
|
||||
margin-right: 0px;
|
||||
height: 17px;
|
||||
width: 180px;
|
||||
|
||||
}
|
||||
|
||||
nav #search-box #search-text {
|
||||
background-image: url('icons/lupe.png');
|
||||
background-repeat:no-repeat;
|
||||
padding-left:20px;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
border-bottom-left-radius: 15px;
|
||||
}
|
||||
|
||||
|
||||
nav .nav-menu-icon {
|
||||
position: relative;
|
||||
height: 22px;
|
||||
padding: 5px;
|
||||
margin: 0px 5px;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
nav .nav-menu-icon:hover {
|
||||
position: relative;
|
||||
height: 22px;
|
||||
padding: 5px;
|
||||
margin: 0px 5px;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
|
||||
nav .nav-menu-icon.selected {
|
||||
background-color: #fff;
|
||||
}
|
||||
nav .nav-menu-icon img {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
nav .nav-menu-icon .nav-notify {
|
||||
top: 3px;
|
||||
}
|
||||
/*marker*/
|
||||
nav .nav-menu {
|
||||
position: relative;
|
||||
height: 16px;
|
||||
padding: 5px;
|
||||
margin: 3px 15px 0px;
|
||||
font-size: 15px;
|
||||
/*border-bottom: 3px solid #364A84;*/
|
||||
}
|
||||
nav .nav-menu.selected {
|
||||
/*border-bottom: 3px solid #9eabb0;*/
|
||||
}
|
||||
nav .nav-notify {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: #fff;
|
||||
/* background-color: #19aeff; */
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-size: 10px;
|
||||
font-weight: 900;
|
||||
padding: 1px 4px;
|
||||
top: 0px;
|
||||
right: -6px;
|
||||
min-width: 10px;
|
||||
text-align: center;
|
||||
border: 1px solid black;
|
||||
}
|
||||
nav .nav-notify.show {
|
||||
display: block;
|
||||
}
|
||||
nav #nav-help-link,
|
||||
nav #nav-search-link,
|
||||
nav #nav-directory-link,
|
||||
nav #nav-apps-link,
|
||||
nav #nav-site-linkmenu,
|
||||
nav #nav-home-link,
|
||||
nav #nav-user-linkmenu
|
||||
{
|
||||
float: right;
|
||||
}
|
||||
nav #nav-user-linkmenu{
|
||||
margin-right: 0px;
|
||||
}
|
||||
nav #nav-home-link, #nav-directory-link, #nav-apps-link{
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
font-weight: bold;
|
||||
margin: 3px 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
nav #nav-directory-link{
|
||||
margin-right: 0px;
|
||||
}
|
||||
nav #nav-home-link{
|
||||
margin-left: 0px;
|
||||
}
|
||||
nav #nav-help-link .menu-popup,
|
||||
nav #nav-search-link .menu-popup,
|
||||
nav #nav-directory-link .menu-popup,
|
||||
nav #nav-apps-link .menu-popup,
|
||||
nav #nav-site-linkmenu .menu-popup {
|
||||
right: 0px;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/messages.png");
|
||||
}
|
||||
|
||||
/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notify.png");
|
||||
}
|
||||
|
||||
nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
|
||||
background-image: url("../../../view/theme/diabook/diabook-aerith/icons/contacts.png");
|
||||
}
|
||||
|
||||
nav #nav-apps-link.selected {
|
||||
background-color: #fff;
|
||||
moz-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
|
||||
#nav-notifications-mark-all {
|
||||
/* padding: 1px 1px 2px 26px; */
|
||||
/* border-bottom: 1px solid #364E59; */
|
||||
/* margin: 0px 0px 2px 0px;
|
||||
padding: 5px 10px; */
|
||||
}
|
||||
|
||||
#nav-notifications-see-all {
|
||||
/* padding: 1px 1px 2px 26px; */
|
||||
/* border-bottom: 1px solid #364E59; */
|
||||
/* margin: 0px 0px 2px 0px;
|
||||
padding: 5px 10px; */
|
||||
}
|
||||
|
||||
.notify-seen {
|
||||
background: none repeat scroll 0 0 #DDDDDD;
|
||||
}
|
||||
|
||||
ul.menu-popup {
|
||||
position: absolute;
|
||||
display: none;
|
||||
width: 11em;
|
||||
background: #fff;
|
||||
color: #2d2d2d;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
list-style: none;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
ul.menu-popup a {
|
||||
display: block;
|
||||
color: #2d2d2d;
|
||||
padding: 5px 10px;
|
||||
text-decoration: none;
|
||||
}
|
||||
ul.menu-popup a:hover {
|
||||
background-color: #3465A4; /*bdcdd4;*/
|
||||
color: #fff;
|
||||
}
|
||||
ul.menu-popup .menu-sep {
|
||||
border-top: 1px solid #9eabb0;
|
||||
}
|
||||
ul.menu-popup li {
|
||||
float: none;
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
ul.menu-popup li img {
|
||||
float: left;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
ul.menu-popup .empty {
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
color: #9eabb0;
|
||||
}
|
||||
/* autocomplete popup */
|
||||
.acpopup {
|
||||
max-height: 150px;
|
||||
background-color: #ffffff;
|
||||
color: #2d2d2d;
|
||||
border: 1px solid #MenuBorder;
|
||||
overflow: auto;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
.acpopupitem {
|
||||
color: #2d2d2d;
|
||||
padding: 4px;
|
||||
clear: left;
|
||||
}
|
||||
.acpopupitem img {
|
||||
float: left;
|
||||
margin-right: 4px;
|
||||
}
|
||||
.acpopupitem.selected {
|
||||
background-color: #bdcdd4;
|
||||
}
|
||||
#nav-notifications-menu {
|
||||
width: 425px !important;
|
||||
max-height: 550px;
|
||||
overflow: auto;
|
||||
}
|
||||
/* #nav-notifications-menu a {
|
||||
display: inline;
|
||||
padding: 5px 0px;
|
||||
margin: 0px 0px 2px 0px;
|
||||
}
|
||||
#nav-notifications-menu li:hover {
|
||||
background-color: #bdcdd4;
|
||||
}*/
|
||||
|
||||
#nav-notifications-menu img {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
}
|
||||
#nav-notifications-menu .contactname {
|
||||
font-weight: bold;
|
||||
}
|
||||
#nav-notifications-menu .notif-when {
|
||||
font-size: 10px;
|
||||
color: #9eabb0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.notif-image {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
padding: 7px 7px 0px 0px;
|
||||
}
|
||||
|
||||
/*profile_side*/
|
||||
#profile_side {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
#ps-usericon{
|
||||
height: 25px
|
||||
}
|
||||
#ps-username{
|
||||
font-size: 1.17em;
|
||||
font-weight: bold;
|
||||
vertical-align: top;
|
||||
position: absolute;
|
||||
padding-top: 4px;
|
||||
padding-left: 5px;
|
||||
word-wrap: break-word;
|
||||
width: 130px;
|
||||
}
|
||||
#ps-username:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
.menu-profile-side{
|
||||
list-style: none;
|
||||
padding-left: 0px;
|
||||
min-height: 0px;
|
||||
}
|
||||
.menu-profile-list{
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
min-height: 16px;
|
||||
list-style: none;
|
||||
}
|
||||
.menu-profile-list:hover{
|
||||
background: aliceBlue;
|
||||
}
|
||||
.menu-profile-list-item{
|
||||
padding-left: 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.menu-profile-list-item:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
/*http://prothemedesign.com/circular-icons/*/
|
||||
.menu-profile-icon.home{
|
||||
background: url("../../../view/theme/diabook/diabook-aerith/icons/home.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;
|
||||
}
|
||||
.menu-profile-icon.photos{
|
||||
background: url("../../../view/theme/diabook/diabook-aerith/icons/mess_side.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.events{
|
||||
background: url("../../../view/theme/diabook/diabook-aerith/icons/events.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.notes{
|
||||
background: url("../../../view/theme/diabook/diabook-aerith/icons/notes.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.foren{
|
||||
background: url("../../../view/theme/diabook/diabook-aerith/icons/pubgroups.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.com_side{
|
||||
background: url("../../../view/theme/diabook/diabook-aerith/icons/com_side.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.pscontacts{
|
||||
background: url("../../../view/theme/diabook/diabook-aerith/icons/pscontacts.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
/* aside */
|
||||
/*marker*/
|
||||
aside {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 180px;
|
||||
padding: 0px 5px 0px 0px;
|
||||
border-right: 1px solid #D2D2D2;
|
||||
float: left;
|
||||
/* background: #F1F1F1; */
|
||||
}
|
||||
aside #page-sidebar{display: none;}
|
||||
aside .vcard .fn {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
aside .vcard .title {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
aside .vcard dl {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
}
|
||||
aside .vcard dt {
|
||||
float: left;
|
||||
margin-left: 0px;
|
||||
/*width: 35%;*/
|
||||
text-align: right;
|
||||
color: #999999;
|
||||
}
|
||||
aside .vcard dd {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
/*width: 60%;*/
|
||||
}
|
||||
aside #profile-extra-links ul {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
aside #profile-extra-links li {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
list-style: none;
|
||||
}
|
||||
aside #dfrn-request-link {
|
||||
display: block;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
color: #ffffff;
|
||||
background: #005c94 url('../../../images/connect-bg.png') no-repeat left center;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
padding: 4px 2px 2px 35px;
|
||||
}
|
||||
aside #dfrn-request-link:hover {
|
||||
text-decoration: none;
|
||||
background-color: #36c;
|
||||
/* background-color: #19aeff; */
|
||||
}
|
||||
aside #profiles-menu {
|
||||
width: 20em;
|
||||
}
|
||||
aside #search-text {
|
||||
width: 173px;
|
||||
height: 17px;
|
||||
padding-left: 10px;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
border-bottom-left-radius: 15px;
|
||||
}
|
||||
aside #side-follow-url {
|
||||
width: 173px;
|
||||
}
|
||||
aside #side-peoplefind-url {
|
||||
width: 173px;
|
||||
}
|
||||
#contact-block {
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
}
|
||||
aside #likes a, a:visited, a:link {
|
||||
color: #3465A4;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
|
||||
}
|
||||
aside #likes a:hover{
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#contact-block .contact-block-h4 {
|
||||
float: left;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
#contact-block .allcontact-link {
|
||||
float: right;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
#contact-block .contact-block-content {
|
||||
clear: both;
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
}
|
||||
#contact-block .contact-block-link {
|
||||
float: left;
|
||||
margin: 0px 2px 2px 0px;
|
||||
}
|
||||
#contact-block .contact-block-link img {
|
||||
widht: 55px;
|
||||
height: 55px;
|
||||
}
|
||||
#lost-password-link {
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
}
|
||||
#login-submit-wrapper{
|
||||
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
aside #login-submit-button{
|
||||
margin-left: 0px!important;
|
||||
}
|
||||
aside #login-extra-links{
|
||||
padding-top: 0px!important;
|
||||
}
|
||||
.group_selected {
|
||||
background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;
|
||||
}
|
||||
.group_unselected {
|
||||
background: url("../../../view/theme/diabook/icons/unselected.png") no-repeat left center;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;
|
||||
}
|
||||
.icon.text_add {
|
||||
background-image: url("../../../images/icons/16/add.png");
|
||||
float: right;
|
||||
opacity: 0.2;
|
||||
margin-right: 14px;
|
||||
}
|
||||
.icon.text_add:hover {
|
||||
background-image: url("../../../images/icons/16/add.png");
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
margin-right: 14px;
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.icon.text_edit {
|
||||
background-image: url("../../../images/icons/10/edit.png");
|
||||
opacity: 0.2;
|
||||
margin-top: 6px;
|
||||
float: right;
|
||||
height: 10px;
|
||||
}
|
||||
.icon.text_edit:hover {
|
||||
background-image: url("../../../images/icons/10/edit.png");
|
||||
opacity: 1;
|
||||
margin-top: 6px;
|
||||
float: right;
|
||||
height: 10px;
|
||||
}
|
||||
/* widget */
|
||||
.widget {
|
||||
margin-bottom: 2em;
|
||||
/*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
|
||||
.action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
|
||||
/* font-size: 12px; */
|
||||
}
|
||||
/*marker*/
|
||||
.widget h3 {
|
||||
padding: 0px;
|
||||
margin: 2px;
|
||||
font-size: 1.05em;
|
||||
}
|
||||
.widget .action {
|
||||
opacity: 0.1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget input.action {
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget:hover .title .action {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget .tool:hover .action {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget .tool:hover .action.ticked {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget ul {
|
||||
padding: 0px;
|
||||
}
|
||||
.widget ul li {
|
||||
padding-left: 16px;
|
||||
min-height: 16px;
|
||||
list-style: none;
|
||||
}
|
||||
#side-bar-photos-albums li{
|
||||
list-style-type: disc;
|
||||
}
|
||||
#side-bar-photos-albums ul li{
|
||||
margin-left: 30px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
#side-bar-photos-albums ul li a{
|
||||
color: #3465A4;
|
||||
}
|
||||
.widget .tool.selected {
|
||||
background: url("../../../view/theme/diabook/diabook-aerith/icons/selected.png") no-repeat left center;
|
||||
}
|
||||
/* widget: search */
|
||||
#add-search-popup {
|
||||
width: 200px;
|
||||
top: 18px;
|
||||
}
|
||||
/* section */
|
||||
section {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 800px;
|
||||
padding: 0px 0px 0px 12px;
|
||||
}
|
||||
body .pageheader{
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
margin-bottom: 20px;
|
||||
margin-top: 0px;
|
||||
max-width: 775px;
|
||||
}
|
||||
.qcomment{
|
||||
max-width: 122px;
|
||||
}
|
||||
#id_username {
|
||||
width: 173px;
|
||||
}
|
||||
#id_password {
|
||||
width: 173px;
|
||||
}
|
||||
#id_openid_url {
|
||||
width: 173px;
|
||||
}
|
||||
#contact-edit-end {
|
||||
}
|
||||
.pager {
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
font-size: 1.0em;
|
||||
clear: both;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.tabs {
|
||||
|
||||
background-position: 0 -20px;
|
||||
background-repeat: repeat-x;
|
||||
height: 27px;
|
||||
padding: 0;
|
||||
}
|
||||
.tab.button {
|
||||
margin-left: 5px;
|
||||
/*background: none repeat scroll 0 0 #F8F8F8;*/
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
font-weight: normal;
|
||||
padding: 3px;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#birthday-wrapper a {
|
||||
color: #3465A4;
|
||||
}
|
||||
/* wall item */
|
||||
.tread-wrapper {
|
||||
border-bottom: 1px solid #D2D2D2;
|
||||
position: relative;
|
||||
padding: 5px;
|
||||
margin-bottom: 0px;
|
||||
width: 775px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
.tread-wrapper a{
|
||||
color: #3465A4;
|
||||
}
|
||||
|
||||
/*marker*/
|
||||
.wall-item-decor {
|
||||
position: absolute;
|
||||
left: 780px;
|
||||
top: -10px;
|
||||
width: 16px;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container {
|
||||
display: table;
|
||||
width: 770px;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-item, .wall-item-container .wall-item-bottom {
|
||||
display: table-row;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-info {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
text-align: left;
|
||||
width: 80px;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-location {
|
||||
padding-right: 40px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-ago {
|
||||
word-wrap: break-word;
|
||||
width: 50px;
|
||||
margin-left: 10px;
|
||||
color: #999;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-photo-container .wall-item-content {
|
||||
|
||||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-content img {
|
||||
max-width: 700px;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-links, .wall-item-photo-container .wall-item-actions {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-links .icon, .wall-item-photo-container .wall-item-actions .icon {
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-links .icon:hover, .wall-item-photo-container .wall-item-actions .icon:hover {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-name {
|
||||
font-weight: bold;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-actions-author {
|
||||
width: 100%;
|
||||
margin-bottom: 0.3em;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-actions-social {
|
||||
float: left;
|
||||
margin-bottom: 1px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-actions-social a {
|
||||
margin-right: 1em;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-actions-tools {
|
||||
float: right;
|
||||
width: 80px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-actions-tools a {
|
||||
float: right;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-actions-tools input {
|
||||
float: right;
|
||||
}
|
||||
.wall-item-photo-container.comment {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
margin-left: 40px;
|
||||
width: 650px;
|
||||
border-bottom: 1px solid #D2D2D2;
|
||||
}
|
||||
.wall-item-photo-container.comment {
|
||||
top: 15px !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
.wall-item-photo-container {
|
||||
display: table;
|
||||
width: 780px;
|
||||
}
|
||||
.my-comment-photo {
|
||||
width: 48px;
|
||||
margin-left: 40px;
|
||||
margin-right: 32px;
|
||||
}
|
||||
.comment-edit-preview {
|
||||
width: 500px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.comment-edit-text-empty {
|
||||
width: 500px;
|
||||
border: 1px solid #D2D2D2;
|
||||
height: 3.2em;
|
||||
color: #2d2d2d;
|
||||
}
|
||||
.comment-edit-text-full {
|
||||
font-size: 12.5px;
|
||||
height: 3.3em;
|
||||
|
||||
border: 1px solid #D2D2D2;
|
||||
width: 500px;
|
||||
}
|
||||
.comment-edit-photo {
|
||||
margin: 10px 0 0;
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
|
||||
.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
|
||||
display: table-row;
|
||||
}
|
||||
.wall-item-bottom {
|
||||
font-size: 13px;
|
||||
}
|
||||
.wall-item-container .wall-item-bottom {
|
||||
/* opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out; */
|
||||
}
|
||||
.wall-item-container:hover .wall-item-bottom {
|
||||
/* opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out; */
|
||||
}
|
||||
.wall-item-container .wall-item-info {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
text-align: left;
|
||||
width: 80px;
|
||||
}
|
||||
.wall-item-container .wall-item-location {
|
||||
padding-right: 40px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-ago {
|
||||
word-wrap: break-word;
|
||||
width: 50px;
|
||||
margin-left: 10px;
|
||||
color: #999;
|
||||
}
|
||||
.wall-item-location {
|
||||
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content {
|
||||
|
||||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-content img {
|
||||
max-width: 700px;
|
||||
}
|
||||
.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-container .wall-item-name {
|
||||
font-weight: bold;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-author {
|
||||
width: 100%;
|
||||
margin-bottom: 0.3em;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-social {
|
||||
float: left;
|
||||
margin-bottom: 1px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-social a {
|
||||
margin-right: 1em;
|
||||
}
|
||||
.wall-item-actions-social a {
|
||||
float: left;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools {
|
||||
float: right;
|
||||
width: 80px;
|
||||
display: table-cell;done
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools a {
|
||||
float: right;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools input {
|
||||
float: right;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-photo-container .wall-item-content {
|
||||
max-width: 690px;
|
||||
}
|
||||
|
||||
/*marker*/
|
||||
.wall-item-container.comment {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
margin-left: 80px;
|
||||
width: 690px;
|
||||
border-bottom: 1px solid hsl(198, 21%, 79%);
|
||||
}
|
||||
.wall-item-container.comment .contact-photo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 16px;
|
||||
/*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
|
||||
|
||||
}
|
||||
.wall-item-container.comment {
|
||||
top: 15px !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
.wall-item-container.comment .wall-item-links {
|
||||
padding-left: 12px;
|
||||
}
|
||||
.wall-item-comment-wrapper {
|
||||
margin: 1px 5px 5px 80px;
|
||||
}
|
||||
.wall-item-comment-wrapper .comment-edit-photo {
|
||||
display: none;
|
||||
}
|
||||
.wall-item-comment-wrapper textarea {
|
||||
height: 1.6em ;
|
||||
width: 100%;
|
||||
font-size: 10px;
|
||||
color: #999999;
|
||||
border: 1px solid #DDD;
|
||||
padding: 0.3em;
|
||||
font-size: 14px;
|
||||
}
|
||||
.wall-item-comment-wrapper .comment-edit-text-full {
|
||||
font-size: 14px;
|
||||
height: 4em;
|
||||
color: #2d2d2d;
|
||||
border: 1px solid #2d2d2d;
|
||||
}
|
||||
.comment-edit-preview {
|
||||
width: 500px;
|
||||
margin-top: 10px;
|
||||
background-color: #fff797;
|
||||
}
|
||||
.comment-edit-preview .contact-photo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 16px;
|
||||
/*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
|
||||
|
||||
}
|
||||
.comment-edit-preview {
|
||||
top: 15px !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
.comment-edit-preview .wall-item-links {
|
||||
padding-left: 12px;
|
||||
}
|
||||
.comment-edit-preview .wall-item-container {
|
||||
width: 700px;
|
||||
}
|
||||
.comment-edit-preview .tread-wrapper {
|
||||
width: 700px;
|
||||
padding: 0;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.shiny {
|
||||
/* border-right: 10px solid #fce94f; */
|
||||
border-right: 1px solid #A7C7F7;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
#jot-preview-content{
|
||||
margin-top: 30px;}
|
||||
|
||||
#jot-preview-content .tread-wrapper {
|
||||
background-color: #fff797;
|
||||
}
|
||||
|
||||
.wall-item-tags {
|
||||
padding-top: 1px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
.tag {
|
||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||
color: #999;
|
||||
padding-left: 3px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.tag a {
|
||||
padding-right: 5px;
|
||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||
color: #999;
|
||||
}
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
background: #FFFFFF;
|
||||
border: 2px solid #364e59;
|
||||
height: 25px;
|
||||
width: 25px;
|
||||
overflow: hidden;
|
||||
padding: 1px;
|
||||
position: absolute !important;
|
||||
top: 40px;
|
||||
left: 30px;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
.wwto .contact-photo {
|
||||
width: auto;
|
||||
height: 25px;
|
||||
}
|
||||
/* contacts menu */
|
||||
.contact-photo-wrapper {
|
||||
position: relative;
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.contact-photo-wrapper.wwto {
|
||||
width: 25px;
|
||||
}
|
||||
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
|
||||
.contact-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.contact-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-name {
|
||||
/* text-align: center; */
|
||||
/*font-weight: bold;*/
|
||||
font-size: 12px;
|
||||
}
|
||||
.contact-details {
|
||||
color: #999999;
|
||||
}
|
||||
/* editor */
|
||||
.jothidden {
|
||||
display: none;
|
||||
}
|
||||
#jot {
|
||||
width: 785px;
|
||||
margin: 0px 2em 20px 0px;
|
||||
}
|
||||
#profile-jot-form #profile-jot-text {
|
||||
height: 2.0em;
|
||||
width: 99%;
|
||||
font-size: 15px;
|
||||
color: #999999;
|
||||
border: 1px solid #DDD;
|
||||
padding: 0.3em;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.grey
|
||||
{
|
||||
display: inline;
|
||||
float: right;
|
||||
}
|
||||
#jot #jot-tools {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
height: 40px;
|
||||
overflow: none;
|
||||
width: 783px;
|
||||
background-color: #fff;
|
||||
border-bottom: 2px solid #9eabb0;
|
||||
}
|
||||
|
||||
#jot #jot-tools li {
|
||||
list-style: none;
|
||||
float: left;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border-bottom: 2px solid #9eabb0;
|
||||
}
|
||||
#jot #jot-tools li a {
|
||||
display: block;
|
||||
color: #cccccc;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
text-align: center;
|
||||
line-height: 40px;
|
||||
overflow: hidden;
|
||||
}
|
||||
#jot #jot-tools li:hover {
|
||||
background-color: #364e59;
|
||||
border-bottom: 2px solid #bdcdd4;
|
||||
}
|
||||
#jot #jot-tools li.perms {
|
||||
float: right;
|
||||
width: 40px;
|
||||
}
|
||||
#jot #jot-tools li.perms a.unlock {
|
||||
width: 30px;
|
||||
border-left: 10px solid #cccccc;
|
||||
background-color: #cccccc;
|
||||
background-position: left center;
|
||||
}
|
||||
#jot #jot-tools li.perms a.lock {
|
||||
width: 30px;
|
||||
border-left: 10px solid #666666;
|
||||
background-color: #666666;
|
||||
}
|
||||
#jot #jot-tools li.submit {
|
||||
float: right;
|
||||
background-color: #cccccc;
|
||||
border-bottom: 2px solid #cccccc;
|
||||
border-right: 1px solid #666666;
|
||||
border-left: 1px solid #666666;
|
||||
}
|
||||
#jot #jot-tools li.submit input {
|
||||
border: 0px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
background-color: #cccccc;
|
||||
color: #666666;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
}
|
||||
#jot #jot-tools li.submit input:hover {
|
||||
background-color: #bdcdd4;
|
||||
color: #666666;
|
||||
}
|
||||
#jot #jot-tools li.loading {
|
||||
float: right;
|
||||
background-color: #ffffff;
|
||||
width: 20px;
|
||||
vertical-align: center;
|
||||
text-align: center;
|
||||
border-top: 2px solid #9eabb0;
|
||||
height: 38px;
|
||||
}
|
||||
#jot #jot-tools li.loading img {
|
||||
margin-top: 10px;
|
||||
}
|
||||
#profile-jot-form #jot-title, #profile-jot-form #jot-category {
|
||||
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-weight: bold;
|
||||
height: 20px;
|
||||
margin: 0 0 5px;
|
||||
width: 60%;
|
||||
border: 1px solid #d2d2d2;
|
||||
}
|
||||
#profile-jot-form #jot-title:-webkit-input-placeholder {
|
||||
font-weight: normal;
|
||||
}
|
||||
#profile-jot-form #jot-title:-moz-placeholder {
|
||||
font-weight: normal;
|
||||
}
|
||||
#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
|
||||
width: 785px;
|
||||
height: 100px;
|
||||
}
|
||||
#jot #jot-title:hover {
|
||||
border: 1px solid #999999;
|
||||
}
|
||||
#jot #jot-title:focus {
|
||||
border: 1px solid #999999;
|
||||
}
|
||||
#jot #character-counter {
|
||||
width: 80px;
|
||||
float: right;
|
||||
text-align: right;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
#jot-perms-icon,
|
||||
#profile-location,
|
||||
#profile-nolocation,
|
||||
#profile-youtube,
|
||||
#profile-video,
|
||||
#profile-audio,
|
||||
#profile-link,
|
||||
#profile-title,
|
||||
#wall-image-upload,
|
||||
#wall-file-upload,
|
||||
#wall-image-upload-div,
|
||||
#wall-file-upload-div,
|
||||
.hover, .focus {
|
||||
cursor: pointer;
|
||||
margin-top: 2px;
|
||||
}
|
||||
/*marker*/
|
||||
#profile-jot-wrapper{
|
||||
margin: 0 20px 20px 0;
|
||||
width: 785px;
|
||||
}
|
||||
/*marker*/
|
||||
#profile-jot-submit-wrapper {
|
||||
margin-bottom: 50px;
|
||||
width: 785px;
|
||||
}
|
||||
|
||||
#profile-jot-submit {
|
||||
float: right;
|
||||
margin-top: 2px;
|
||||
font-size: 14px;
|
||||
|
||||
}
|
||||
#profile-upload-wrapper {
|
||||
float: left;
|
||||
margin-top: 2px;
|
||||
margin-left: 10px;
|
||||
|
||||
}
|
||||
#profile-attach-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-rotator {
|
||||
float: left;
|
||||
margin-left: 30px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-link-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-youtube-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-video-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-audio-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-location-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-jot-perms {
|
||||
float: left;
|
||||
margin-left: 45px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#jot-preview-link {
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-top: 2px;
|
||||
font-size: 9px;
|
||||
font-weight: bolder;
|
||||
cursor: pointer;
|
||||
}
|
||||
#profile-jot-perms{
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
/** buttons **/
|
||||
.button.creation1 {
|
||||
background-color: #fff;
|
||||
border: 1px solid #777777;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
font-weight: bolder;
|
||||
cursor: pointer;
|
||||
}
|
||||
.button.creation2 {
|
||||
background-color: #3465A4;
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
margin-left: 5px;
|
||||
font-weight: bolder;
|
||||
cursor: pointer;
|
||||
}
|
||||
/*input[type="submit"] {
|
||||
border: 0px;
|
||||
background-color: @ButtonBackgroundColor;
|
||||
color: @ButtonColor;
|
||||
padding: 0px 10px;
|
||||
.rounded(5px);
|
||||
height: 18px;
|
||||
}*/
|
||||
/** acl **/
|
||||
#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
|
||||
display: block!important;
|
||||
}
|
||||
#acl-wrapper {
|
||||
width: 690px;
|
||||
float: left;
|
||||
}
|
||||
#acl-search {
|
||||
float: right;
|
||||
background: #ffffff url("../../../images/search_18.png") no-repeat right center;
|
||||
padding-right: 20px;
|
||||
}
|
||||
#acl-showall {
|
||||
float: left;
|
||||
display: block;
|
||||
width: auto;
|
||||
height: 18px;
|
||||
background-color: #cccccc;
|
||||
background-image: url("../../../images/show_all_off.png");
|
||||
background-position: 7px 7px;
|
||||
background-repeat: no-repeat;
|
||||
padding: 7px 5px 0px 30px;
|
||||
color: #999999;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
#acl-showall.selected {
|
||||
color: #000000;
|
||||
background-color: #ff9900;
|
||||
background-image: url("../../../images/show_all_on.png");
|
||||
}
|
||||
#acl-list {
|
||||
height: 210px;
|
||||
border: 1px solid #cccccc;
|
||||
clear: both;
|
||||
margin-top: 30px;
|
||||
overflow: auto;
|
||||
}
|
||||
.acl-list-item {
|
||||
display: block;
|
||||
width: 150px;
|
||||
height: 30px;
|
||||
border: 1px solid #cccccc;
|
||||
margin: 5px;
|
||||
float: left;
|
||||
}
|
||||
.acl-list-item img {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
float: left;
|
||||
margin: 4px;
|
||||
}
|
||||
.acl-list-item p {
|
||||
height: 12px;
|
||||
font-size: 10px;
|
||||
margin: 0px;
|
||||
padding: 2px 0px 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.acl-list-item a {
|
||||
font-size: 8px;
|
||||
display: block;
|
||||
width: 40px;
|
||||
height: 10px;
|
||||
float: left;
|
||||
color: #999999;
|
||||
background-color: #cccccc;
|
||||
background-position: 3px 3px;
|
||||
background-repeat: no-repeat;
|
||||
margin-right: 5px;
|
||||
-webkit-border-radius: 2px ;
|
||||
-moz-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
#acl-wrapper a:hover {
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
}
|
||||
.acl-button-show {
|
||||
background-image: url("../../../images/show_off.png");
|
||||
}
|
||||
.acl-button-hide {
|
||||
background-image: url("../../../images/hide_off.png");
|
||||
}
|
||||
.acl-button-show.selected {
|
||||
color: #000000;
|
||||
background-color: #9ade00;
|
||||
background-image: url("../../../images/show_on.png");
|
||||
}
|
||||
.acl-button-hide.selected {
|
||||
color: #000000;
|
||||
background-color: #ff4141;
|
||||
background-image: url("../../../images/hide_on.png");
|
||||
}
|
||||
.acl-list-item.groupshow {
|
||||
border-color: #9ade00;
|
||||
}
|
||||
.acl-list-item.grouphide {
|
||||
border-color: #ff4141;
|
||||
}
|
||||
/** /acl **/
|
||||
/** tab buttons 14618a**/
|
||||
/*marker*/
|
||||
ul.tabs {
|
||||
list-style-type: none;
|
||||
padding-bottom: 10px;
|
||||
font-size: 13px;
|
||||
width: 805px;
|
||||
}
|
||||
ul.tabs li {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
}
|
||||
ul.tabs li .active {
|
||||
background-color: #3465A4;
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 2px 2px 2px #CFCFCF;
|
||||
margin-left: 5px;
|
||||
}
|
||||
//settings tabs
|
||||
ul.rs_tabs {
|
||||
list-style-type: none;
|
||||
font-size: 11px;
|
||||
}
|
||||
ul.rs_tabs li {
|
||||
float: left;
|
||||
margin-bottom: 30px;
|
||||
clear: both;
|
||||
}
|
||||
ul.rs_tabs li .selected {
|
||||
background-color: #3465A4;
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 2px 2px 2px #CFCFCF;
|
||||
font-size: 13px;
|
||||
}
|
||||
.rs_tabs {
|
||||
list-style-type: none;
|
||||
font-size: 11px;
|
||||
background-position: 0 -20px;
|
||||
background-repeat: repeat-x;
|
||||
height: 27px;
|
||||
padding: 0;
|
||||
}
|
||||
.rs_tab.button {
|
||||
/*background: none repeat scroll 0 0 #F8F8F8;*/
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
font-weight: bolder;
|
||||
padding: 3px;
|
||||
color: #333333;
|
||||
text-decoration: none;
|
||||
}
|
||||
/**
|
||||
* Form fields
|
||||
*/
|
||||
.field {
|
||||
margin-bottom: 10px;
|
||||
padding-bottom: 10px;
|
||||
overflow: auto;
|
||||
width: 100%;
|
||||
}
|
||||
.field label {
|
||||
float: left;
|
||||
width: 200px;
|
||||
}
|
||||
.field input, .field textarea {
|
||||
width: 400px;
|
||||
}
|
||||
.field textarea {
|
||||
height: 100px;
|
||||
}
|
||||
.field .field_help {
|
||||
display: block;
|
||||
margin-left: 200px;
|
||||
color: #666666;
|
||||
}
|
||||
.field .onoff {
|
||||
float: left;
|
||||
width: 80px;
|
||||
}
|
||||
.field .onoff a {
|
||||
display: block;
|
||||
border: 1px solid #666666;
|
||||
background-image: url("../../../images/onoff.jpg");
|
||||
background-repeat: no-repeat;
|
||||
padding: 4px 2px 2px 2px;
|
||||
height: 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.field .onoff .off {
|
||||
border-color: #666666;
|
||||
padding-left: 40px;
|
||||
background-position: left center;
|
||||
background-color: #cccccc;
|
||||
color: #666666;
|
||||
text-align: right;
|
||||
}
|
||||
.field .onoff .on {
|
||||
border-color: #204A87;
|
||||
padding-right: 40px;
|
||||
background-position: right center;
|
||||
background-color: #D7E3F1;
|
||||
color: #204A87;
|
||||
text-align: left;
|
||||
}
|
||||
.field .hidden {
|
||||
display: none!important;
|
||||
}
|
||||
.field.radio .field_help {
|
||||
margin-left: 0px;
|
||||
}
|
||||
.suggest-select {
|
||||
width: 500px;
|
||||
height: 350px;
|
||||
}
|
||||
.message-to-select {
|
||||
width: 400px;
|
||||
height: 150px;
|
||||
}
|
||||
#directory-search-form{
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
#profile-edit-links-end {
|
||||
clear: both;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
|
||||
|
||||
#profile-edit-links li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.profile-edit-side-div {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#register-form label,
|
||||
#profile-edit-form label {
|
||||
width: 300px; float: left;
|
||||
}
|
||||
|
||||
.required {
|
||||
display: inline;
|
||||
color: #B20202;
|
||||
}
|
||||
|
||||
/* oauth */
|
||||
.oauthapp {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
border-bottom: 2px solid #cccccc;
|
||||
padding-bottom: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.oauthapp img {
|
||||
float: left;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
margin: 10px;
|
||||
}
|
||||
.oauthapp img.noicon {
|
||||
background-image: url("../../../images/icons/48/plugin.png");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.oauthapp a {
|
||||
float: left;
|
||||
}
|
||||
/* contacts */
|
||||
.contact-entry-wrapper {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
float: left;
|
||||
}
|
||||
/* photo */
|
||||
.photo {
|
||||
box-shadow: 2px 2px 5px 0px #000000;
|
||||
margin: 0px;
|
||||
border-radius: 10px;
|
||||
height: 145px !important;
|
||||
width: 145px !important;
|
||||
}
|
||||
.lframe {
|
||||
float: left;
|
||||
/*margin: 0px 10px 10px 0px;*/
|
||||
}
|
||||
/* profile match wrapper */
|
||||
.profile-match-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.profile-match-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.profile-match-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.profile-match-wrapper {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
|
||||
.contact-photo-menu-button {
|
||||
position: relative;
|
||||
background-image: url("../../../images/icons/16/menu.png");
|
||||
background-position: top left;
|
||||
background-repeat: no-repeat;
|
||||
margin: 0px 0px -16px 0px;
|
||||
padding: 0px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
top: -16px; left:0px;
|
||||
overflow: hidden;
|
||||
text-indent: 40px;
|
||||
display: none;
|
||||
|
||||
}
|
||||
.contact-photo-menu {
|
||||
width: 11em;
|
||||
border: 3px solid #364e59;
|
||||
color: #2d2d2d;
|
||||
background: #FFFFFF;
|
||||
/* position: absolute;*/
|
||||
position: relative;
|
||||
left: 0px; top: 0px;
|
||||
display: none;
|
||||
z-index: 10000;
|
||||
}
|
||||
.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
|
||||
.contact-photo-menu li a {
|
||||
display: block;
|
||||
padding: 5px 10px;
|
||||
color: #2d2d2d;
|
||||
text-decoration: none;
|
||||
}
|
||||
.contact-photo-menu li a:hover {
|
||||
background-color: #bdcdd4;
|
||||
}
|
||||
|
||||
/* page footer */
|
||||
footer {
|
||||
height: 100px;
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 1px solid #D2D2D2;
|
||||
padding-left: 9px;
|
||||
margin: 0 0 0 .8ex;
|
||||
color: #777;
|
||||
}
|
||||
.oembed {
|
||||
|
||||
font-weight: bold;
|
||||
}
|
||||
.aprofile dt{
|
||||
box-shadow: 1px 1px 5px 0;
|
||||
color: #666666;
|
||||
margin: 15px 0 5px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
/* ================== */
|
||||
/* = Contacts Block = */
|
||||
/* ================== */
|
||||
|
||||
.contact-block-img {
|
||||
width: 55px;
|
||||
height: 55px;
|
||||
padding-right: 3px;
|
||||
}
|
||||
.contact-block-div {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.contact-block-textdiv { width: 150px; height: 34px; float: left; }
|
||||
#contact-block-end { clear: both; }
|
||||
|
||||
#group-edit-wrapper {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#group-members-end {
|
||||
clear: both;
|
||||
}
|
||||
#group-edit-desc {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
/*
|
||||
#group-separator,
|
||||
#prof-separator { display: none;}
|
||||
*/
|
||||
#prof-members-end{
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
|
||||
margin-bottom: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#prvmail-submit {
|
||||
float: right;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#prvmail-subject
|
||||
{
|
||||
background: none repeat scroll 0 0 #FFFFFF;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-weight: bold;
|
||||
height: 20px;
|
||||
margin: 0 0 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
#prvmail-form{
|
||||
width: 597px;
|
||||
}
|
||||
|
||||
#prvmail-upload-wrapper,
|
||||
#prvmail-link-wrapper,
|
||||
#prvmail-rotator-wrapper {
|
||||
float: left;
|
||||
margin-top: 10px;
|
||||
margin-right: 10px;
|
||||
width: 24px;
|
||||
}
|
||||
|
||||
#prvmail-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-list-sender,
|
||||
.mail-list-detail {
|
||||
float: left;
|
||||
}
|
||||
.mail-list-detail {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.mail-list-subject {
|
||||
font-size: 1.1em;
|
||||
margin-top: 10px;
|
||||
}
|
||||
a.mail-list-link {
|
||||
display: block;
|
||||
font-size: 1.3em;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
/*
|
||||
*a.mail-list-link:hover {
|
||||
* background-color: #15607B;
|
||||
* color: #F5F6FB;
|
||||
*}
|
||||
*/
|
||||
|
||||
.mail-list-outside-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-list-outside-wrapper {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.mail-list-delete-wrapper {
|
||||
float: right;
|
||||
margin-right: 30px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.mail-list-delete-icon {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.mail-conv-sender,
|
||||
.mail-conv-detail {
|
||||
float: left;
|
||||
}
|
||||
.mail-conv-detail {
|
||||
margin-left: 20px;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.mail-conv-subject {
|
||||
font-size: 1.4em;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.mail-conv-outside-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-conv-outside-wrapper {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.mail-conv-delete-wrapper {
|
||||
float: right;
|
||||
margin-right: 30px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
.mail-conv-break {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-conv-delete-icon {
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* ========== */
|
||||
/* = Events = */
|
||||
/* ========== */
|
||||
.eventcal {
|
||||
float: left;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.vevent {
|
||||
position: relative;
|
||||
width: 400px;
|
||||
padding: 20px;
|
||||
padding-top: 10px;
|
||||
margin: 0 0px;
|
||||
margin-bottom: 10px;
|
||||
background-color: white;
|
||||
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
|
||||
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.vevent .event-location {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.vevent .event-description {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
font-size: 1.1em;
|
||||
font-weight: bolder;
|
||||
}
|
||||
.vevent .event-start, .vevent .event-end {
|
||||
|
||||
margin-right: 20px;
|
||||
margin-bottom: 2px;
|
||||
margin-top: 2px;
|
||||
font-size: 0.9em;
|
||||
text-align: left;
|
||||
}
|
||||
.event-start .dtstart, .event-end .dtend {
|
||||
float: right;
|
||||
}
|
||||
|
||||
|
||||
#new-event-link {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.edit-event-link, .plink-event-link {
|
||||
float: left;
|
||||
margin-top: 4px;
|
||||
margin-right: 4px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.event-description:before {
|
||||
content: url("../../../view/theme/diabook/icons/events2.png") !important;
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.event-start, .event-end {
|
||||
margin-left: 10px;
|
||||
width: 330px;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.event-start .dtstart, .event-end .dtend {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.event-list-date {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.prevcal, .nextcal {
|
||||
float: left;
|
||||
margin-left: 32px;
|
||||
margin-right: 32px;
|
||||
margin-top: 64px;
|
||||
}
|
||||
.event-calendar-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
.calendar {
|
||||
font-family: Courier, monospace;
|
||||
}
|
||||
.calendar.eventcal a {
|
||||
color: #3465A4;
|
||||
}
|
||||
.today {
|
||||
font-weight: bold;
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
.settings-block {
|
||||
border: 1px solid #AAA;
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.app-title {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#identity-manage-desc {
|
||||
margin-top:15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#identity-manage-choose {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#identity-submit {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#photo-prev-link, #photo-next-link {
|
||||
padding: 10px;
|
||||
float: left;
|
||||
}
|
||||
.lightbox{
|
||||
float: left;
|
||||
}
|
||||
#photo-photo {
|
||||
float: left;
|
||||
}
|
||||
#photo-like-div .wall-item-like-buttons {
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.wall-item-like-buttons .icon.like {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#photo-photo-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.tabs .comment-wwedit-wrapper {
|
||||
display: block;
|
||||
margin-top: 30px;
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.profile-match-photo {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
.profile-match-name {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 120px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.profile-match-break,
|
||||
.profile-match-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.profile-match-connect {
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.profile-match-wrapper {
|
||||
float: left;
|
||||
padding: 10px;
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
scroll: auto;
|
||||
}
|
||||
#profile-match-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* ============= */
|
||||
/* = Directory = */
|
||||
/* ============= */
|
||||
/* contacts menu */
|
||||
section .directory-item dl {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
section .directory-item dt {
|
||||
float: left;
|
||||
margin-left: 0px;
|
||||
text-align: right;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
section .directory-item dd {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.directory-profile-wrapper {
|
||||
float: left;
|
||||
max-height: 178px;
|
||||
overflow: hidden;
|
||||
width: 635px;
|
||||
}
|
||||
|
||||
.directory-copy-wrapper {
|
||||
float:left;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.contact-photo-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-photo-menu-button {
|
||||
display: none;
|
||||
/* position: absolute; */
|
||||
/* position: absolute; */
|
||||
left: 0px;
|
||||
top: -16px;
|
||||
}
|
||||
.contact-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.contact-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo-menu-button {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
.directory-item {
|
||||
float: left;
|
||||
width: 800px;
|
||||
height: 200px;
|
||||
}
|
||||
.directory-item .contact-photo {
|
||||
width: 175px;
|
||||
height: 175px;
|
||||
}
|
||||
|
||||
section .directory-photo-wrapper {
|
||||
float: left;
|
||||
height: 200px;
|
||||
width: 165px;
|
||||
}
|
||||
|
||||
.directory-item .contact-photo img {
|
||||
width: 175px;
|
||||
height: 175px;
|
||||
}
|
||||
.contact-name {
|
||||
text-align: left;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
}
|
||||
.contact-details {
|
||||
color: #999999;
|
||||
}
|
||||
#side-bar-photos-albums{
|
||||
margin-top: 15px;
|
||||
}
|
||||
.photo-top-photo, .photo-album-photo {
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
.photo-album-image-wrapper, .photo-top-image-wrapper {
|
||||
float: left;
|
||||
-moz-box-shadow: 0 0 5px #888;
|
||||
-webkit-box-shadow: 0 0 5px #888;
|
||||
box-shadow: 0 0 5px #888;
|
||||
background-color: #000;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
padding-bottom: 20px;
|
||||
position: relative;
|
||||
margin: 0 10px 10px 0;
|
||||
width: 200px; height: 140px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.photo-top-album-name {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
padding-left: 3px;
|
||||
background-color: #EEE;
|
||||
}
|
||||
.photo-top-album-link{
|
||||
color: #3465A4;
|
||||
}
|
||||
.photo-top-album-img{
|
||||
|
||||
}
|
||||
/*.photo-top-image-wrapper {
|
||||
position: relative;
|
||||
float: left;
|
||||
margin-top: 15px;
|
||||
margin-right: 15px;
|
||||
width: 200px; height: 200px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.photo-top-album-name {
|
||||
width: 100%;
|
||||
min-height: 2em;
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
padding: 0px 3px;
|
||||
padding-top: 0.5em;
|
||||
background-color: rgb(255, 255, 255);
|
||||
}*/
|
||||
#photo-top-end {
|
||||
clear: both;
|
||||
margin-bottom: auto;
|
||||
}
|
||||
|
||||
#photo-top-links {
|
||||
margin-bottom: 30px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
#photos-upload-newalbum-div {
|
||||
float: left;
|
||||
width: 175px;
|
||||
.page-type {
|
||||
font-size: inherit;
|
||||
font-style: inherit;
|
||||
}
|
||||
.directory-detailscolumn-wrapper {
|
||||
float: inherit;
|
||||
width: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.directory-profile-wrapper dl {
|
||||
margin-top: auto;
|
||||
margin-bottom: auto;
|
||||
}
|
||||
.directory-profile-title {
|
||||
font-weight: auto;
|
||||
margin-bottom: auto;
|
||||
font-size: auto;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -219,6 +219,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -185,6 +185,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -185,6 +185,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -185,6 +185,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -185,6 +185,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -218,6 +218,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -218,6 +218,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -185,6 +185,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -185,6 +185,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -185,6 +185,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -185,6 +185,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -219,6 +219,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -219,6 +219,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -1,2585 +1,88 @@
|
|||
/**
|
||||
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
|
||||
* Additional Changes: Michael Vogel <icarus@dabo.de>
|
||||
**/
|
||||
@import url('style-network.css');
|
||||
|
||||
/* ========= */
|
||||
/* = Admin = */
|
||||
/* ========= */
|
||||
1024
|
||||
#adminpage {
|
||||
/* width: 80%;*/
|
||||
}
|
||||
|
||||
#pending-update {
|
||||
float:right;
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
background-color: #FF0000;
|
||||
padding: 0em 0.3em;
|
||||
}
|
||||
|
||||
.admin.linklist {
|
||||
border: 0px; padding: 0px;
|
||||
}
|
||||
|
||||
.admin.link {
|
||||
list-style-position: inside;
|
||||
font-size: 1em;
|
||||
padding: 5px;
|
||||
width: 100px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
#adminpage dl {
|
||||
clear: left;
|
||||
margin-bottom: 2px;
|
||||
padding-bottom: 2px;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
|
||||
#adminpage dt {
|
||||
width: 200px;
|
||||
float: left;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#adminpage dd {
|
||||
margin-left: 200px;
|
||||
}
|
||||
#adminpage h3 {
|
||||
border-bottom: 1px solid #898989;
|
||||
margin-bottom: 5px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#adminpage .submit {
|
||||
clear:left;
|
||||
}
|
||||
|
||||
#adminpage #pluginslist {
|
||||
margin: 0px; padding: 0px;
|
||||
}
|
||||
|
||||
#adminpage .plugin {
|
||||
list-style: none;
|
||||
display: block;
|
||||
/* border: 1px solid #888888; */
|
||||
padding: 1em;
|
||||
margin-bottom: 5px;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
#adminpage .toggleplugin {
|
||||
float:left;
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
|
||||
#adminpage table th { text-align: left;}
|
||||
#adminpage td .icon { float: left;}
|
||||
#adminpage table#users img { width: 16px; height: 16px; }
|
||||
#adminpage table tr:hover { background-color: #eeeeee; }
|
||||
#adminpage .selectall { text-align: right; }
|
||||
/* icons */
|
||||
|
||||
.icon.contacts {
|
||||
background-image: url("../../../view/theme/diabook/icons/contacts.png");}
|
||||
.icon.notifications {
|
||||
background-image: url("../../../view/theme/diabook/icons/notifications.png");}
|
||||
.icon.notify {
|
||||
background-image: url("../../../view/theme/diabook/icons/notify.png");}
|
||||
.icon.messages {
|
||||
background-image: url("../../../view/theme/diabook/icons/messages.png");}
|
||||
.icon.community {
|
||||
background-image: url("../../../view/theme/diabook/icons/community.png");}
|
||||
|
||||
.icon.drop { background-image: url("../../../view/theme/diabook/icons/drop.png");}
|
||||
.icon.drophide { background-image: url("../../../view/theme/diabook/icons/drop.png");}
|
||||
.icon.dislike { background-image: url("../../../view/theme/diabook/icons/dislike.png");}
|
||||
.icon.like { background-image: url("../../../view/theme/diabook/icons/like.png");}
|
||||
.icon.pencil { background-image: url("../../../view/theme/diabook/icons/pencil.png");}
|
||||
.icon.recycle { background-image: url("../../../view/theme/diabook/icons/recycle.png");}
|
||||
.icon.remote-link { background-image: url("../../../view/theme/diabook/icons/remote.png");}
|
||||
.icon.tagged { background-image: url("../../../view/theme/diabook/icons/tagged.png");}
|
||||
.icon.file-as { background-image: url("../../../view/theme/diabook/icons/file_as.png");}
|
||||
.star-item.icon.unstarred { background-image: url("../../../view/theme/diabook/icons/unstarred.png");}
|
||||
.star-item.icon.starred { background-image: url("../../../view/theme/diabook/icons/starred.png");}
|
||||
.icon.link { background-image: url("../../../view/theme/diabook/icons/link.png");}
|
||||
.icon.lock { background-image: url("../../../view/theme/diabook/icons/lock.png");}
|
||||
.icon.unlock { background-image: url("../../../view/theme/diabook/icons/unlock.png");}
|
||||
.icon.language { background-image: url("../../../view/theme/diabook/icons/language.png");}
|
||||
|
||||
|
||||
|
||||
.camera { background-image: url("../../../view/theme/diabook/icons/camera.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.attach { background-image: url("../../../view/theme/diabook/icons/attach.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video2 { background-image: url("../../../view/theme/diabook/icons/video.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.weblink { background-image: url("../../../view/theme/diabook/icons/weblink.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.globe { background-image: url("../../../view/theme/diabook/icons/globe.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.unglobe { background-image: url("../../../view/theme/diabook/icons/unglobe.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.edit {background-image: url("../../../view/theme/diabook/icons/pencil2.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
|
||||
|
||||
|
||||
|
||||
|
||||
.article { background-position: -50px 0px;}
|
||||
/*.audio { background-position: -70px 0px;}*/
|
||||
.block { background-position: -90px 0px;}
|
||||
/*.drop { background-position: -110px 0px;}*/
|
||||
/*.drophide { background-position: -130px 0px;}*/
|
||||
/*.edit { background-position: -150px 0px;}*/
|
||||
/*.camera { background-position: -170px 0px;}*/
|
||||
/*.dislike { background-position: -190px 0px;}*/
|
||||
/*.like { background-position: -210px 0px;}*/
|
||||
/*.link { background-position: -230px 0px;}*/
|
||||
|
||||
/*.globe { background-position: -50px -20px;}*/
|
||||
/*.noglobe { background-position: -70px -20px;}*/
|
||||
.no { background-position: -90px -20px;}
|
||||
.pause { background-position: -110px -20px;}
|
||||
.play { background-position: -130px -20px;}
|
||||
/*.pencil { background-position: -150px -20px;}*/
|
||||
.small-pencil { background-position: -170px -20px;}
|
||||
/*.recycle { background-position: -190px -20px;}*/
|
||||
/*.remote-link { background-position: -210px -20px;}*/
|
||||
.share { background-position: -230px -20px;}
|
||||
|
||||
.tools { background-position: -50px -40px;}
|
||||
/*.lock { background-position: -70px -40px;}*/
|
||||
|
||||
/*.video { background-position: -110px -40px;}*/
|
||||
.youtube { background-position: -130px -40px;}
|
||||
|
||||
/*.attach { background-position: -190px -40px;}*/
|
||||
/*.language { background-position: -210px -40px;}*/
|
||||
|
||||
|
||||
.icon.on { background-image: url("../../../view/theme/diabook/icons/toogle_on.png"); background-repeat: no-repeat;}
|
||||
.icon.off { background-image: url("../../../view/theme/diabook/icons/toogle_off.png"); background-repeat: no-repeat;}
|
||||
.icon.prev { background-image: url("../../../view/theme/diabook/icons/prev.png"); background-repeat: no-repeat;}
|
||||
.icon.next { background-image: url("../../../view/theme/diabook/icons/next.png"); background-repeat: no-repeat;}
|
||||
/*.tagged { background-position: -130px -60px;}*/
|
||||
|
||||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../images/content-types.png');
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
.type-image { background-position: -20px 0px; }
|
||||
.type-audio { background-position: -40px 0px; }
|
||||
.type-text { background-position: -60px 0px; }
|
||||
.type-unkn { background-position: -80px 0px; }
|
||||
|
||||
.icon.drop, .icon.drophide {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.icon {
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
/*background-image: url('icons.png');*/
|
||||
}
|
||||
|
||||
.icon {
|
||||
background-color: transparent ;
|
||||
background-repeat: no-repeat;
|
||||
/* background-position: left center; */
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
text-indent: -9999px;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
.icon.border.camera{
|
||||
background-image: url("../../../view/theme/diabook/icons/camera.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.icon.border.link{
|
||||
background-image: url("../../../view/theme/diabook/icons/weblink.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.icon.text {
|
||||
text-indent: 0px;
|
||||
}
|
||||
.icon.s10 {
|
||||
min-width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
.icon.s10.notify {
|
||||
background-image: url("../../../images/icons/10/notify_off.png");
|
||||
}
|
||||
.icon.s10.gear {
|
||||
background-image: url("../../../images/icons/10/gear.png");
|
||||
}
|
||||
.icon.s10.add {
|
||||
background-image: url("../../../images/icons/10/add.png");
|
||||
}
|
||||
.icon.s10.delete {
|
||||
background-image: url("../../../images/icons/10/delete.png");
|
||||
}
|
||||
.icon.s10.edit {
|
||||
background-image: url("../../../images/icons/10/edit.png");
|
||||
}
|
||||
.icon.s10.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s10.menu {
|
||||
background-image: url("../../../images/icons/10/menu.png");
|
||||
}
|
||||
.icon.s10.link {
|
||||
background-image: url("../../../images/icons/10/link.png");
|
||||
}
|
||||
.icon.s10.lock {
|
||||
background-image: url("../../../images/icons/10/lock.png");
|
||||
}
|
||||
.icon.s10.unlock {
|
||||
background-image: url("../../../images/icons/10/unlock.png");
|
||||
}
|
||||
.icon.s10.text {
|
||||
padding: 2px 0px 0px 15px;
|
||||
font-size: 10px;
|
||||
}
|
||||
.icon.s16 {
|
||||
min-width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.icon.s16.notify {
|
||||
background-image: url("../../../images/icons/16/notify_off.png");
|
||||
}
|
||||
.icon.s16.gear {
|
||||
background-image: url("../../../images/icons/16/gear.png");
|
||||
}
|
||||
.icon.s16.add {
|
||||
background-image: url("../../../images/icons/16/add.png");
|
||||
}
|
||||
.icon.s16.delete {
|
||||
background-image: url("../../../images/icons/16/delete.png");
|
||||
}
|
||||
/*.icon.s16.edit {
|
||||
background-image: url("../../../images/icons/16/edit.png");
|
||||
}*/
|
||||
.icon.s16.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s16.menu {
|
||||
background-image: url("../../../images/icons/16/menu.png");
|
||||
}
|
||||
/*.icon.s16.link {
|
||||
background-image: url("../../../images/icons/16/link.png");
|
||||
}*/
|
||||
.icon.s16.lock {
|
||||
background-image: url("../../../images/icons/16/lock.png");
|
||||
}
|
||||
.icon.s16.unlock {
|
||||
background-image: url("../../../images/icons/16/unlock.png");
|
||||
}
|
||||
.icon.s16.text {
|
||||
padding: 4px 0px 0px 20px;
|
||||
font-size: 10px;
|
||||
}
|
||||
.icon.s22 {
|
||||
min-width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
.icon.s22.notify {
|
||||
background-image: url("../../../images/icons/22/notify_off.png");
|
||||
}
|
||||
.icon.s22.gear {
|
||||
background-image: url("../../../images/icons/22/gear.png");
|
||||
}
|
||||
.icon.s22.add {
|
||||
background-image: url("../../../images/icons/22/add.png");
|
||||
}
|
||||
.icon.s22.delete {
|
||||
background-image: url("../../../images/icons/22/delete.png");
|
||||
}
|
||||
.icon.s22.edit {
|
||||
background-image: url("../../../images/icons/22/edit.png");
|
||||
}
|
||||
.icon.s22.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s22.menu {
|
||||
background-image: url("../../../images/icons/22/menu.png");
|
||||
}
|
||||
.icon.s22.link {
|
||||
background-image: url("../../../images/icons/22/link.png");
|
||||
}
|
||||
.icon.s22.lock {
|
||||
background-image: url("../../../images/icons/22/lock.png");
|
||||
}
|
||||
.icon.s22.unlock {
|
||||
background-image: url("../../../images/icons/22/unlock.png");
|
||||
}
|
||||
.icon.s22.text {
|
||||
padding: 10px 0px 0px 25px;
|
||||
width: 200px;
|
||||
}
|
||||
.icon.s48 {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.icon.s48.notify {
|
||||
background-image: url("../../../images/icons/48/notify_off.png");
|
||||
}
|
||||
.icon.s48.gear {
|
||||
background-image: url("../../../images/icons/48/gear.png");
|
||||
}
|
||||
.icon.s48.add {
|
||||
background-image: url("../../../images/icons/48/add.png");
|
||||
}
|
||||
.icon.s48.delete {
|
||||
background-image: url("../../../images/icons/48/delete.png");
|
||||
}
|
||||
.icon.s48.edit {
|
||||
background-image: url("../../../images/icons/48/edit.png");
|
||||
}
|
||||
.icon.s48.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s48.menu {
|
||||
background-image: url("../../../images/icons/48/menu.png");
|
||||
}
|
||||
.icon.s48.link {
|
||||
background-image: url("../../../images/icons/48/link.png");
|
||||
}
|
||||
.icon.s48.lock {
|
||||
background-image: url("../../../images/icons/48/lock.png");
|
||||
}
|
||||
.icon.s48.unlock {
|
||||
background-image: url("../../../images/icons/48/unlock.png");
|
||||
}
|
||||
|
||||
#contact-edit-links ul {
|
||||
list-style: none;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.hide-comments-outer {
|
||||
margin-left: 80px;
|
||||
margin-bottom: 5px;
|
||||
width: 675px;
|
||||
border-bottom: 1px solid #BDCDD4;
|
||||
border-top: 1px solid #BDCDD4;
|
||||
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
/* global */
|
||||
body {
|
||||
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 13px;
|
||||
background-color: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 50px auto auto;
|
||||
display: table;
|
||||
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #3465A4;
|
||||
/* color: #3e3e8c; */
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
/* color: blue; */
|
||||
text-decoration: underline
|
||||
}
|
||||
|
||||
.wall-item-name-link {
|
||||
/* float: left;*/
|
||||
}
|
||||
|
||||
.wall-item-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.left {
|
||||
float: left;
|
||||
}
|
||||
.right {
|
||||
float: right;
|
||||
}
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
.clear {
|
||||
clear: both;
|
||||
}
|
||||
.fakelink {
|
||||
color: #3465A4;
|
||||
/* color: #3e3e8c; */
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.fakelink:hover {
|
||||
/* color: blue; */
|
||||
/*color: #005c94; */
|
||||
text-decoration: underline;
|
||||
}
|
||||
code {
|
||||
font-family: Courier, monospace;
|
||||
white-space: pre;
|
||||
display: block;
|
||||
overflow: auto;
|
||||
border: 1px solid #444;
|
||||
background: #EEE;
|
||||
color: #444;
|
||||
padding: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
#panel {
|
||||
position: absolute;
|
||||
width: 12em;
|
||||
background: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 0px;
|
||||
padding: 1em;
|
||||
list-style: none;
|
||||
border: 3px solid #364e59;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
/* tool */
|
||||
.tool {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
padding: 3px;
|
||||
}
|
||||
#saved-search-ul .tool:hover,
|
||||
#nets-sidebar .tool:hover,
|
||||
#sidebar-group-list .tool:hover,
|
||||
#fileas-sidebar .tool:hover {
|
||||
background: #E7F2F7;
|
||||
}
|
||||
.tool .label {
|
||||
float: left;
|
||||
}
|
||||
.tool .action {
|
||||
float: right;
|
||||
}
|
||||
.tool a {
|
||||
color: ##3F8FBA;
|
||||
}
|
||||
.tool a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
/* popup notifications */
|
||||
div.jGrowl div.notice {
|
||||
background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
|
||||
color: #ffffff;
|
||||
padding-left: 58px;
|
||||
}
|
||||
div.jGrowl div.info {
|
||||
background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
|
||||
color: #ffffff;
|
||||
padding-left: 58px;
|
||||
}
|
||||
/* header */
|
||||
header {
|
||||
position: fixed;
|
||||
left: 0%;
|
||||
right: 80%;
|
||||
top: 0px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
width: 22%;
|
||||
height: 32px;
|
||||
background: #000;
|
||||
z-index: 100;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
header #site-location {
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
}
|
||||
header #banner {
|
||||
overflow: hidden;
|
||||
text-align: left;
|
||||
width: 82%%;
|
||||
margin-left: 25%;
|
||||
}
|
||||
header #banner a,
|
||||
header #banner a:active,
|
||||
header #banner a:visited,
|
||||
header #banner a:link,
|
||||
header #banner a:hover {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
vertical-align: middle;
|
||||
font-weight: bolder;
|
||||
margin-left: 3px;
|
||||
}
|
||||
header #banner #logo-img {
|
||||
height: 25px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
header #banner #logo-text {
|
||||
font-size: 20px;
|
||||
position: absolute;
|
||||
top: 10%;
|
||||
}
|
||||
/* nav */
|
||||
nav {
|
||||
width: 80%;
|
||||
height: 32px;
|
||||
position: fixed;
|
||||
left: 22%;
|
||||
top: 0px;
|
||||
padding: 0px;
|
||||
background: #000;
|
||||
color: #ffffff;
|
||||
z-index: 99;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
nav a,
|
||||
nav a:active,
|
||||
nav a:visited,
|
||||
nav a:link,
|
||||
nav a:hover {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
}
|
||||
nav #banner {
|
||||
overflow: hidden;
|
||||
/*text-align: center;*/
|
||||
width: 100%;
|
||||
}
|
||||
nav #banner a,
|
||||
nav #banner a:active,
|
||||
nav #banner a:visited,
|
||||
nav #banner a:link,
|
||||
nav #banner a:hover {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
nav #banner #logo-img {
|
||||
height: 22px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
nav #banner #logo-text {
|
||||
font-size: 22px;
|
||||
}
|
||||
nav #navbar{
|
||||
}
|
||||
nav ul {
|
||||
margin: 0px;
|
||||
padding: 0px 20px;
|
||||
}
|
||||
nav ul li {
|
||||
list-style: none;
|
||||
margin: 0px;
|
||||
/* padding: 1px 1px 3px 1px; */
|
||||
float: left;
|
||||
}
|
||||
nav ul li .menu-popup {
|
||||
left: 0px;
|
||||
right: auto;
|
||||
}
|
||||
|
||||
nav #logo-img {
|
||||
height: 25px;
|
||||
margin-top: 4px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
nav #logo-text {
|
||||
font-size: 22px;
|
||||
margin-top: 3px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
nav .nav-menu-search {
|
||||
position: relative;
|
||||
|
||||
margin: 4px 17px;
|
||||
margin-right: 0px;
|
||||
height: 17px;
|
||||
width: 180px;
|
||||
|
||||
}
|
||||
|
||||
nav #search-box #search-text {
|
||||
background-image: url('icons/lupe.png');
|
||||
background-repeat:no-repeat;
|
||||
padding-left:20px;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
border-bottom-left-radius: 15px;
|
||||
}
|
||||
|
||||
|
||||
nav .nav-menu-icon {
|
||||
position: relative;
|
||||
height: 22px;
|
||||
padding: 5px;
|
||||
margin: 0px 7px;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
nav .nav-menu-icon.selected {
|
||||
background-color: #fff;
|
||||
}
|
||||
nav .nav-menu-icon img {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
nav .nav-menu-icon .nav-notify {
|
||||
top: 3px;
|
||||
}
|
||||
/*marker*/
|
||||
nav .nav-menu {
|
||||
position: relative;
|
||||
height: 16px;
|
||||
padding: 5px;
|
||||
margin: 3px 15px 0px;
|
||||
font-size: 15px;
|
||||
/*border-bottom: 3px solid #364A84;*/
|
||||
}
|
||||
nav .nav-menu.selected {
|
||||
/*border-bottom: 3px solid #9eabb0;*/
|
||||
}
|
||||
nav .nav-notify {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: #ff0000;
|
||||
/* background-color: #19aeff; */
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-size: 10px;
|
||||
font-weight: 900;
|
||||
padding: 1px 4px;
|
||||
top: 0px;
|
||||
right: -6px;
|
||||
min-width: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
nav .nav-notify.show {
|
||||
display: block;
|
||||
}
|
||||
nav #nav-help-link,
|
||||
nav #nav-search-link,
|
||||
nav #nav-directory-link,
|
||||
nav #nav-apps-link,
|
||||
nav #nav-site-linkmenu,
|
||||
nav #nav-home-link,
|
||||
nav #nav-user-linkmenu
|
||||
{
|
||||
float: right;
|
||||
}
|
||||
nav #nav-user-linkmenu{
|
||||
margin-right: 0px;
|
||||
}
|
||||
nav #nav-home-link, #nav-directory-link, #nav-apps-link{
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
font-weight: bold;
|
||||
margin: 3px 5px;
|
||||
}
|
||||
nav #nav-directory-link{
|
||||
margin-right: 0px;
|
||||
}
|
||||
nav #nav-home-link{
|
||||
margin-left: 0px;
|
||||
}
|
||||
nav #nav-help-link .menu-popup,
|
||||
nav #nav-search-link .menu-popup,
|
||||
nav #nav-directory-link .menu-popup,
|
||||
nav #nav-apps-link .menu-popup,
|
||||
nav #nav-site-linkmenu .menu-popup {
|
||||
right: 0px;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
|
||||
background-image: url("../../../view/theme/diabook/icons/messages2.png");
|
||||
}
|
||||
|
||||
/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
|
||||
background-image: url("../../../view/theme/diabook/icons/notify2.png");
|
||||
}
|
||||
|
||||
nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
|
||||
background-image: url("../../../view/theme/diabook/icons/contacts2.png");
|
||||
}
|
||||
|
||||
nav #nav-apps-link.selected {
|
||||
background-color: #364e59;
|
||||
}
|
||||
|
||||
#nav-notifications-mark-all {
|
||||
/* padding: 1px 1px 2px 26px; */
|
||||
/* border-bottom: 1px solid #364E59; */
|
||||
/* margin: 0px 0px 2px 0px;
|
||||
padding: 5px 10px; */
|
||||
}
|
||||
|
||||
#nav-notifications-see-all {
|
||||
/* padding: 1px 1px 2px 26px; */
|
||||
/* border-bottom: 1px solid #364E59; */
|
||||
/* margin: 0px 0px 2px 0px;
|
||||
padding: 5px 10px; */
|
||||
}
|
||||
|
||||
.notify-seen {
|
||||
background: none repeat scroll 0 0 #DDDDDD;
|
||||
}
|
||||
|
||||
ul.menu-popup {
|
||||
position: absolute;
|
||||
display: none;
|
||||
width: 11em;
|
||||
background: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
list-style: none;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
ul.menu-popup a {
|
||||
display: block;
|
||||
color: #2d2d2d;
|
||||
padding: 5px 10px;
|
||||
text-decoration: none;
|
||||
}
|
||||
ul.menu-popup a:hover {
|
||||
background-color: #fff797; /*bdcdd4;*/
|
||||
color: #000;
|
||||
}
|
||||
ul.menu-popup .menu-sep {
|
||||
border-top: 1px solid #9eabb0;
|
||||
}
|
||||
ul.menu-popup li {
|
||||
float: none;
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
ul.menu-popup li img {
|
||||
float: left;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
ul.menu-popup .empty {
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
color: #9eabb0;
|
||||
}
|
||||
/* autocomplete popup */
|
||||
.acpopup {
|
||||
max-height: 150px;
|
||||
background-color: #ffffff;
|
||||
color: #2d2d2d;
|
||||
border: 1px solid #MenuBorder;
|
||||
overflow: auto;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
.acpopupitem {
|
||||
color: #2d2d2d;
|
||||
padding: 4px;
|
||||
clear: left;
|
||||
}
|
||||
.acpopupitem img {
|
||||
float: left;
|
||||
margin-right: 4px;
|
||||
}
|
||||
.acpopupitem.selected {
|
||||
background-color: #bdcdd4;
|
||||
}
|
||||
#nav-notifications-menu {
|
||||
width: 400px;
|
||||
max-height: 550px;
|
||||
overflow: auto;
|
||||
}
|
||||
/* #nav-notifications-menu a {
|
||||
display: inline;
|
||||
padding: 5px 0px;
|
||||
margin: 0px 0px 2px 0px;
|
||||
}
|
||||
#nav-notifications-menu li:hover {
|
||||
background-color: #bdcdd4;
|
||||
}*/
|
||||
|
||||
#nav-notifications-menu img {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
}
|
||||
#nav-notifications-menu .contactname {
|
||||
font-weight: bold;
|
||||
}
|
||||
#nav-notifications-menu .notif-when {
|
||||
font-size: 10px;
|
||||
color: #9eabb0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.notif-image {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
padding: 7px 7px 0px 0px;
|
||||
}
|
||||
|
||||
/*profile_side*/
|
||||
#profile_side {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
#ps-usericon{
|
||||
height: 25px
|
||||
}
|
||||
#ps-username{
|
||||
font-size: 1.17em;
|
||||
font-weight: bold;
|
||||
vertical-align: top;
|
||||
position: absolute;
|
||||
padding-top: 4px;
|
||||
padding-left: 5px;
|
||||
color: #2D2D2D;
|
||||
word-wrap: break-word;
|
||||
width: 130px;
|
||||
}
|
||||
#ps-username:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
.menu-profile-side{
|
||||
list-style: none;
|
||||
padding-left: 0px;
|
||||
min-height: 0px;
|
||||
}
|
||||
.menu-profile-list{
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
min-height: 16px;
|
||||
list-style: none;
|
||||
}
|
||||
.menu-profile-list:hover{
|
||||
background: #E7F2F7;
|
||||
}
|
||||
.menu-profile-list-item{
|
||||
padding-left: 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.menu-profile-list-item:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
/*http://prothemedesign.com/circular-icons/*/
|
||||
.menu-profile-icon.home{
|
||||
background: url("../../../view/theme/diabook/icons/home.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;
|
||||
}
|
||||
.menu-profile-icon.photos{
|
||||
background: url("../../../view/theme/diabook/icons/mess_side.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.events{
|
||||
background: url("../../../view/theme/diabook/icons/events.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.notes{
|
||||
background: url("../../../view/theme/diabook/icons/notes.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.foren{
|
||||
background: url("../../../view/theme/diabook/icons/pubgroups.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.com_side{
|
||||
background: url("../../../view/theme/diabook/icons/com_side.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.pscontacts{
|
||||
background: url("../../../view/theme/diabook/icons/pscontacts.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
|
||||
/* aside */
|
||||
/*marker*/
|
||||
aside {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 180px;
|
||||
padding: 0px 5px 0px 0px;
|
||||
border-right: 1px solid #D2D2D2;
|
||||
float: left;
|
||||
/* background: #F1F1F1; */
|
||||
}
|
||||
aside #page-sidebar{display: none;}
|
||||
|
||||
aside .vcard .fn {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
aside .vcard .title {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
aside .vcard dl {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
}
|
||||
aside .vcard dt {
|
||||
float: left;
|
||||
margin-left: 0px;
|
||||
/*width: 35%;*/
|
||||
text-align: right;
|
||||
color: #999999;
|
||||
}
|
||||
aside .vcard dd {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
/*width: 60%;*/
|
||||
}
|
||||
aside #profile-extra-links ul {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
aside #profile-extra-links li {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
list-style: none;
|
||||
}
|
||||
aside #dfrn-request-link {
|
||||
display: block;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
color: #ffffff;
|
||||
background: #005c94 url('../../../images/connect-bg.png') no-repeat left center;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
padding: 4px 2px 2px 35px;
|
||||
}
|
||||
aside #dfrn-request-link:hover {
|
||||
text-decoration: none;
|
||||
background-color: #36c;
|
||||
/* background-color: #19aeff; */
|
||||
}
|
||||
aside #profiles-menu {
|
||||
width: 20em;
|
||||
}
|
||||
aside #search-text {
|
||||
width: 150px;
|
||||
height: 17px;
|
||||
padding-left: 10px;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
border-bottom-left-radius: 15px;
|
||||
-moz-border-bottom-colors: #dbdbdb;
|
||||
-moz-border-top-colors: #999;
|
||||
-moz-border-left-colors: #999;
|
||||
-moz-border-right-colors: #dbdbdb;
|
||||
}
|
||||
aside #side-follow-url {
|
||||
width: 150px;
|
||||
}
|
||||
aside #side-peoplefind-url {
|
||||
width: 150px;
|
||||
}
|
||||
#contact-block {
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
}
|
||||
#contact-block .contact-block-h4 {
|
||||
float: left;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
#contact-block .allcontact-link {
|
||||
float: right;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
#contact-block .contact-block-content {
|
||||
clear: both;
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
}
|
||||
#contact-block .contact-block-link {
|
||||
float: left;
|
||||
margin: 0px 2px 2px 0px;
|
||||
}
|
||||
#contact-block .contact-block-link img {
|
||||
widht: 55px;
|
||||
height: 55px;
|
||||
}
|
||||
#lost-password-link {
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
}
|
||||
/* widget */
|
||||
.widget {
|
||||
margin-bottom: 2em;
|
||||
/*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
|
||||
.action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
|
||||
/* font-size: 12px; */
|
||||
}
|
||||
/*marker*/
|
||||
.widget h3 {
|
||||
padding: 0px;
|
||||
margin: 2px;
|
||||
font-size: 1.05em;
|
||||
}
|
||||
.widget .action {
|
||||
opacity: 0.1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget input.action {
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget:hover .title .action {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget .tool:hover .action {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget .tool:hover .action.ticked {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget ul {
|
||||
padding: 0px;
|
||||
}
|
||||
.widget ul li {
|
||||
padding-left: 16px;
|
||||
min-height: 16px;
|
||||
list-style: none;
|
||||
}
|
||||
.widget .tool.selected {
|
||||
background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;
|
||||
}
|
||||
/* widget: search */
|
||||
span.sbox_l {
|
||||
background: white url('../../../view/theme/diabook/icons/srch_l.gif') no-repeat top left;
|
||||
float: left;
|
||||
width: 19px; height: 19px;
|
||||
margin-left: 10px;
|
||||
margin-top: 5px;
|
||||
|
||||
}
|
||||
|
||||
span.sbox_r {
|
||||
background: white url('../../../view/theme/diabook/icons/srch_r.gif') no-repeat top left;
|
||||
float: left;
|
||||
width: 19px; height: 19px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
span.sbox input {
|
||||
background: white url('../../../view/theme/diabook/icons/srch_bg.gif') repeat-x top left;
|
||||
float: left;
|
||||
margin-top: 5px;
|
||||
border: 0;
|
||||
height: 13px; width: 100px;
|
||||
padding: 3px;
|
||||
font: 11px/13px arial;
|
||||
color: #000;
|
||||
}
|
||||
#add-search-popup {
|
||||
width: 200px;
|
||||
top: 18px;
|
||||
}
|
||||
/* section */
|
||||
section {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: auto;
|
||||
padding: 0px 0px 0px 12px;
|
||||
}
|
||||
|
||||
body .pageheader{
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
margin-bottom: 20px;
|
||||
margin-top: 0px;
|
||||
max-width: 575px;
|
||||
}
|
||||
.qcomment{
|
||||
max-width: 122px;
|
||||
}
|
||||
|
||||
#id_username {
|
||||
width: 173px;
|
||||
}
|
||||
#id_password {
|
||||
width: 173px;
|
||||
}
|
||||
#id_openid_url {
|
||||
width: 173px;
|
||||
}
|
||||
#contact-edit-end {
|
||||
}
|
||||
.pager {
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
font-size: 1.0em;
|
||||
clear: both;
|
||||
display: block;
|
||||
}
|
||||
.tabs {
|
||||
|
||||
background-position: 0 -20px;
|
||||
background-repeat: repeat-x;
|
||||
height: 27px;
|
||||
padding: 0;
|
||||
}
|
||||
.tab.button {
|
||||
margin-left: 5px;
|
||||
/*background: none repeat scroll 0 0 #F8F8F8;*/
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
font-weight: normal;
|
||||
padding: 3px;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
/*marker*/
|
||||
right_aside {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 180px;
|
||||
/*border-left: 1px solid #D2D2D2;*/
|
||||
|
||||
/* background: #F1F1F1; */
|
||||
}
|
||||
/*marker*/
|
||||
right_aside h3 {font-size: 1.05em; border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px;
|
||||
margin-top:30px;}
|
||||
right_aside .directory-item { width: 50px; height: 50px; vertical-align: center; text-align: center; }
|
||||
right_aside .directory-photo { margin: 0px; }
|
||||
right_aside .directory-photo-img { max-width: 45px; max-height: 45px; }
|
||||
right_aside #likes { margin: 0px; padding: 0px; list-style: none; }
|
||||
right_aside .items-wrapper{ overflow: auto; width: 100%; }
|
||||
right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; }
|
||||
right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; }
|
||||
#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;}
|
||||
#page-sidebar-right_aside ul {margin-top: 0px;}
|
||||
#page-sidebar-right_aside .label {max-width: 128px;}
|
||||
right_aside .icon {width: 10px; height: 10px;}
|
||||
.close_box {
|
||||
background-image: url("../../../view/theme/diabook/icons/close_box.png");
|
||||
float: right;
|
||||
opacity: 0.1;
|
||||
}
|
||||
.close_box:hover {
|
||||
background-image: url("../../../view/theme/diabook/icons/close_box.png");
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
right_aside h3 {font-size: 1.05em;}
|
||||
|
||||
/* wall item */
|
||||
/*marker*/
|
||||
.tread-wrapper {
|
||||
border-bottom: 1px solid #D2D2D2;
|
||||
position: relative;
|
||||
padding: 5px;
|
||||
margin-bottom: 0px;
|
||||
width: 775px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-decor {
|
||||
position: absolute;
|
||||
left: 780px;
|
||||
top: -10px;
|
||||
width: 16px;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container {
|
||||
display: table;
|
||||
width: 770px;
|
||||
}
|
||||
|
||||
|
||||
.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
.wall-item-bottom {
|
||||
font-size: 13px;
|
||||
}
|
||||
.wall-item-container .wall-item-bottom {
|
||||
/* opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out; */
|
||||
}
|
||||
.wall-item-container:hover .wall-item-bottom {
|
||||
/* opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out; */
|
||||
}
|
||||
.wall-item-container .wall-item-info {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
text-align: left;
|
||||
width: 80px;
|
||||
}
|
||||
.wall-item-container .wall-item-location {
|
||||
padding-right: 40px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-ago {
|
||||
word-wrap: break-word;
|
||||
width: 50px;
|
||||
margin-left: 10px;
|
||||
color: #999;
|
||||
}
|
||||
.wall-item-location {
|
||||
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content {
|
||||
|
||||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
max-width: auto;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-container .wall-item-name {
|
||||
font-weight: bold;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-author {
|
||||
width: 100%;
|
||||
margin-bottom: 0.3em;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-social {
|
||||
float: left;
|
||||
margin-bottom: 1px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-social a {
|
||||
margin-right: 1em;
|
||||
}
|
||||
.wall-item-actions-social a {
|
||||
float: left;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools {
|
||||
float: right;
|
||||
width: 80px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools a {
|
||||
float: right;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools input {
|
||||
float: right;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container.comment {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
margin-left: 80px;
|
||||
width: 690px;
|
||||
border-bottom: 1px solid hsl(198, 21%, 79%);
|
||||
}
|
||||
.wall-item-container.comment .contact-photo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 16px;
|
||||
/*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
|
||||
|
||||
}
|
||||
.wall-item-container.comment {
|
||||
top: 15px !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
.wall-item-container.comment .wall-item-links {
|
||||
padding-left: 12px;
|
||||
}
|
||||
.wall-item-comment-wrapper {
|
||||
margin: 1px 5px 5px 80px;
|
||||
}
|
||||
.wall-item-comment-wrapper .comment-edit-photo {
|
||||
display: none;
|
||||
}
|
||||
.wall-item-comment-wrapper textarea {
|
||||
height: 1.6em;
|
||||
width: 100%;
|
||||
font-size: 10px;
|
||||
color: #999999;
|
||||
border: 1px solid #DDD;
|
||||
padding: 0.3em;
|
||||
font-size: 14px;
|
||||
}
|
||||
.wall-item-comment-wrapper .comment-edit-text-full {
|
||||
font-size: 14px;
|
||||
height: 4em;
|
||||
color: #2d2d2d;
|
||||
border: 1px solid #2d2d2d;
|
||||
}
|
||||
.comment-edit-preview {
|
||||
width: 500px;
|
||||
margin-top: 10px;
|
||||
background-color: #fff797;
|
||||
}
|
||||
.comment-edit-preview .contact-photo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 16px;
|
||||
/*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
|
||||
|
||||
}
|
||||
.comment-edit-preview {
|
||||
top: 15px !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
.comment-edit-preview .wall-item-links {
|
||||
padding-left: 12px;
|
||||
}
|
||||
.comment-edit-preview .wall-item-container {
|
||||
width: 700px;
|
||||
}
|
||||
.comment-edit-preview .tread-wrapper {
|
||||
width: 700px;
|
||||
padding: 0;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.shiny {
|
||||
/* border-right: 10px solid #fce94f; */
|
||||
border-right: 1px solid #A7C7F7;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
#jot-preview-content{
|
||||
margin-top: 30px;}
|
||||
|
||||
#jot-preview-content .tread-wrapper {
|
||||
background-color: #fff797;
|
||||
}
|
||||
|
||||
.wall-item-tags {
|
||||
padding-top: 1px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
.tag {
|
||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||
color: #999;
|
||||
padding-left: 3px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.tag a {
|
||||
padding-right: 5px;
|
||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||
color: #999;
|
||||
}
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
background: #FFFFFF;
|
||||
border: 2px solid #364e59;
|
||||
height: 25px;
|
||||
width: 25px;
|
||||
overflow: hidden;
|
||||
padding: 1px;
|
||||
position: absolute !important;
|
||||
top: 40px;
|
||||
left: 30px;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
.wwto .contact-photo {
|
||||
width: auto;
|
||||
height: 25px;
|
||||
}
|
||||
/* contacts menu */
|
||||
.contact-photo-wrapper {
|
||||
position: relative;
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.contact-photo-wrapper.wwto {
|
||||
width: 25px;
|
||||
}
|
||||
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
|
||||
.contact-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.contact-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-name {
|
||||
/* text-align: center; */
|
||||
/*font-weight: bold;*/
|
||||
font-size: 12px;
|
||||
}
|
||||
.contact-details {
|
||||
color: #999999;
|
||||
}
|
||||
/* editor */
|
||||
.jothidden {
|
||||
display: none;
|
||||
}
|
||||
#jot {
|
||||
width: 585px;
|
||||
margin: 0px 2em 20px 0px;
|
||||
}
|
||||
#profile-jot-form #profile-jot-text {
|
||||
height: 2.0em;
|
||||
width: 99%;
|
||||
font-size: 15px;
|
||||
color: #999999;
|
||||
border: 1px solid #DDD;
|
||||
padding: 0.3em;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.grey
|
||||
{
|
||||
display: inline;
|
||||
float: right;
|
||||
}
|
||||
#jot #jot-tools {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
height: 40px;
|
||||
overflow: none;
|
||||
width: 583px;
|
||||
background-color: #fff;
|
||||
border-bottom: 2px solid #9eabb0;
|
||||
}
|
||||
|
||||
#jot #jot-tools li {
|
||||
list-style: none;
|
||||
float: left;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border-bottom: 2px solid #9eabb0;
|
||||
}
|
||||
#jot #jot-tools li a {
|
||||
display: block;
|
||||
color: #cccccc;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
text-align: center;
|
||||
line-height: 40px;
|
||||
overflow: hidden;
|
||||
}
|
||||
#jot #jot-tools li:hover {
|
||||
background-color: #364e59;
|
||||
border-bottom: 2px solid #bdcdd4;
|
||||
}
|
||||
#jot #jot-tools li.perms {
|
||||
float: right;
|
||||
width: 40px;
|
||||
}
|
||||
#jot #jot-tools li.perms a.unlock {
|
||||
width: 30px;
|
||||
border-left: 10px solid #cccccc;
|
||||
background-color: #cccccc;
|
||||
background-position: left center;
|
||||
}
|
||||
#jot #jot-tools li.perms a.lock {
|
||||
width: 30px;
|
||||
border-left: 10px solid #666666;
|
||||
background-color: #666666;
|
||||
}
|
||||
#jot #jot-tools li.submit {
|
||||
float: right;
|
||||
background-color: #cccccc;
|
||||
border-bottom: 2px solid #cccccc;
|
||||
border-right: 1px solid #666666;
|
||||
border-left: 1px solid #666666;
|
||||
}
|
||||
#jot #jot-tools li.submit input {
|
||||
border: 0px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
background-color: #cccccc;
|
||||
color: #666666;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
}
|
||||
#jot #jot-tools li.submit input:hover {
|
||||
background-color: #bdcdd4;
|
||||
color: #666666;
|
||||
}
|
||||
#jot #jot-tools li.loading {
|
||||
float: right;
|
||||
background-color: #ffffff;
|
||||
width: 20px;
|
||||
vertical-align: center;
|
||||
text-align: center;
|
||||
border-top: 2px solid #9eabb0;
|
||||
height: 38px;
|
||||
}
|
||||
#jot #jot-tools li.loading img {
|
||||
margin-top: 10px;
|
||||
}
|
||||
#profile-jot-form #jot-title {
|
||||
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-weight: bold;
|
||||
height: 20px;
|
||||
margin: 0 0 5px;
|
||||
width: 60%;
|
||||
border: 1px solid #d2d2d2;
|
||||
}
|
||||
#profile-jot-form #jot-title:-webkit-input-placeholder {
|
||||
font-weight: normal;
|
||||
}
|
||||
#profile-jot-form #jot-title:-moz-placeholder {
|
||||
font-weight: normal;
|
||||
}
|
||||
#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
|
||||
width: 585px;
|
||||
height: 100px;
|
||||
}
|
||||
#jot #jot-title:hover {
|
||||
border: 1px solid #999999;
|
||||
}
|
||||
#jot #jot-title:focus {
|
||||
border: 1px solid #999999;
|
||||
}
|
||||
#jot #character-counter {
|
||||
width: 80px;
|
||||
float: right;
|
||||
text-align: right;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
#jot-perms-icon,
|
||||
#profile-location,
|
||||
#profile-nolocation,
|
||||
#profile-youtube,
|
||||
#profile-video,
|
||||
#profile-audio,
|
||||
#profile-link,
|
||||
#profile-title,
|
||||
#wall-image-upload,
|
||||
#wall-file-upload,
|
||||
#wall-image-upload-div,
|
||||
#wall-file-upload-div,
|
||||
.hover, .focus {
|
||||
cursor: pointer;
|
||||
margin-top: 2px;
|
||||
}
|
||||
/*marker*/
|
||||
#profile-jot-wrapper{
|
||||
margin: 0 20px 20px 0;
|
||||
width: 785px;
|
||||
}
|
||||
}
|
||||
/*marker*/
|
||||
#profile-jot-submit-wrapper {
|
||||
margin-bottom: 50px;
|
||||
width: 785px;
|
||||
}
|
||||
|
||||
#profile-jot-submit {
|
||||
float: right;
|
||||
margin-top: 2px;
|
||||
font-size: 14px;
|
||||
|
||||
}
|
||||
#profile-upload-wrapper {
|
||||
float: left;
|
||||
margin-top: 2px;
|
||||
margin-left: 10px;
|
||||
|
||||
}
|
||||
#profile-attach-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-rotator {
|
||||
float: left;
|
||||
margin-left: 30px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-link-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-youtube-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-video-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-audio-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-location-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-jot-perms {
|
||||
float: left;
|
||||
margin-left: 45px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#jot-preview-link {
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-top: 2px;
|
||||
font-size: 9px;
|
||||
font-weight: bolder;
|
||||
cursor: pointer;
|
||||
}
|
||||
#profile-jot-perms{
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
/** buttons **/
|
||||
.button.creation1 {
|
||||
background-color: #fff;
|
||||
border: 1px solid #777777;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
cursor: pointer;
|
||||
font-weight: bolder;
|
||||
}
|
||||
.button.creation2 {
|
||||
background-color: #33ACFF;
|
||||
background-image: -moz-linear-gradient(center top , #66C1FF 0%, #0097FF 100%);
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
margin-left: 5px;
|
||||
cursor: pointer;
|
||||
font-weight: bolder;
|
||||
}
|
||||
/*input[type="submit"] {
|
||||
background-color: #33ACFF;
|
||||
background-image: -moz-linear-gradient(center top , #66C1FF 0%, #0097FF 100%);
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
margin-left: 5px;
|
||||
}*/
|
||||
/** acl **/
|
||||
#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
|
||||
display: block!important;
|
||||
}
|
||||
#acl-wrapper {
|
||||
width: 690px;
|
||||
float: left;
|
||||
}
|
||||
#acl-search {
|
||||
float: right;
|
||||
background: #ffffff url("../../../images/search_18.png") no-repeat right center;
|
||||
padding-right: 20px;
|
||||
}
|
||||
#acl-showall {
|
||||
float: left;
|
||||
display: block;
|
||||
width: auto;
|
||||
height: 18px;
|
||||
background-color: #cccccc;
|
||||
background-image: url("../../../images/show_all_off.png");
|
||||
background-position: 7px 7px;
|
||||
background-repeat: no-repeat;
|
||||
padding: 7px 5px 0px 30px;
|
||||
color: #999999;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
#acl-showall.selected {
|
||||
color: #000000;
|
||||
background-color: #ff9900;
|
||||
background-image: url("../../../images/show_all_on.png");
|
||||
}
|
||||
#acl-list {
|
||||
height: 210px;
|
||||
border: 1px solid #cccccc;
|
||||
clear: both;
|
||||
margin-top: 30px;
|
||||
overflow: auto;
|
||||
}
|
||||
.acl-list-item {
|
||||
display: block;
|
||||
width: 150px;
|
||||
height: 30px;
|
||||
border: 1px solid #cccccc;
|
||||
margin: 5px;
|
||||
float: left;
|
||||
}
|
||||
.acl-list-item img {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
float: left;
|
||||
margin: 4px;
|
||||
}
|
||||
.acl-list-item p {
|
||||
height: 12px;
|
||||
font-size: 10px;
|
||||
margin: 0px;
|
||||
padding: 2px 0px 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.acl-list-item a {
|
||||
font-size: 8px;
|
||||
display: block;
|
||||
width: 40px;
|
||||
height: 10px;
|
||||
float: left;
|
||||
color: #999999;
|
||||
background-color: #cccccc;
|
||||
background-position: 3px 3px;
|
||||
background-repeat: no-repeat;
|
||||
margin-right: 5px;
|
||||
-webkit-border-radius: 2px ;
|
||||
-moz-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
#acl-wrapper a:hover {
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
}
|
||||
.acl-button-show {
|
||||
background-image: url("../../../images/show_off.png");
|
||||
}
|
||||
.acl-button-hide {
|
||||
background-image: url("../../../images/hide_off.png");
|
||||
}
|
||||
.acl-button-show.selected {
|
||||
color: #000000;
|
||||
background-color: #9ade00;
|
||||
background-image: url("../../../images/show_on.png");
|
||||
}
|
||||
.acl-button-hide.selected {
|
||||
color: #000000;
|
||||
background-color: #ff4141;
|
||||
background-image: url("../../../images/hide_on.png");
|
||||
}
|
||||
.acl-list-item.groupshow {
|
||||
border-color: #9ade00;
|
||||
}
|
||||
.acl-list-item.grouphide {
|
||||
border-color: #ff4141;
|
||||
}
|
||||
/** /acl **/
|
||||
/** tab buttons **/
|
||||
/*marker*/
|
||||
ul.tabs {
|
||||
list-style-type: none;
|
||||
padding-bottom: 10px;
|
||||
font-size: 13px;
|
||||
width: 805px;
|
||||
}
|
||||
ul.tabs li {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
}
|
||||
ul.tabs li .active {
|
||||
background-color: #333333;
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
margin-left: 5px;
|
||||
}
|
||||
/**
|
||||
* Form fields
|
||||
*/
|
||||
.field {
|
||||
margin-bottom: 10px;
|
||||
padding-bottom: 10px;
|
||||
overflow: auto;
|
||||
width: 100%;
|
||||
}
|
||||
.field label {
|
||||
float: left;
|
||||
width: 200px;
|
||||
}
|
||||
.field input, .field textarea {
|
||||
width: 400px;
|
||||
}
|
||||
.field textarea {
|
||||
height: 100px;
|
||||
}
|
||||
.field .field_help {
|
||||
display: block;
|
||||
margin-left: 200px;
|
||||
color: #666666;
|
||||
}
|
||||
.field .onoff {
|
||||
float: left;
|
||||
width: 80px;
|
||||
}
|
||||
.field .onoff a {
|
||||
display: block;
|
||||
border: 1px solid #666666;
|
||||
background-image: url("../../../images/onoff.jpg");
|
||||
background-repeat: no-repeat;
|
||||
padding: 4px 2px 2px 2px;
|
||||
height: 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.field .onoff .off {
|
||||
border-color: #666666;
|
||||
padding-left: 40px;
|
||||
background-position: left center;
|
||||
background-color: #cccccc;
|
||||
color: #666666;
|
||||
text-align: right;
|
||||
}
|
||||
.field .onoff .on {
|
||||
border-color: #204A87;
|
||||
padding-right: 40px;
|
||||
background-position: right center;
|
||||
background-color: #D7E3F1;
|
||||
color: #204A87;
|
||||
text-align: left;
|
||||
}
|
||||
.field .hidden {
|
||||
display: none!important;
|
||||
}
|
||||
.field.radio .field_help {
|
||||
margin-left: 0px;
|
||||
}
|
||||
#directory-search-form{
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
#profile-edit-links-end {
|
||||
clear: both;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
|
||||
|
||||
#profile-edit-links li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.profile-edit-side-div {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#register-form label,
|
||||
#profile-edit-form label {
|
||||
width: 300px; float: left;
|
||||
}
|
||||
|
||||
.required {
|
||||
display: inline;
|
||||
color: #B20202;
|
||||
}
|
||||
|
||||
/* oauth */
|
||||
.oauthapp {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
border-bottom: 2px solid #cccccc;
|
||||
padding-bottom: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.oauthapp img {
|
||||
float: left;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
margin: 10px;
|
||||
}
|
||||
.oauthapp img.noicon {
|
||||
background-image: url("../../../images/icons/48/plugin.png");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.oauthapp a {
|
||||
float: left;
|
||||
}
|
||||
/* contacts */
|
||||
.contact-entry-wrapper {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
float: left;
|
||||
}
|
||||
/* photo */
|
||||
.lframe {
|
||||
float: left;
|
||||
}
|
||||
/* profile match wrapper */
|
||||
.profile-match-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.profile-match-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.profile-match-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.profile-match-wrapper {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
|
||||
.contact-photo-menu-button {
|
||||
position: relative;
|
||||
background-image: url("../../../images/icons/16/menu.png");
|
||||
background-position: top left;
|
||||
background-repeat: no-repeat;
|
||||
margin: 0px 0px -16px 0px;
|
||||
padding: 0px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
top: -16px; left:0px;
|
||||
overflow: hidden;
|
||||
text-indent: 40px;
|
||||
display: none;
|
||||
|
||||
}
|
||||
.contact-photo-menu {
|
||||
width: 11em;
|
||||
border: 3px solid #364e59;
|
||||
color: #2d2d2d;
|
||||
background: #FFFFFF;
|
||||
/* position: absolute;*/
|
||||
position: relative;
|
||||
left: 0px; top: 0px;
|
||||
display: none;
|
||||
z-index: 10000;
|
||||
}
|
||||
.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
|
||||
.contact-photo-menu li a {
|
||||
display: block;
|
||||
padding: 5px 10px;
|
||||
color: #2d2d2d;
|
||||
text-decoration: none;
|
||||
}
|
||||
.contact-photo-menu li a:hover {
|
||||
background-color: #bdcdd4;
|
||||
}
|
||||
|
||||
/* page footer */
|
||||
footer {
|
||||
height: 100px;
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 1px solid #D2D2D2;
|
||||
padding-left: 9px;
|
||||
margin: 0 0 0 .8ex;
|
||||
color: #777;
|
||||
}
|
||||
.oembed {
|
||||
font-weight: bold;
|
||||
}
|
||||
.aprofile dt{
|
||||
box-shadow: 1px 1px 5px 0;
|
||||
color: #666666;
|
||||
margin: 15px 0 5px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
/* ================== */
|
||||
/* = Contacts Block = */
|
||||
/* ================== */
|
||||
|
||||
.contact-block-img {
|
||||
width: 55px;
|
||||
height: 55px;
|
||||
padding-right: 3px;
|
||||
}
|
||||
.contact-block-div {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.contact-block-textdiv { width: 150px; height: 34px; float: left; }
|
||||
#contact-block-end { clear: both; }
|
||||
|
||||
#group-edit-wrapper {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#group-members-end {
|
||||
clear: both;
|
||||
}
|
||||
#group-edit-desc {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
/*
|
||||
#group-separator,
|
||||
#prof-separator { display: none;}
|
||||
*/
|
||||
#prof-members-end{
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
|
||||
margin-bottom: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#prvmail-submit {
|
||||
float: right;
|
||||
margin-top: 10px;
|
||||
}
|
||||
#prvmail-subject
|
||||
{
|
||||
background: none repeat scroll 0 0 #FFFFFF;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-weight: bold;
|
||||
height: 20px;
|
||||
margin: 0 0 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
#prvmail-form{
|
||||
width: 597px;
|
||||
}
|
||||
#prvmail-upload-wrapper,
|
||||
#prvmail-link-wrapper,
|
||||
#prvmail-rotator-wrapper {
|
||||
float: left;
|
||||
margin-top: 10px;
|
||||
margin-right: 10px;
|
||||
width: 24px;
|
||||
}
|
||||
|
||||
#prvmail-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-list-sender,
|
||||
.mail-list-detail {
|
||||
float: left;
|
||||
}
|
||||
.mail-list-detail {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.mail-list-subject {
|
||||
font-size: 1.1em;
|
||||
margin-top: 10px;
|
||||
}
|
||||
a.mail-list-link {
|
||||
display: block;
|
||||
font-size: 1.3em;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
/*
|
||||
*a.mail-list-link:hover {
|
||||
* background-color: #15607B;
|
||||
* color: #F5F6FB;
|
||||
*}
|
||||
*/
|
||||
|
||||
.mail-list-outside-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-list-outside-wrapper {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.mail-list-delete-wrapper {
|
||||
float: right;
|
||||
margin-right: 30px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.mail-list-delete-icon {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.mail-conv-sender,
|
||||
.mail-conv-detail {
|
||||
float: left;
|
||||
}
|
||||
.mail-conv-detail {
|
||||
margin-left: 20px;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.mail-conv-subject {
|
||||
font-size: 1.4em;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.mail-conv-outside-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-conv-outside-wrapper {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.mail-conv-delete-wrapper {
|
||||
float: right;
|
||||
margin-right: 30px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
.mail-conv-break {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-conv-delete-icon {
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* ========== */
|
||||
/* = Events = */
|
||||
/* ========== */
|
||||
.eventcal {
|
||||
float: left;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.vevent {
|
||||
|
||||
}
|
||||
.vevent .event-description, .vevent .event-location {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.vevent .event-start {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
#new-event-link {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.edit-event-link, .plink-event-link {
|
||||
float: left;
|
||||
margin-top: 4px;
|
||||
margin-right: 4px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.event-description:before {
|
||||
content: url('../../../images/calendar.png');
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.event-start, .event-end {
|
||||
margin-left: 10px;
|
||||
width: 330px;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.event-start .dtstart, .event-end .dtend {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.event-list-date {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.prevcal, .nextcal {
|
||||
float: left;
|
||||
margin-left: 32px;
|
||||
margin-right: 32px;
|
||||
margin-top: 64px;
|
||||
}
|
||||
.event-calendar-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
.calendar {
|
||||
font-family: Courier, monospace;
|
||||
}
|
||||
.today {
|
||||
font-weight: bold;
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
.settings-block {
|
||||
border: 1px solid #AAA;
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.app-title {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#identity-manage-desc {
|
||||
margin-top:15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#identity-manage-choose {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#identity-submit {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#photo-prev-link, #photo-next-link {
|
||||
padding: 10px;
|
||||
float: left;
|
||||
}
|
||||
.lightbox{
|
||||
float: left;
|
||||
}
|
||||
|
||||
#photo-photo {
|
||||
float: left;
|
||||
}
|
||||
#photo-like-div .wall-item-like-buttons {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
.comment-edit-text-empty {
|
||||
margin: 10px 0 0;
|
||||
width: 85%;
|
||||
}
|
||||
.comment-edit-photo {
|
||||
margin: 10px 0 0;
|
||||
}
|
||||
.wall-item-like-buttons .icon.like {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#photo-photo-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.tabs .comment-wwedit-wrapper {
|
||||
display: block;
|
||||
margin-top: 30px;
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.profile-match-photo {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
.profile-match-name {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 120px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.profile-match-break,
|
||||
.profile-match-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.profile-match-connect {
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.profile-match-wrapper {
|
||||
float: left;
|
||||
padding: 10px;
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
scroll: auto;
|
||||
}
|
||||
#profile-match-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* ============= */
|
||||
/* = Directory = */
|
||||
/* ============= */
|
||||
/* contacts menu */
|
||||
.contact-photo-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-photo-menu-button {
|
||||
display: none;
|
||||
/* position: absolute; */
|
||||
/* position: absolute; */
|
||||
left: 0px;
|
||||
top: -16px;
|
||||
}
|
||||
.contact-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.contact-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo-menu-button {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
.directory-item {
|
||||
float: left;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
.directory-item .contact-photo {
|
||||
width: 175px;
|
||||
height: 175px;
|
||||
}
|
||||
.directory-item .contact-photo img {
|
||||
width: 175px;
|
||||
height: 175px;
|
||||
}
|
||||
.contact-name {
|
||||
text-align: left;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
}
|
||||
.contact-details {
|
||||
color: #999999;
|
||||
}
|
||||
#side-bar-photos-albums li{
|
||||
list-style-type: disc;
|
||||
}
|
||||
#side-bar-photos-albums ul li{
|
||||
margin-left: 30px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
#side-bar-photos-albums{
|
||||
margin-top: 15px;
|
||||
}
|
||||
.photo-top-photo, .photo-album-photo {
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
.photo-album-image-wrapper, .photo-top-image-wrapper {
|
||||
float: left;
|
||||
-moz-box-shadow: 0 0 5px #888;
|
||||
-webkit-box-shadow: 0 0 5px #888;
|
||||
box-shadow: 0 0 5px #888;
|
||||
background-color: #000;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
padding-bottom: 20px;
|
||||
position: relative;
|
||||
margin: 0 10px 10px 0;
|
||||
width: 200px; height: 140px;
|
||||
overflow: hidden;
|
||||
}
|
||||
/*
|
||||
.photo-top-album-name {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
padding: 0 5px;
|
||||
}*/
|
||||
/*.photo-top-image-wrapper {
|
||||
position: relative;
|
||||
float: left;
|
||||
margin-top: 15px;
|
||||
margin-right: 15px;
|
||||
width: 200px; height: 200px;
|
||||
|
||||
}*/
|
||||
.photo-top-album-name {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
padding-left: 3px;
|
||||
background-color: #EEE;
|
||||
}
|
||||
.photo-top-album-link{
|
||||
color: #3465A4;
|
||||
}
|
||||
#photo-top-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#photo-top-links {
|
||||
margin-bottom: 30px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
#photos-upload-newalbum-div {
|
||||
float: left;
|
||||
width: 175px;
|
||||
}
|
||||
|
|
@ -186,6 +186,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
@ -2568,4 +2569,4 @@ list-style-type: disc;
|
|||
#photos-upload-newalbum-div {
|
||||
float: left;
|
||||
width: 175px;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,2563 +1,84 @@
|
|||
/**
|
||||
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
|
||||
* Additional Changes: Michael Vogel <icarus@dabo.de>
|
||||
**/
|
||||
|
||||
/* ========= */
|
||||
/* = Admin = */
|
||||
/* ========= */
|
||||
|
||||
#adminpage {
|
||||
/* width: 80%;*/
|
||||
}
|
||||
|
||||
#pending-update {
|
||||
float:right;
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
background-color: #FF0000;
|
||||
padding: 0em 0.3em;
|
||||
}
|
||||
|
||||
.admin.linklist {
|
||||
border: 0px; padding: 0px;
|
||||
}
|
||||
|
||||
.admin.link {
|
||||
list-style-position: inside;
|
||||
font-size: 1em;
|
||||
padding: 5px;
|
||||
width: 100px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
#adminpage dl {
|
||||
clear: left;
|
||||
margin-bottom: 2px;
|
||||
padding-bottom: 2px;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
|
||||
#adminpage dt {
|
||||
width: 200px;
|
||||
float: left;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#adminpage dd {
|
||||
margin-left: 200px;
|
||||
}
|
||||
#adminpage h3 {
|
||||
border-bottom: 1px solid #898989;
|
||||
margin-bottom: 5px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#adminpage .submit {
|
||||
clear:left;
|
||||
}
|
||||
|
||||
#adminpage #pluginslist {
|
||||
margin: 0px; padding: 0px;
|
||||
}
|
||||
|
||||
#adminpage .plugin {
|
||||
list-style: none;
|
||||
display: block;
|
||||
/* border: 1px solid #888888; */
|
||||
padding: 1em;
|
||||
margin-bottom: 5px;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
#adminpage .toggleplugin {
|
||||
float:left;
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
|
||||
#adminpage table th { text-align: left;}
|
||||
#adminpage td .icon { float: left;}
|
||||
#adminpage table#users img { width: 16px; height: 16px; }
|
||||
#adminpage table tr:hover { background-color: #eeeeee; }
|
||||
#adminpage .selectall { text-align: right; }
|
||||
/* icons */
|
||||
|
||||
.icon.contacts {
|
||||
background-image: url("../../../view/theme/diabook/icons/contacts.png");}
|
||||
.icon.notifications {
|
||||
background-image: url("../../../view/theme/diabook/icons/notifications.png");}
|
||||
.icon.notify {
|
||||
background-image: url("../../../view/theme/diabook/icons/notify.png");}
|
||||
.icon.messages {
|
||||
background-image: url("../../../view/theme/diabook/icons/messages.png");}
|
||||
.icon.community {
|
||||
background-image: url("../../../view/theme/diabook/icons/community.png");}
|
||||
|
||||
.icon.drop { background-image: url("../../../view/theme/diabook/icons/drop.png");}
|
||||
.icon.drophide { background-image: url("../../../view/theme/diabook/icons/drop.png");}
|
||||
.icon.dislike { background-image: url("../../../view/theme/diabook/icons/dislike.png");}
|
||||
.icon.like { background-image: url("../../../view/theme/diabook/icons/like.png");}
|
||||
.icon.pencil { background-image: url("../../../view/theme/diabook/icons/pencil.png");}
|
||||
.icon.recycle { background-image: url("../../../view/theme/diabook/icons/recycle.png");}
|
||||
.icon.remote-link { background-image: url("../../../view/theme/diabook/icons/remote.png");}
|
||||
.icon.tagged { background-image: url("../../../view/theme/diabook/icons/tagged.png");}
|
||||
.icon.file-as { background-image: url("../../../view/theme/diabook/icons/file_as.png");}
|
||||
.star-item.icon.unstarred { background-image: url("../../../view/theme/diabook/icons/unstarred.png");}
|
||||
.star-item.icon.starred { background-image: url("../../../view/theme/diabook/icons/starred.png");}
|
||||
.icon.link { background-image: url("../../../view/theme/diabook/icons/link.png");}
|
||||
.icon.lock { background-image: url("../../../view/theme/diabook/icons/lock.png");}
|
||||
.icon.unlock { background-image: url("../../../view/theme/diabook/icons/unlock.png");}
|
||||
.icon.language { background-image: url("../../../view/theme/diabook/icons/language.png");}
|
||||
|
||||
|
||||
.camera { background-image: url("../../../view/theme/diabook/icons/camera.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.attach { background-image: url("../../../view/theme/diabook/icons/attach.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video2 { background-image: url("../../../view/theme/diabook/icons/video.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.weblink { background-image: url("../../../view/theme/diabook/icons/weblink.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.globe { background-image: url("../../../view/theme/diabook/icons/globe.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.unglobe { background-image: url("../../../view/theme/diabook/icons/unglobe.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.edit {background-image: url("../../../view/theme/diabook/icons/pencil2.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
|
||||
|
||||
|
||||
|
||||
|
||||
.article { background-position: -50px 0px;}
|
||||
/*.audio { background-position: -70px 0px;}*/
|
||||
.block { background-position: -90px 0px;}
|
||||
/*.drop { background-position: -110px 0px;}*/
|
||||
/*.drophide { background-position: -130px 0px;}*/
|
||||
/*.edit { background-position: -150px 0px;}*/
|
||||
/*.camera { background-position: -170px 0px;}*/
|
||||
/*.dislike { background-position: -190px 0px;}*/
|
||||
/*.like { background-position: -210px 0px;}*/
|
||||
/*.link { background-position: -230px 0px;}*/
|
||||
|
||||
/*.globe { background-position: -50px -20px;}*/
|
||||
/*.noglobe { background-position: -70px -20px;}*/
|
||||
.no { background-position: -90px -20px;}
|
||||
.pause { background-position: -110px -20px;}
|
||||
.play { background-position: -130px -20px;}
|
||||
/*.pencil { background-position: -150px -20px;}*/
|
||||
.small-pencil { background-position: -170px -20px;}
|
||||
/*.recycle { background-position: -190px -20px;}*/
|
||||
/*.remote-link { background-position: -210px -20px;}*/
|
||||
.share { background-position: -230px -20px;}
|
||||
|
||||
.tools { background-position: -50px -40px;}
|
||||
/*.lock { background-position: -70px -40px;}*/
|
||||
|
||||
/*.video { background-position: -110px -40px;}*/
|
||||
.youtube { background-position: -130px -40px;}
|
||||
|
||||
/*.attach { background-position: -190px -40px;}*/
|
||||
/*.language { background-position: -210px -40px;}*/
|
||||
|
||||
|
||||
.icon.on { background-image: url("../../../view/theme/diabook/icons/toogle_on.png"); background-repeat: no-repeat;}
|
||||
.icon.off { background-image: url("../../../view/theme/diabook/icons/toogle_off.png"); background-repeat: no-repeat;}
|
||||
.icon.prev { background-image: url("../../../view/theme/diabook/icons/prev.png"); background-repeat: no-repeat;}
|
||||
.icon.next { background-image: url("../../../view/theme/diabook/icons/next.png"); background-repeat: no-repeat;}
|
||||
/*.tagged { background-position: -130px -60px;}*/
|
||||
|
||||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../images/content-types.png');
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
.type-image { background-position: -20px 0px; }
|
||||
.type-audio { background-position: -40px 0px; }
|
||||
.type-text { background-position: -60px 0px; }
|
||||
.type-unkn { background-position: -80px 0px; }
|
||||
|
||||
.icon.drop, .icon.drophide {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.icon {
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
/*background-image: url('icons.png');*/
|
||||
}
|
||||
|
||||
.icon {
|
||||
background-color: transparent ;
|
||||
background-repeat: no-repeat;
|
||||
/* background-position: left center; */
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
text-indent: -9999px;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
.icon.border.camera{
|
||||
background-image: url("../../../view/theme/diabook/icons/camera.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.icon.border.link{
|
||||
background-image: url("../../../view/theme/diabook/icons/weblink.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.icon.text {
|
||||
text-indent: 0px;
|
||||
}
|
||||
.icon.s10 {
|
||||
min-width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
.icon.s10.notify {
|
||||
background-image: url("../../../images/icons/10/notify_off.png");
|
||||
}
|
||||
.icon.s10.gear {
|
||||
background-image: url("../../../images/icons/10/gear.png");
|
||||
}
|
||||
.icon.s10.add {
|
||||
background-image: url("../../../images/icons/10/add.png");
|
||||
}
|
||||
.icon.s10.delete {
|
||||
background-image: url("../../../images/icons/10/delete.png");
|
||||
}
|
||||
.icon.s10.edit {
|
||||
background-image: url("../../../images/icons/10/edit.png");
|
||||
}
|
||||
.icon.s10.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s10.menu {
|
||||
background-image: url("../../../images/icons/10/menu.png");
|
||||
}
|
||||
.icon.s10.link {
|
||||
background-image: url("../../../images/icons/10/link.png");
|
||||
}
|
||||
.icon.s10.lock {
|
||||
background-image: url("../../../images/icons/10/lock.png");
|
||||
}
|
||||
.icon.s10.unlock {
|
||||
background-image: url("../../../images/icons/10/unlock.png");
|
||||
}
|
||||
.icon.s10.text {
|
||||
padding: 2px 0px 0px 15px;
|
||||
font-size: 10px;
|
||||
}
|
||||
.icon.s16 {
|
||||
min-width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.icon.s16.notify {
|
||||
background-image: url("../../../images/icons/16/notify_off.png");
|
||||
}
|
||||
.icon.s16.gear {
|
||||
background-image: url("../../../images/icons/16/gear.png");
|
||||
}
|
||||
.icon.s16.add {
|
||||
background-image: url("../../../images/icons/16/add.png");
|
||||
}
|
||||
.icon.s16.delete {
|
||||
background-image: url("../../../images/icons/16/delete.png");
|
||||
}
|
||||
/*.icon.s16.edit {
|
||||
background-image: url("../../../images/icons/16/edit.png");
|
||||
}*/
|
||||
.icon.s16.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s16.menu {
|
||||
background-image: url("../../../images/icons/16/menu.png");
|
||||
}
|
||||
/*.icon.s16.link {
|
||||
background-image: url("../../../images/icons/16/link.png");
|
||||
}*/
|
||||
.icon.s16.lock {
|
||||
background-image: url("../../../images/icons/16/lock.png");
|
||||
}
|
||||
.icon.s16.unlock {
|
||||
background-image: url("../../../images/icons/16/unlock.png");
|
||||
}
|
||||
.icon.s16.text {
|
||||
padding: 4px 0px 0px 20px;
|
||||
font-size: 10px;
|
||||
}
|
||||
.icon.s22 {
|
||||
min-width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
.icon.s22.notify {
|
||||
background-image: url("../../../images/icons/22/notify_off.png");
|
||||
}
|
||||
.icon.s22.gear {
|
||||
background-image: url("../../../images/icons/22/gear.png");
|
||||
}
|
||||
.icon.s22.add {
|
||||
background-image: url("../../../images/icons/22/add.png");
|
||||
}
|
||||
.icon.s22.delete {
|
||||
background-image: url("../../../images/icons/22/delete.png");
|
||||
}
|
||||
.icon.s22.edit {
|
||||
background-image: url("../../../images/icons/22/edit.png");
|
||||
}
|
||||
.icon.s22.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s22.menu {
|
||||
background-image: url("../../../images/icons/22/menu.png");
|
||||
}
|
||||
.icon.s22.link {
|
||||
background-image: url("../../../images/icons/22/link.png");
|
||||
}
|
||||
.icon.s22.lock {
|
||||
background-image: url("../../../images/icons/22/lock.png");
|
||||
}
|
||||
.icon.s22.unlock {
|
||||
background-image: url("../../../images/icons/22/unlock.png");
|
||||
}
|
||||
.icon.s22.text {
|
||||
padding: 10px 0px 0px 25px;
|
||||
width: 200px;
|
||||
}
|
||||
.icon.s48 {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.icon.s48.notify {
|
||||
background-image: url("../../../images/icons/48/notify_off.png");
|
||||
}
|
||||
.icon.s48.gear {
|
||||
background-image: url("../../../images/icons/48/gear.png");
|
||||
}
|
||||
.icon.s48.add {
|
||||
background-image: url("../../../images/icons/48/add.png");
|
||||
}
|
||||
.icon.s48.delete {
|
||||
background-image: url("../../../images/icons/48/delete.png");
|
||||
}
|
||||
.icon.s48.edit {
|
||||
background-image: url("../../../images/icons/48/edit.png");
|
||||
}
|
||||
.icon.s48.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s48.menu {
|
||||
background-image: url("../../../images/icons/48/menu.png");
|
||||
}
|
||||
.icon.s48.link {
|
||||
background-image: url("../../../images/icons/48/link.png");
|
||||
}
|
||||
.icon.s48.lock {
|
||||
background-image: url("../../../images/icons/48/lock.png");
|
||||
}
|
||||
.icon.s48.unlock {
|
||||
background-image: url("../../../images/icons/48/unlock.png");
|
||||
}
|
||||
|
||||
#contact-edit-links ul {
|
||||
list-style: none;
|
||||
list-style-type: none;
|
||||
}
|
||||
@import url('style-profile.css');
|
||||
|
||||
.hide-comments-outer {
|
||||
margin-left: 80px;
|
||||
margin-bottom: 5px;
|
||||
width: 675px;
|
||||
border-bottom: 1px solid #BDCDD4;
|
||||
border-top: 1px solid #BDCDD4;
|
||||
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
/* global */
|
||||
body {
|
||||
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 13px;
|
||||
background-color: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 50px auto auto;
|
||||
display: table;
|
||||
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #3465A4;
|
||||
/* color: #3e3e8c; */
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
/* color: blue; */
|
||||
text-decoration: underline
|
||||
}
|
||||
|
||||
.wall-item-name-link {
|
||||
/* float: left;*/
|
||||
}
|
||||
|
||||
.wall-item-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.left {
|
||||
float: left;
|
||||
}
|
||||
.right {
|
||||
float: right;
|
||||
}
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
.clear {
|
||||
clear: both;
|
||||
}
|
||||
.fakelink {
|
||||
color: #3465A4;
|
||||
/* color: #3e3e8c; */
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.fakelink:hover {
|
||||
/* color: blue; */
|
||||
/*color: #005c94; */
|
||||
text-decoration: underline;
|
||||
}
|
||||
code {
|
||||
font-family: Courier, monospace;
|
||||
white-space: pre;
|
||||
display: block;
|
||||
overflow: auto;
|
||||
border: 1px solid #444;
|
||||
background: #EEE;
|
||||
color: #444;
|
||||
padding: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
#panel {
|
||||
position: absolute;
|
||||
width: 12em;
|
||||
background: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 0px;
|
||||
padding: 1em;
|
||||
list-style: none;
|
||||
border: 3px solid #364e59;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
/* tool */
|
||||
.tool {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
padding: 3px;
|
||||
}
|
||||
#saved-search-ul .tool:hover,
|
||||
#nets-sidebar .tool:hover,
|
||||
#sidebar-group-list .tool:hover,
|
||||
#fileas-sidebar .tool:hover{
|
||||
background: #E7F2F7;
|
||||
}
|
||||
.tool .label {
|
||||
float: left;
|
||||
}
|
||||
.tool .action {
|
||||
float: right;
|
||||
}
|
||||
.tool a {
|
||||
color: ##3F8FBA;
|
||||
}
|
||||
.tool a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
/* popup notifications */
|
||||
div.jGrowl div.notice {
|
||||
background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
|
||||
color: #ffffff;
|
||||
padding-left: 58px;
|
||||
}
|
||||
div.jGrowl div.info {
|
||||
background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
|
||||
color: #ffffff;
|
||||
padding-left: 58px;
|
||||
}
|
||||
/* header */
|
||||
header {
|
||||
position: fixed;
|
||||
left: 0%;
|
||||
right: 80%;
|
||||
top: 0px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
width: 22%;
|
||||
height: 32px;
|
||||
background: #000;
|
||||
z-index: 100;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
header #site-location {
|
||||
display: none;
|
||||
}
|
||||
header #banner {
|
||||
overflow: hidden;
|
||||
text-align: left;
|
||||
width: 82%%;
|
||||
margin-left: 25%;
|
||||
}
|
||||
header #banner a,
|
||||
header #banner a:active,
|
||||
header #banner a:visited,
|
||||
header #banner a:link,
|
||||
header #banner a:hover {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
vertical-align: middle;
|
||||
font-weight: bolder;
|
||||
margin-left: 3px;
|
||||
}
|
||||
header #banner #logo-img {
|
||||
height: 25px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
header #banner #logo-text {
|
||||
font-size: 20px;
|
||||
position: absolute;
|
||||
top: 10%;
|
||||
}
|
||||
/* nav */
|
||||
nav {
|
||||
width: 80%;
|
||||
height: 32px;
|
||||
position: fixed;
|
||||
left: 22%;
|
||||
top: 0px;
|
||||
padding: 0px;
|
||||
background: #000;
|
||||
color: #ffffff;
|
||||
z-index: 99;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
nav a,
|
||||
nav a:active,
|
||||
nav a:visited,
|
||||
nav a:link,
|
||||
nav a:hover {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
}
|
||||
nav #banner {
|
||||
overflow: hidden;
|
||||
/*text-align: center;*/
|
||||
width: 100%;
|
||||
}
|
||||
nav #banner a,
|
||||
nav #banner a:active,
|
||||
nav #banner a:visited,
|
||||
nav #banner a:link,
|
||||
nav #banner a:hover {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
nav #banner #logo-img {
|
||||
height: 22px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
nav #banner #logo-text {
|
||||
font-size: 22px;
|
||||
}
|
||||
nav #navbar{
|
||||
}
|
||||
nav ul {
|
||||
margin: 0px;
|
||||
padding: 0px 20px;
|
||||
}
|
||||
nav ul li {
|
||||
list-style: none;
|
||||
margin: 0px;
|
||||
/* padding: 1px 1px 3px 1px; */
|
||||
float: left;
|
||||
}
|
||||
nav ul li .menu-popup {
|
||||
left: 0px;
|
||||
right: auto;
|
||||
}
|
||||
|
||||
nav #logo-img {
|
||||
height: 25px;
|
||||
margin-top: 4px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
nav #logo-text {
|
||||
font-size: 22px;
|
||||
margin-top: 3px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
nav .nav-menu-search {
|
||||
position: relative;
|
||||
|
||||
margin: 4px 17px;
|
||||
margin-right: 0px;
|
||||
height: 17px;
|
||||
width: 180px;
|
||||
|
||||
}
|
||||
|
||||
nav #search-box #search-text {
|
||||
background-image: url('icons/lupe.png');
|
||||
background-repeat:no-repeat;
|
||||
padding-left:20px;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
border-bottom-left-radius: 15px;
|
||||
}
|
||||
|
||||
|
||||
nav .nav-menu-icon {
|
||||
position: relative;
|
||||
height: 22px;
|
||||
padding: 5px;
|
||||
margin: 0px 7px;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
nav .nav-menu-icon.selected {
|
||||
background-color: #fff;
|
||||
}
|
||||
nav .nav-menu-icon img {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
nav .nav-menu-icon .nav-notify {
|
||||
top: 3px;
|
||||
}
|
||||
/*marker*/
|
||||
nav .nav-menu {
|
||||
position: relative;
|
||||
height: 16px;
|
||||
padding: 5px;
|
||||
margin: 3px 15px 0px;
|
||||
font-size: 15px;
|
||||
/*border-bottom: 3px solid #364A84;*/
|
||||
}
|
||||
nav .nav-menu.selected {
|
||||
/*border-bottom: 3px solid #9eabb0;*/
|
||||
}
|
||||
nav .nav-notify {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: #ff0000;
|
||||
/* background-color: #19aeff; */
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-size: 10px;
|
||||
font-weight: 900;
|
||||
padding: 1px 4px;
|
||||
top: 0px;
|
||||
right: -6px;
|
||||
min-width: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
nav .nav-notify.show {
|
||||
display: block;
|
||||
}
|
||||
nav #nav-help-link,
|
||||
nav #nav-search-link,
|
||||
nav #nav-directory-link,
|
||||
nav #nav-apps-link,
|
||||
nav #nav-site-linkmenu,
|
||||
nav #nav-home-link,
|
||||
nav #nav-user-linkmenu
|
||||
{
|
||||
float: right;
|
||||
}
|
||||
nav #nav-user-linkmenu{
|
||||
margin-right: 0px;
|
||||
}
|
||||
nav #nav-home-link, #nav-directory-link, #nav-apps-link{
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
font-weight: bold;
|
||||
margin: 3px 5px;
|
||||
}
|
||||
nav #nav-directory-link{
|
||||
margin-right: 0px;
|
||||
}
|
||||
nav #nav-home-link{
|
||||
margin-left: 0px;
|
||||
}
|
||||
nav #nav-help-link .menu-popup,
|
||||
nav #nav-search-link .menu-popup,
|
||||
nav #nav-directory-link .menu-popup,
|
||||
nav #nav-apps-link .menu-popup,
|
||||
nav #nav-site-linkmenu .menu-popup {
|
||||
right: 0px;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
|
||||
background-image: url("../../../view/theme/diabook/icons/messages2.png");
|
||||
}
|
||||
|
||||
/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
|
||||
background-image: url("../../../view/theme/diabook/icons/notify2.png");
|
||||
}
|
||||
|
||||
nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
|
||||
background-image: url("../../../view/theme/diabook/icons/contacts2.png");
|
||||
}
|
||||
|
||||
nav #nav-apps-link.selected {
|
||||
background-color: #364e59;
|
||||
}
|
||||
|
||||
#nav-notifications-mark-all {
|
||||
/* padding: 1px 1px 2px 26px; */
|
||||
/* border-bottom: 1px solid #364E59; */
|
||||
/* margin: 0px 0px 2px 0px;
|
||||
padding: 5px 10px; */
|
||||
}
|
||||
|
||||
#nav-notifications-see-all {
|
||||
/* padding: 1px 1px 2px 26px; */
|
||||
/* border-bottom: 1px solid #364E59; */
|
||||
/* margin: 0px 0px 2px 0px;
|
||||
padding: 5px 10px; */
|
||||
}
|
||||
|
||||
.notify-seen {
|
||||
background: none repeat scroll 0 0 #DDDDDD;
|
||||
}
|
||||
|
||||
ul.menu-popup {
|
||||
position: absolute;
|
||||
display: none;
|
||||
width: 11em;
|
||||
background: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
list-style: none;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
ul.menu-popup a {
|
||||
display: block;
|
||||
color: #2d2d2d;
|
||||
padding: 5px 10px;
|
||||
text-decoration: none;
|
||||
}
|
||||
ul.menu-popup a:hover {
|
||||
background-color: #fff797; /*bdcdd4;*/
|
||||
color: #000;
|
||||
}
|
||||
ul.menu-popup .menu-sep {
|
||||
border-top: 1px solid #9eabb0;
|
||||
}
|
||||
ul.menu-popup li {
|
||||
float: none;
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
ul.menu-popup li img {
|
||||
float: left;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
ul.menu-popup .empty {
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
color: #9eabb0;
|
||||
}
|
||||
/* autocomplete popup */
|
||||
.acpopup {
|
||||
max-height: 150px;
|
||||
background-color: #ffffff;
|
||||
color: #2d2d2d;
|
||||
border: 1px solid #MenuBorder;
|
||||
overflow: auto;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
.acpopupitem {
|
||||
color: #2d2d2d;
|
||||
padding: 4px;
|
||||
clear: left;
|
||||
}
|
||||
.acpopupitem img {
|
||||
float: left;
|
||||
margin-right: 4px;
|
||||
}
|
||||
.acpopupitem.selected {
|
||||
background-color: #bdcdd4;
|
||||
}
|
||||
#nav-notifications-menu {
|
||||
width: 400px;
|
||||
max-height: 550px;
|
||||
overflow: auto;
|
||||
}
|
||||
/* #nav-notifications-menu a {
|
||||
display: inline;
|
||||
padding: 5px 0px;
|
||||
margin: 0px 0px 2px 0px;
|
||||
}
|
||||
#nav-notifications-menu li:hover {
|
||||
background-color: #bdcdd4;
|
||||
}*/
|
||||
|
||||
#nav-notifications-menu img {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
}
|
||||
#nav-notifications-menu .contactname {
|
||||
font-weight: bold;
|
||||
}
|
||||
#nav-notifications-menu .notif-when {
|
||||
font-size: 10px;
|
||||
color: #9eabb0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.notif-image {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
padding: 7px 7px 0px 0px;
|
||||
}
|
||||
|
||||
/*profile_side*/
|
||||
#profile_side {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
#ps-usericon{
|
||||
height: 25px
|
||||
}
|
||||
#ps-username{
|
||||
font-size: 1.17em;
|
||||
font-weight: bold;
|
||||
vertical-align: top;
|
||||
position: absolute;
|
||||
padding-top: 4px;
|
||||
padding-left: 5px;
|
||||
color: #2D2D2D;
|
||||
word-wrap: break-word;
|
||||
width: 130px;
|
||||
}
|
||||
#ps-username:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
.menu-profile-side{
|
||||
list-style: none;
|
||||
padding-left: 0px;
|
||||
min-height: 0px;
|
||||
}
|
||||
.menu-profile-list{
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
padding-left: 16px;
|
||||
min-height: 16px;
|
||||
list-style: none;
|
||||
}
|
||||
.menu-profile-list:hover{
|
||||
background: #EEE;
|
||||
}
|
||||
.menu-profile-list-item{
|
||||
padding-left: 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.menu-profile-list-item:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
/*http://prothemedesign.com/circular-icons/*/
|
||||
.menu-profile-icon.home{
|
||||
background: url("../../../view/theme/diabook/icons/home.png") no-repeat;
|
||||
}
|
||||
.menu-profile-icon.photos{
|
||||
background: url("../../../view/theme/diabook/icons/mess_side.png") no-repeat;
|
||||
}
|
||||
.menu-profile-icon.events{
|
||||
background: url("../../../view/theme/diabook/icons/events.png") no-repeat;
|
||||
}
|
||||
.menu-profile-icon.notes{
|
||||
background: url("../../../view/theme/diabook/icons/notes.png") no-repeat;
|
||||
}
|
||||
.menu-profile-icon.foren{
|
||||
background: url("../../../view/theme/diabook/icons/pubgroups.png") no-repeat;
|
||||
}
|
||||
.menu-profile-icon.com_side{
|
||||
background: url("../../../view/theme/diabook/icons/com_side.png") no-repeat;
|
||||
}
|
||||
|
||||
/* aside */
|
||||
/*marker*/
|
||||
aside {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 180px;
|
||||
padding: 0px 5px 0px 0px;
|
||||
border-right: 1px solid #D2D2D2;
|
||||
float: left;
|
||||
/* background: #F1F1F1; */
|
||||
}
|
||||
|
||||
aside .vcard .fn {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
aside .vcard .title {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
aside .vcard dl {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
}
|
||||
aside .vcard dt {
|
||||
float: left;
|
||||
margin-left: 0px;
|
||||
/*width: 35%;*/
|
||||
text-align: right;
|
||||
color: #999999;
|
||||
}
|
||||
aside .vcard dd {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
/*width: 60%;*/
|
||||
}
|
||||
aside #profile-extra-links ul {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
aside #profile-extra-links li {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
list-style: none;
|
||||
}
|
||||
aside #dfrn-request-link {
|
||||
display: block;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
color: #ffffff;
|
||||
background: #005c94 url('../../../images/connect-bg.png') no-repeat left center;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
padding: 4px 2px 2px 35px;
|
||||
}
|
||||
aside #dfrn-request-link:hover {
|
||||
text-decoration: none;
|
||||
background-color: #36c;
|
||||
/* background-color: #19aeff; */
|
||||
}
|
||||
aside #profiles-menu {
|
||||
width: 20em;
|
||||
}
|
||||
aside #search-text {
|
||||
width: 150px;
|
||||
height: 17px;
|
||||
padding-left: 10px;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
border-bottom-left-radius: 15px;
|
||||
}
|
||||
aside #side-follow-url {
|
||||
width: 150px;
|
||||
}
|
||||
aside #side-peoplefind-url {
|
||||
width: 150px;
|
||||
}
|
||||
#contact-block {
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
}
|
||||
#contact-block .contact-block-h4 {
|
||||
float: left;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
#contact-block .allcontact-link {
|
||||
float: right;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
#contact-block .contact-block-content {
|
||||
clear: both;
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
}
|
||||
#contact-block .contact-block-link {
|
||||
float: left;
|
||||
margin: 0px 2px 2px 0px;
|
||||
}
|
||||
#contact-block .contact-block-link img {
|
||||
widht: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
#lost-password-link {
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
}
|
||||
/* widget */
|
||||
.widget {
|
||||
margin-bottom: 2em;
|
||||
/*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
|
||||
.action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
|
||||
/* font-size: 12px; */
|
||||
}
|
||||
/*marker*/
|
||||
.widget h3 {
|
||||
padding: 0px;
|
||||
margin: 2px;
|
||||
font-size: 1.05em;
|
||||
}
|
||||
.widget .action {
|
||||
opacity: 0.1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget input.action {
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget:hover .title .action {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget .tool:hover .action {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget .tool:hover .action.ticked {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget ul {
|
||||
padding: 0px;
|
||||
}
|
||||
.widget ul li {
|
||||
padding-left: 16px;
|
||||
min-height: 16px;
|
||||
list-style: none;
|
||||
}
|
||||
.widget .tool.selected {
|
||||
background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;
|
||||
}
|
||||
/* widget: search */
|
||||
span.sbox_l {
|
||||
background: white url('../../../view/theme/diabook/icons/srch_l.gif') no-repeat top left;
|
||||
float: left;
|
||||
width: 19px; height: 19px;
|
||||
margin-left: 10px;
|
||||
margin-top: 5px;
|
||||
|
||||
}
|
||||
|
||||
span.sbox_r {
|
||||
background: white url('../../../view/theme/diabook/icons/srch_r.gif') no-repeat top left;
|
||||
float: left;
|
||||
width: 19px; height: 19px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
span.sbox input {
|
||||
background: white url('../../../view/theme/diabook/icons/srch_bg.gif') repeat-x top left;
|
||||
float: left;
|
||||
margin-top: 5px;
|
||||
border: 0;
|
||||
height: 13px; width: 100px;
|
||||
padding: 3px;
|
||||
font: 11px/13px arial;
|
||||
color: #000;
|
||||
}
|
||||
#add-search-popup {
|
||||
width: 200px;
|
||||
top: 18px;
|
||||
}
|
||||
/* section */
|
||||
section {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 610px;
|
||||
padding: 0px 0px 0px 12px;
|
||||
}
|
||||
|
||||
body .pageheader{
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
margin-bottom: 20px;
|
||||
margin-top: 0px;
|
||||
max-width: 575px;
|
||||
}
|
||||
.qcomment{
|
||||
max-width: 122px;
|
||||
}
|
||||
#id_username {
|
||||
width: 173px;
|
||||
}
|
||||
#id_password {
|
||||
width: 173px;
|
||||
}
|
||||
#id_openid_url {
|
||||
width: 173px;
|
||||
}
|
||||
#contact-edit-end {
|
||||
}
|
||||
.pager {
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
font-size: 1.0em;
|
||||
clear: both;
|
||||
display: block;
|
||||
}
|
||||
.tabs {
|
||||
|
||||
background-position: 0 -20px;
|
||||
background-repeat: repeat-x;
|
||||
height: 27px;
|
||||
padding: 0;
|
||||
}
|
||||
.tab.button {
|
||||
margin-left: 5px;
|
||||
/*background: none repeat scroll 0 0 #F8F8F8;*/
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
font-weight: normal;
|
||||
padding: 3px;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
/*marker*/
|
||||
right_aside {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 180px;
|
||||
/*border-left: 1px solid #D2D2D2;*/
|
||||
|
||||
/* background: #F1F1F1; */
|
||||
}
|
||||
/*marker*/
|
||||
right_aside h3 {font-size: 1.05em; border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px;
|
||||
margin-top:30px;}
|
||||
right_aside .directory-item { width: 50px; height: 50px; vertical-align: center; text-align: center; }
|
||||
right_aside .directory-photo { margin: 0px; }
|
||||
right_aside .directory-photo-img { max-width: 45px; max-height: 45px; }
|
||||
right_aside #likes { margin: 0px; padding: 0px; list-style: none; }
|
||||
right_aside .items-wrapper{ overflow: auto; width: 100%; }
|
||||
right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; }
|
||||
right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto; width: 100%; }
|
||||
#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;}
|
||||
#page-sidebar-right_aside ul {margin-top: 0px;}
|
||||
#page-sidebar-right_aside .label {max-width: 128px;}
|
||||
right_aside .icon {width: 10px; height: 10px;}
|
||||
.close_box {
|
||||
background-image: url("../../../view/theme/diabook/icons/close_box.png");
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
opacity: 0.1;
|
||||
}
|
||||
.close_box:hover {
|
||||
background-image: url("../../../view/theme/diabook/icons/close_box.png");
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
right_aside h3 {font-size: 1.05em;}
|
||||
|
||||
/* wall item */
|
||||
/*marker*/
|
||||
.tread-wrapper {
|
||||
border-bottom: 1px solid #D2D2D2;
|
||||
position: relative;
|
||||
padding: 5px;
|
||||
margin-bottom: 0px;
|
||||
width: 775px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-decor {
|
||||
position: absolute;
|
||||
left: 780px;
|
||||
top: -10px;
|
||||
width: 16px;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container {
|
||||
display: table;
|
||||
width: 770px;
|
||||
}
|
||||
|
||||
|
||||
.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
.wall-item-bottom {
|
||||
font-size: 13px;
|
||||
}
|
||||
.wall-item-container .wall-item-bottom {
|
||||
/* opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out; */
|
||||
}
|
||||
.wall-item-container:hover .wall-item-bottom {
|
||||
/* opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out; */
|
||||
}
|
||||
.wall-item-container .wall-item-info {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
text-align: left;
|
||||
width: 80px;
|
||||
}
|
||||
.wall-item-container .wall-item-location {
|
||||
padding-right: 40px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-ago {
|
||||
word-wrap: break-word;
|
||||
width: 50px;
|
||||
margin-left: 10px;
|
||||
color: #999;
|
||||
}
|
||||
.wall-item-location {
|
||||
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content {
|
||||
|
||||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content img {
|
||||
max-width: auto;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-container .wall-item-name {
|
||||
font-weight: bold;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-author {
|
||||
width: 100%;
|
||||
margin-bottom: 0.3em;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-social {
|
||||
float: left;
|
||||
margin-bottom: 1px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-social a {
|
||||
margin-right: 1em;
|
||||
}
|
||||
.wall-item-actions-social a {
|
||||
float: left;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools {
|
||||
float: right;
|
||||
width: 80px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools a {
|
||||
float: right;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools input {
|
||||
float: right;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container.comment {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
margin-left: 80px;
|
||||
width: 690px;
|
||||
border-bottom: 1px solid hsl(198, 21%, 79%);
|
||||
}
|
||||
.wall-item-container.comment .contact-photo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 16px;
|
||||
/*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
|
||||
|
||||
}
|
||||
.wall-item-container.comment {
|
||||
top: 15px !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
.wall-item-container.comment .wall-item-links {
|
||||
padding-left: 12px;
|
||||
}
|
||||
.wall-item-comment-wrapper {
|
||||
margin: 1px 5px 5px 80px;
|
||||
}
|
||||
.wall-item-comment-wrapper .comment-edit-photo {
|
||||
display: none;
|
||||
}
|
||||
.wall-item-comment-wrapper textarea {
|
||||
height: 1.6em;
|
||||
width: 100%;
|
||||
font-size: 10px;
|
||||
color: #999999;
|
||||
border: 1px solid #DDD;
|
||||
padding: 0.3em;
|
||||
font-size: 14px;
|
||||
}
|
||||
.wall-item-comment-wrapper .comment-edit-text-full {
|
||||
font-size: 14px;
|
||||
height: 4em;
|
||||
color: #2d2d2d;
|
||||
border: 1px solid #2d2d2d;
|
||||
}
|
||||
.comment-edit-preview {
|
||||
width: 500px;
|
||||
margin-top: 10px;
|
||||
background-color: #fff797;
|
||||
}
|
||||
.comment-edit-preview .contact-photo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 16px;
|
||||
/*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
|
||||
|
||||
}
|
||||
.comment-edit-preview {
|
||||
top: 15px !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
.comment-edit-preview .wall-item-links {
|
||||
padding-left: 12px;
|
||||
}
|
||||
.comment-edit-preview .wall-item-container {
|
||||
width: 700px;
|
||||
}
|
||||
.comment-edit-preview .tread-wrapper {
|
||||
width: 700px;
|
||||
padding: 0;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.shiny {
|
||||
/* border-right: 10px solid #fce94f; */
|
||||
border-right: 1px solid #A7C7F7;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
#jot-preview-content{
|
||||
margin-top: 30px;}
|
||||
|
||||
#jot-preview-content .tread-wrapper {
|
||||
background-color: #fff797;
|
||||
}
|
||||
|
||||
.wall-item-tags {
|
||||
padding-top: 1px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
.tag {
|
||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||
color: #999;
|
||||
padding-left: 3px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.tag a {
|
||||
padding-right: 5px;
|
||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||
color: #999;
|
||||
}
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
background: #FFFFFF;
|
||||
border: 2px solid #364e59;
|
||||
height: 25px;
|
||||
width: 25px;
|
||||
overflow: hidden;
|
||||
padding: 1px;
|
||||
position: absolute !important;
|
||||
top: 40px;
|
||||
left: 30px;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
.wwto .contact-photo {
|
||||
width: auto;
|
||||
height: 25px;
|
||||
}
|
||||
/* contacts menu */
|
||||
.contact-photo-wrapper {
|
||||
position: relative;
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.contact-photo-wrapper.wwto {
|
||||
width: 25px;
|
||||
}
|
||||
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
|
||||
.contact-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.contact-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-name {
|
||||
/* text-align: center; */
|
||||
/*font-weight: bold;*/
|
||||
font-size: 12px;
|
||||
}
|
||||
.contact-details {
|
||||
color: #999999;
|
||||
}
|
||||
/* editor */
|
||||
.jothidden {
|
||||
display: none;
|
||||
}
|
||||
#jot {
|
||||
width: 585px;
|
||||
margin: 0px 2em 20px 0px;
|
||||
}
|
||||
#profile-jot-form #profile-jot-text {
|
||||
height: 2.0em;
|
||||
width: 99%;
|
||||
font-size: 15px;
|
||||
color: #999999;
|
||||
border: 1px solid #DDD;
|
||||
padding: 0.3em;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.grey
|
||||
{
|
||||
display: inline;
|
||||
float: right;
|
||||
}
|
||||
#jot #jot-tools {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
height: 40px;
|
||||
overflow: none;
|
||||
width: 583px;
|
||||
background-color: #fff;
|
||||
border-bottom: 2px solid #9eabb0;
|
||||
}
|
||||
|
||||
#jot #jot-tools li {
|
||||
list-style: none;
|
||||
float: left;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border-bottom: 2px solid #9eabb0;
|
||||
}
|
||||
#jot #jot-tools li a {
|
||||
display: block;
|
||||
color: #cccccc;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
text-align: center;
|
||||
line-height: 40px;
|
||||
overflow: hidden;
|
||||
}
|
||||
#jot #jot-tools li:hover {
|
||||
background-color: #364e59;
|
||||
border-bottom: 2px solid #bdcdd4;
|
||||
}
|
||||
#jot #jot-tools li.perms {
|
||||
float: right;
|
||||
width: 40px;
|
||||
}
|
||||
#jot #jot-tools li.perms a.unlock {
|
||||
width: 30px;
|
||||
border-left: 10px solid #cccccc;
|
||||
background-color: #cccccc;
|
||||
background-position: left center;
|
||||
}
|
||||
#jot #jot-tools li.perms a.lock {
|
||||
width: 30px;
|
||||
border-left: 10px solid #666666;
|
||||
background-color: #666666;
|
||||
}
|
||||
#jot #jot-tools li.submit {
|
||||
float: right;
|
||||
background-color: #cccccc;
|
||||
border-bottom: 2px solid #cccccc;
|
||||
border-right: 1px solid #666666;
|
||||
border-left: 1px solid #666666;
|
||||
}
|
||||
#jot #jot-tools li.submit input {
|
||||
border: 0px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
background-color: #cccccc;
|
||||
color: #666666;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
}
|
||||
#jot #jot-tools li.submit input:hover {
|
||||
background-color: #bdcdd4;
|
||||
color: #666666;
|
||||
}
|
||||
#jot #jot-tools li.loading {
|
||||
float: right;
|
||||
background-color: #ffffff;
|
||||
width: 20px;
|
||||
vertical-align: center;
|
||||
text-align: center;
|
||||
border-top: 2px solid #9eabb0;
|
||||
height: 38px;
|
||||
}
|
||||
#jot #jot-tools li.loading img {
|
||||
margin-top: 10px;
|
||||
}
|
||||
#profile-jot-form #jot-title {
|
||||
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-weight: bold;
|
||||
height: 20px;
|
||||
margin: 0 0 5px;
|
||||
width: 60%;
|
||||
border: 1px solid #d2d2d2;
|
||||
}
|
||||
#profile-jot-form #jot-title:-webkit-input-placeholder {
|
||||
font-weight: normal;
|
||||
}
|
||||
#profile-jot-form #jot-title:-moz-placeholder {
|
||||
font-weight: normal;
|
||||
}
|
||||
#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
|
||||
width: 585px;
|
||||
height: 100px;
|
||||
}
|
||||
#jot #jot-title:hover {
|
||||
border: 1px solid #999999;
|
||||
}
|
||||
#jot #jot-title:focus {
|
||||
border: 1px solid #999999;
|
||||
}
|
||||
#jot #character-counter {
|
||||
width: 80px;
|
||||
float: right;
|
||||
text-align: right;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
#jot-perms-icon,
|
||||
#profile-location,
|
||||
#profile-nolocation,
|
||||
#profile-youtube,
|
||||
#profile-video,
|
||||
#profile-audio,
|
||||
#profile-link,
|
||||
#profile-title,
|
||||
#wall-image-upload,
|
||||
#wall-file-upload,
|
||||
#wall-image-upload-div,
|
||||
#wall-file-upload-div,
|
||||
.hover, .focus {
|
||||
cursor: pointer;
|
||||
margin-top: 2px;
|
||||
}
|
||||
/*marker*/
|
||||
#profile-jot-wrapper{
|
||||
margin: 0 20px 20px 0;
|
||||
width: 785px;
|
||||
}
|
||||
}
|
||||
/*marker*/
|
||||
#profile-jot-submit-wrapper {
|
||||
margin-bottom: 50px;
|
||||
width: 785px;
|
||||
}
|
||||
|
||||
#profile-jot-submit {
|
||||
float: right;
|
||||
margin-top: 2px;
|
||||
font-size: 14px;
|
||||
}
|
||||
#profile-upload-wrapper {
|
||||
float: left;
|
||||
margin-top: 2px;
|
||||
margin-left: 10px;
|
||||
|
||||
}
|
||||
#profile-attach-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-rotator {
|
||||
float: left;
|
||||
margin-left: 30px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-link-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-youtube-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-video-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-audio-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-location-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-jot-perms {
|
||||
float: left;
|
||||
margin-left: 45px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#jot-preview-link {
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-top: 2px;
|
||||
font-size: 9px;
|
||||
font-weight: bolder;
|
||||
cursor: pointer;
|
||||
}
|
||||
#profile-jot-perms{
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
/** buttons **/
|
||||
.button.creation1 {
|
||||
background-color: #fff;
|
||||
border: 1px solid #777777;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
cursor: pointer;
|
||||
font-weight: bolder;
|
||||
}
|
||||
.button.creation2 {
|
||||
background-color: #33ACFF;
|
||||
background-image: -moz-linear-gradient(center top , #66C1FF 0%, #0097FF 100%);
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
margin-left: 5px;
|
||||
cursor: pointer;
|
||||
font-weight: bolder;
|
||||
}
|
||||
/*input[type="submit"] {
|
||||
border: 0px;
|
||||
background-color: @ButtonBackgroundColor;
|
||||
color: @ButtonColor;
|
||||
padding: 0px 10px;
|
||||
.rounded(5px);
|
||||
height: 18px;
|
||||
}*/
|
||||
/** acl **/
|
||||
#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
|
||||
display: block!important;
|
||||
}
|
||||
#acl-wrapper {
|
||||
width: 690px;
|
||||
float: left;
|
||||
}
|
||||
#acl-search {
|
||||
float: right;
|
||||
background: #ffffff url("../../../images/search_18.png") no-repeat right center;
|
||||
padding-right: 20px;
|
||||
}
|
||||
#acl-showall {
|
||||
float: left;
|
||||
display: block;
|
||||
width: auto;
|
||||
height: 18px;
|
||||
background-color: #cccccc;
|
||||
background-image: url("../../../images/show_all_off.png");
|
||||
background-position: 7px 7px;
|
||||
background-repeat: no-repeat;
|
||||
padding: 7px 5px 0px 30px;
|
||||
color: #999999;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
#acl-showall.selected {
|
||||
color: #000000;
|
||||
background-color: #ff9900;
|
||||
background-image: url("../../../images/show_all_on.png");
|
||||
}
|
||||
#acl-list {
|
||||
height: 210px;
|
||||
border: 1px solid #cccccc;
|
||||
clear: both;
|
||||
margin-top: 30px;
|
||||
overflow: auto;
|
||||
}
|
||||
.acl-list-item {
|
||||
display: block;
|
||||
width: 150px;
|
||||
height: 30px;
|
||||
border: 1px solid #cccccc;
|
||||
margin: 5px;
|
||||
float: left;
|
||||
}
|
||||
.acl-list-item img {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
float: left;
|
||||
margin: 4px;
|
||||
}
|
||||
.acl-list-item p {
|
||||
height: 12px;
|
||||
font-size: 10px;
|
||||
margin: 0px;
|
||||
padding: 2px 0px 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.acl-list-item a {
|
||||
font-size: 8px;
|
||||
display: block;
|
||||
width: 40px;
|
||||
height: 10px;
|
||||
float: left;
|
||||
color: #999999;
|
||||
background-color: #cccccc;
|
||||
background-position: 3px 3px;
|
||||
background-repeat: no-repeat;
|
||||
margin-right: 5px;
|
||||
-webkit-border-radius: 2px ;
|
||||
-moz-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
#acl-wrapper a:hover {
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
}
|
||||
.acl-button-show {
|
||||
background-image: url("../../../images/show_off.png");
|
||||
}
|
||||
.acl-button-hide {
|
||||
background-image: url("../../../images/hide_off.png");
|
||||
}
|
||||
.acl-button-show.selected {
|
||||
color: #000000;
|
||||
background-color: #9ade00;
|
||||
background-image: url("../../../images/show_on.png");
|
||||
}
|
||||
.acl-button-hide.selected {
|
||||
color: #000000;
|
||||
background-color: #ff4141;
|
||||
background-image: url("../../../images/hide_on.png");
|
||||
}
|
||||
.acl-list-item.groupshow {
|
||||
border-color: #9ade00;
|
||||
}
|
||||
.acl-list-item.grouphide {
|
||||
border-color: #ff4141;
|
||||
}
|
||||
/** /acl **/
|
||||
/** tab buttons **/
|
||||
/*marker*/
|
||||
ul.tabs {
|
||||
list-style-type: none;
|
||||
padding-bottom: 10px;
|
||||
font-size: 13px;
|
||||
width: 805px;
|
||||
}
|
||||
ul.tabs li {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
}
|
||||
ul.tabs li .active {
|
||||
background-color: #333333;
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
margin-left: 5px;
|
||||
}
|
||||
/**
|
||||
* Form fields
|
||||
*/
|
||||
.field {
|
||||
margin-bottom: 10px;
|
||||
padding-bottom: 10px;
|
||||
overflow: auto;
|
||||
width: 100%;
|
||||
}
|
||||
.field label {
|
||||
float: left;
|
||||
width: 200px;
|
||||
}
|
||||
.field input, .field textarea {
|
||||
width: 400px;
|
||||
}
|
||||
.field textarea {
|
||||
height: 100px;
|
||||
}
|
||||
.field .field_help {
|
||||
display: block;
|
||||
margin-left: 200px;
|
||||
color: #666666;
|
||||
}
|
||||
.field .onoff {
|
||||
float: left;
|
||||
width: 80px;
|
||||
}
|
||||
.field .onoff a {
|
||||
display: block;
|
||||
border: 1px solid #666666;
|
||||
background-image: url("../../../images/onoff.jpg");
|
||||
background-repeat: no-repeat;
|
||||
padding: 4px 2px 2px 2px;
|
||||
height: 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.field .onoff .off {
|
||||
border-color: #666666;
|
||||
padding-left: 40px;
|
||||
background-position: left center;
|
||||
background-color: #cccccc;
|
||||
color: #666666;
|
||||
text-align: right;
|
||||
}
|
||||
.field .onoff .on {
|
||||
border-color: #204A87;
|
||||
padding-right: 40px;
|
||||
background-position: right center;
|
||||
background-color: #D7E3F1;
|
||||
color: #204A87;
|
||||
text-align: left;
|
||||
}
|
||||
.field .hidden {
|
||||
display: none!important;
|
||||
}
|
||||
.field.radio .field_help {
|
||||
margin-left: 0px;
|
||||
}
|
||||
#directory-search-form{
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
#profile-edit-links-end {
|
||||
clear: both;
|
||||
margin-bottom: 15px;
|
||||
|
||||
.item-image-preview {
|
||||
float: inherit;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
|
||||
|
||||
#profile-edit-links li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.profile-edit-side-div {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#register-form label,
|
||||
#profile-edit-form label {
|
||||
width: 300px; float: left;
|
||||
}
|
||||
|
||||
.required {
|
||||
display: inline;
|
||||
color: #B20202;
|
||||
}
|
||||
|
||||
/* oauth */
|
||||
.oauthapp {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
border-bottom: 2px solid #cccccc;
|
||||
padding-bottom: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.oauthapp img {
|
||||
float: left;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
margin: 10px;
|
||||
}
|
||||
.oauthapp img.noicon {
|
||||
background-image: url("../../../images/icons/48/plugin.png");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.oauthapp a {
|
||||
float: left;
|
||||
}
|
||||
/* contacts */
|
||||
.contact-entry-wrapper {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
float: left;
|
||||
}
|
||||
/* photo */
|
||||
.photo {
|
||||
border-radius: 10px;
|
||||
height: 145px !important;
|
||||
width: 145px !important;
|
||||
}
|
||||
.lframe {
|
||||
float: left;
|
||||
}
|
||||
/* profile match wrapper */
|
||||
.profile-match-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.profile-match-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.profile-match-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.profile-match-wrapper {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
|
||||
.contact-photo-menu-button {
|
||||
position: relative;
|
||||
background-image: url("../../../images/icons/16/menu.png");
|
||||
background-position: top left;
|
||||
background-repeat: no-repeat;
|
||||
margin: 0px 0px -16px 0px;
|
||||
padding: 0px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
top: -16px; left:0px;
|
||||
overflow: hidden;
|
||||
text-indent: 40px;
|
||||
display: none;
|
||||
|
||||
}
|
||||
.contact-photo-menu {
|
||||
width: 11em;
|
||||
border: 3px solid #364e59;
|
||||
color: #2d2d2d;
|
||||
background: #FFFFFF;
|
||||
/* position: absolute;*/
|
||||
position: relative;
|
||||
left: 0px; top: 0px;
|
||||
display: none;
|
||||
z-index: 10000;
|
||||
}
|
||||
.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
|
||||
.contact-photo-menu li a {
|
||||
display: block;
|
||||
padding: 5px 10px;
|
||||
color: #2d2d2d;
|
||||
text-decoration: none;
|
||||
}
|
||||
.contact-photo-menu li a:hover {
|
||||
background-color: #bdcdd4;
|
||||
}
|
||||
|
||||
/* page footer */
|
||||
footer {
|
||||
height: 100px;
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 1px solid #D2D2D2;
|
||||
padding-left: 9px;
|
||||
margin: 0 0 0 .8ex;
|
||||
color: #777;
|
||||
}
|
||||
.oembed {
|
||||
font-weight: bold;
|
||||
}
|
||||
.aprofile dt{
|
||||
box-shadow: 1px 1px 5px 0;
|
||||
color: #666666;
|
||||
margin: 15px 0 5px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
/* ================== */
|
||||
/* = Contacts Block = */
|
||||
/* ================== */
|
||||
|
||||
.contact-block-img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
padding-right: 3px;
|
||||
}
|
||||
.contact-block-div {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.contact-block-textdiv { width: 150px; height: 34px; float: left; }
|
||||
#contact-block-end { clear: both; }
|
||||
|
||||
#group-edit-wrapper {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#group-members-end {
|
||||
clear: both;
|
||||
}
|
||||
#group-edit-desc {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
/*
|
||||
#group-separator,
|
||||
#prof-separator { display: none;}
|
||||
*/
|
||||
#prof-members-end{
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
|
||||
margin-bottom: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#prvmail-submit {
|
||||
float: right;
|
||||
margin-top: 10px;
|
||||
}
|
||||
#prvmail-subject
|
||||
{
|
||||
background: none repeat scroll 0 0 #FFFFFF;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-weight: bold;
|
||||
height: 20px;
|
||||
margin: 0 0 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
#prvmail-form{
|
||||
width: 597px;
|
||||
}
|
||||
#prvmail-upload-wrapper,
|
||||
#prvmail-link-wrapper,
|
||||
#prvmail-rotator-wrapper {
|
||||
float: left;
|
||||
margin-top: 10px;
|
||||
margin-right: 10px;
|
||||
width: 24px;
|
||||
}
|
||||
|
||||
#prvmail-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-list-sender,
|
||||
.mail-list-detail {
|
||||
float: left;
|
||||
}
|
||||
.mail-list-detail {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.mail-list-subject {
|
||||
font-size: 1.1em;
|
||||
margin-top: 10px;
|
||||
}
|
||||
a.mail-list-link {
|
||||
display: block;
|
||||
font-size: 1.3em;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
/*
|
||||
*a.mail-list-link:hover {
|
||||
* background-color: #15607B;
|
||||
* color: #F5F6FB;
|
||||
*}
|
||||
*/
|
||||
|
||||
.mail-list-outside-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-list-outside-wrapper {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.mail-list-delete-wrapper {
|
||||
float: right;
|
||||
margin-right: 30px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.mail-list-delete-icon {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.mail-conv-sender,
|
||||
.mail-conv-detail {
|
||||
float: left;
|
||||
}
|
||||
.mail-conv-detail {
|
||||
margin-left: 20px;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.mail-conv-subject {
|
||||
font-size: 1.4em;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.mail-conv-outside-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-conv-outside-wrapper {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.mail-conv-delete-wrapper {
|
||||
float: right;
|
||||
margin-right: 30px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
.mail-conv-break {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-conv-delete-icon {
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* ========== */
|
||||
/* = Events = */
|
||||
/* ========== */
|
||||
.eventcal {
|
||||
float: left;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.vevent {
|
||||
|
||||
}
|
||||
.vevent .event-description, .vevent .event-location {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.vevent .event-start {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
#new-event-link {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.edit-event-link, .plink-event-link {
|
||||
float: left;
|
||||
margin-top: 4px;
|
||||
margin-right: 4px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.event-description:before {
|
||||
content: url('../../../images/calendar.png');
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.event-start, .event-end {
|
||||
margin-left: 10px;
|
||||
width: 330px;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.event-start .dtstart, .event-end .dtend {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.event-list-date {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.prevcal, .nextcal {
|
||||
float: left;
|
||||
margin-left: 32px;
|
||||
margin-right: 32px;
|
||||
margin-top: 64px;
|
||||
}
|
||||
.event-calendar-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
.calendar {
|
||||
font-family: Courier, monospace;
|
||||
}
|
||||
.today {
|
||||
font-weight: bold;
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
.settings-block {
|
||||
border: 1px solid #AAA;
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.app-title {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#identity-manage-desc {
|
||||
margin-top:15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#identity-manage-choose {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#identity-submit {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#photo-prev-link, #photo-next-link {
|
||||
padding: 10px;
|
||||
float: left;
|
||||
}
|
||||
.lightbox{
|
||||
float: left;
|
||||
}
|
||||
|
||||
#photo-photo {
|
||||
float: left;
|
||||
}
|
||||
#photo-like-div .wall-item-like-buttons {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
.comment-edit-text-empty {
|
||||
margin: 10px 0 0;
|
||||
width: 85%;
|
||||
}
|
||||
.comment-edit-photo {
|
||||
margin: 10px 0 0;
|
||||
}
|
||||
.wall-item-like-buttons .icon.like {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#photo-photo-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.tabs .comment-wwedit-wrapper {
|
||||
display: block;
|
||||
margin-top: 30px;
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.profile-match-photo {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
.profile-match-name {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 120px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.profile-match-break,
|
||||
.profile-match-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.profile-match-connect {
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.profile-match-wrapper {
|
||||
float: left;
|
||||
padding: 10px;
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
scroll: auto;
|
||||
}
|
||||
#profile-match-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* ============= */
|
||||
/* = Directory = */
|
||||
/* ============= */
|
||||
/* contacts menu */
|
||||
.contact-photo-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-photo-menu-button {
|
||||
display: none;
|
||||
/* position: absolute; */
|
||||
/* position: absolute; */
|
||||
left: 0px;
|
||||
top: -16px;
|
||||
}
|
||||
.contact-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.contact-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo-menu-button {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
.directory-item {
|
||||
float: left;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
.directory-item .contact-photo {
|
||||
width: 175px;
|
||||
height: 175px;
|
||||
}
|
||||
.directory-item .contact-photo img {
|
||||
width: 175px;
|
||||
height: 175px;
|
||||
}
|
||||
.contact-name {
|
||||
text-align: left;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
}
|
||||
.contact-details {
|
||||
color: #999999;
|
||||
}
|
||||
#side-bar-photos-albums li{
|
||||
list-style-type: disc;
|
||||
}
|
||||
#side-bar-photos-albums ul li{
|
||||
margin-left: 30px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
#side-bar-photos-albums{
|
||||
margin-top: 15px;
|
||||
}
|
||||
.photo-top-photo, .photo-album-photo {
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
.photo-album-image-wrapper, .photo-top-image-wrapper {
|
||||
float: left;
|
||||
-moz-box-shadow: 0 0 5px #888;
|
||||
-webkit-box-shadow: 0 0 5px #888;
|
||||
box-shadow: 0 0 5px #888;
|
||||
background-color: #000;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
padding-bottom: 20px;
|
||||
position: relative;
|
||||
margin: 0 10px 10px 0;
|
||||
width: 200px; height: 140px;
|
||||
overflow: hidden;
|
||||
}
|
||||
/*
|
||||
.photo-top-album-name {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
padding: 0 5px;
|
||||
}*/
|
||||
/*.photo-top-image-wrapper {
|
||||
position: relative;
|
||||
float: left;
|
||||
margin-top: 15px;
|
||||
margin-right: 15px;
|
||||
width: 200px; height: 200px;
|
||||
|
||||
}*/
|
||||
.photo-top-album-name {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
padding-left: 3px;
|
||||
background-color: #EEE;
|
||||
}
|
||||
.photo-top-album-link{
|
||||
color: #3465A4;
|
||||
}
|
||||
#photo-top-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#photo-top-links {
|
||||
margin-bottom: 30px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
#photos-upload-newalbum-div {
|
||||
float: left;
|
||||
width: 175px;
|
||||
}
|
||||
|
|
@ -185,6 +185,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -1,2865 +1,117 @@
|
|||
/**
|
||||
* Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
|
||||
* Additional Changes: Michael Vogel <icarus@dabo.de>
|
||||
**/
|
||||
|
||||
/* ========= */
|
||||
/* = Admin = */
|
||||
/* ========= */
|
||||
|
||||
#adminpage {
|
||||
/* width: 80%;*/
|
||||
}
|
||||
|
||||
#pending-update {
|
||||
float:right;
|
||||
color: #ffffff;
|
||||
font-weight: bold;
|
||||
background-color: #FF0000;
|
||||
padding: 0em 0.3em;
|
||||
}
|
||||
|
||||
.admin.linklist {
|
||||
border: 0px; padding: 0px;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.admin.link {
|
||||
list-style-position: inside;
|
||||
font-size: 1em;
|
||||
padding: 5px;
|
||||
width: 100px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
#adminpage dl {
|
||||
clear: left;
|
||||
margin-bottom: 2px;
|
||||
padding-bottom: 2px;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
|
||||
#adminpage dt {
|
||||
width: 200px;
|
||||
float: left;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#adminpage dd {
|
||||
margin-left: 200px;
|
||||
}
|
||||
#adminpage h3 {
|
||||
border-bottom: 1px solid #898989;
|
||||
margin-bottom: 5px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#adminpage .submit {
|
||||
clear:left;
|
||||
}
|
||||
|
||||
#adminpage #pluginslist {
|
||||
margin: 0px; padding: 0px;
|
||||
}
|
||||
|
||||
#adminpage .plugin {
|
||||
list-style: none;
|
||||
display: block;
|
||||
/* border: 1px solid #888888; */
|
||||
padding: 1em;
|
||||
margin-bottom: 5px;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
#adminpage .toggleplugin {
|
||||
float:left;
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
|
||||
#adminpage table th { text-align: left;}
|
||||
#adminpage td .icon { float: left;}
|
||||
#adminpage table#users img { width: 16px; height: 16px; }
|
||||
#adminpage table tr:hover { background-color: #eeeeee; }
|
||||
#adminpage .selectall { text-align: right; }
|
||||
/* icons */
|
||||
|
||||
.icon.bb-url{
|
||||
background-image: url("../../../view/theme/diabook/icons/bb-url.png");
|
||||
float: right;
|
||||
margin-top: 2px;}
|
||||
.icon.quote{
|
||||
background-image: url("../../../view/theme/diabook/icons/quote.png");
|
||||
float: right;
|
||||
margin-top: 2px;}
|
||||
.icon.bold{
|
||||
background-image: url("../../../view/theme/diabook/icons/bold.png");
|
||||
float: right;
|
||||
margin-top: 2px;}
|
||||
.icon.underline{
|
||||
background-image: url("../../../view/theme/diabook/icons/underline.png");
|
||||
float: right;
|
||||
margin-top: 2px;}
|
||||
.icon.italic{
|
||||
background-image: url("../../../view/theme/diabook/icons/italic.png");
|
||||
float: right;
|
||||
margin-top: 2px;}
|
||||
.icon.bb-image{
|
||||
background-image: url("../../../view/theme/diabook/icons/bb-image.png");
|
||||
float: right;
|
||||
margin-top: 2px;}
|
||||
.icon.bb-video{
|
||||
background-image: url("../../../view/theme/diabook/icons/bb-video.png");
|
||||
float: right;
|
||||
margin-top: 2px;}
|
||||
|
||||
.icon.contacts {
|
||||
background-image: url("../../../view/theme/diabook/icons/contacts.png");}
|
||||
.icon.notifications {
|
||||
background-image: url("../../../view/theme/diabook/icons/notifications.png");}
|
||||
.icon.notify {
|
||||
background-image: url("../../../view/theme/diabook/icons/notify.png");}
|
||||
.icon.messages {
|
||||
background-image: url("../../../view/theme/diabook/icons/messages.png");}
|
||||
.icon.community {
|
||||
background-image: url("../../../view/theme/diabook/icons/community.png");}
|
||||
|
||||
.icon.drop { background-image: url("../../../view/theme/diabook/icons/drop.png");}
|
||||
.icon.drophide { background-image: url("../../../view/theme/diabook/icons/drop.png");}
|
||||
.icon.dislike { background-image: url("../../../view/theme/diabook/icons/dislike.png");}
|
||||
.icon.like { background-image: url("../../../view/theme/diabook/icons/like.png");}
|
||||
.icon.pencil { background-image: url("../../../view/theme/diabook/icons/pencil.png");}
|
||||
.icon.recycle { background-image: url("../../../view/theme/diabook/icons/recycle.png");}
|
||||
.icon.remote-link { background-image: url("../../../view/theme/diabook/icons/remote.png");}
|
||||
.icon.tagged { background-image: url("../../../view/theme/diabook/icons/tagged.png");}
|
||||
.icon.file-as { background-image: url("../../../view/theme/diabook/icons/file_as.png");}
|
||||
.star-item.icon.unstarred { background-image: url("../../../view/theme/diabook/icons/unstarred.png");}
|
||||
.star-item.icon.starred { background-image: url("../../../view/theme/diabook/icons/starred.png");}
|
||||
.icon.link { background-image: url("../../../view/theme/diabook/icons/link.png");}
|
||||
.icon.lock { background-image: url("../../../view/theme/diabook/icons/lock.png");}
|
||||
.icon.unlock { background-image: url("../../../view/theme/diabook/icons/unlock.png");}
|
||||
.icon.language { background-image: url("../../../view/theme/diabook/icons/language.png");}
|
||||
|
||||
|
||||
.camera { background-image: url("../../../view/theme/diabook/icons/camera.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.attach { background-image: url("../../../view/theme/diabook/icons/attach.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video2 { background-image: url("../../../view/theme/diabook/icons/video.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.video { background-image: url("../../../view/theme/diabook/icons/video.png");
|
||||
display: block; width: 100%; height: 140px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio2 { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.audio { background-image: url("../../../view/theme/diabook/icons/audio.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.weblink { background-image: url("../../../view/theme/diabook/icons/weblink.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.globe { background-image: url("../../../view/theme/diabook/icons/globe.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.unglobe { background-image: url("../../../view/theme/diabook/icons/unglobe.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
.edit {background-image: url("../../../view/theme/diabook/icons/pencil2.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
|
||||
.icon.block {background-image: url("../../../view/theme/diabook/icons/block.png");
|
||||
display: block; width: 16px; height: 16px; background-repeat: no-repeat;}
|
||||
.icon.block.dim {background-image: url("../../../view/theme/diabook/icons/block.png");
|
||||
display: block; width: 16px; height: 16px; background-repeat: no-repeat; opacity: 0.3;}
|
||||
.icon.ad_drop { background-image: url("../../../view/theme/diabook/icons/drop.png");
|
||||
display: block; margin-left:5px; width: 16px; height: 16px; background-repeat: no-repeat;}
|
||||
|
||||
|
||||
|
||||
.article { background-position: -50px 0px;}
|
||||
/*.audio { background-position: -70px 0px;}*/
|
||||
/*.drop { background-position: -110px 0px;}*/
|
||||
/*.drophide { background-position: -130px 0px;}*/
|
||||
/*.edit { background-position: -150px 0px;}*/
|
||||
/*.camera { background-position: -170px 0px;}*/
|
||||
/*.dislike { background-position: -190px 0px;}*/
|
||||
/*.like { background-position: -210px 0px;}*/
|
||||
/*.link { background-position: -230px 0px;}*/
|
||||
|
||||
/*.globe { background-position: -50px -20px;}*/
|
||||
/*.noglobe { background-position: -70px -20px;}*/
|
||||
.no { background-position: -90px -20px;}
|
||||
.pause { background-position: -110px -20px;}
|
||||
.play { background-position: -130px -20px;}
|
||||
/*.pencil { background-position: -150px -20px;}*/
|
||||
.small-pencil { background-position: -170px -20px;}
|
||||
/*.recycle { background-position: -190px -20px;}*/
|
||||
/*.remote-link { background-position: -210px -20px;}*/
|
||||
.share { background-position: -230px -20px;}
|
||||
|
||||
.tools { background-position: -50px -40px;}
|
||||
/*.lock { background-position: -70px -40px;}*/
|
||||
|
||||
/*.video { background-position: -110px -40px;}*/
|
||||
.youtube { background-position: -130px -40px;}
|
||||
|
||||
/*.attach { background-position: -190px -40px;}*/
|
||||
/*.language { background-position: -210px -40px;}*/
|
||||
|
||||
|
||||
.icon.on { background-image: url("../../../view/theme/diabook/icons/toogle_on.png"); background-repeat: no-repeat;}
|
||||
.icon.off { background-image: url("../../../view/theme/diabook/icons/toogle_off.png"); background-repeat: no-repeat;}
|
||||
.icon.prev { background-image: url("../../../view/theme/diabook/icons/prev.png"); background-repeat: no-repeat;}
|
||||
.icon.next { background-image: url("../../../view/theme/diabook/icons/next.png"); background-repeat: no-repeat;}
|
||||
/*.tagged { background-position: -130px -60px;}*/
|
||||
|
||||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../images/content-types.png');
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
.type-image { background-position: -20px 0px; }
|
||||
.type-audio { background-position: -40px 0px; }
|
||||
.type-text { background-position: -60px 0px; }
|
||||
.type-unkn { background-position: -80px 0px; }
|
||||
|
||||
.icon.drop, .icon.drophide {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.icon {
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
/*background-image: url('icons.png');*/
|
||||
}
|
||||
|
||||
.icon {
|
||||
background-color: transparent ;
|
||||
background-repeat: no-repeat;
|
||||
/* background-position: left center; */
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
text-indent: -9999px;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
.icon.border.camera{
|
||||
background-image: url("../../../view/theme/diabook/icons/camera.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.icon.border.link{
|
||||
background-image: url("../../../view/theme/diabook/icons/weblink.png");
|
||||
display: block; width: 28px; height: 28px; background-repeat: no-repeat;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.icon.text {
|
||||
text-indent: 0px;
|
||||
}
|
||||
.icon.s10 {
|
||||
min-width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
.icon.s10.notify {
|
||||
background-image: url("../../../images/icons/10/notify_off.png");
|
||||
}
|
||||
.icon.s10.gear {
|
||||
background-image: url("../../../images/icons/10/gear.png");
|
||||
}
|
||||
.icon.s10.add {
|
||||
background-image: url("../../../images/icons/10/add.png");
|
||||
}
|
||||
.icon.s10.delete {
|
||||
background-image: url("../../../images/icons/10/delete.png");
|
||||
}
|
||||
.icon.s10.edit {
|
||||
background-image: url("../../../images/icons/10/edit.png");
|
||||
}
|
||||
.icon.s10.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s10.menu {
|
||||
background-image: url("../../../images/icons/10/menu.png");
|
||||
}
|
||||
.icon.s10.link {
|
||||
background-image: url("../../../images/icons/10/link.png");
|
||||
}
|
||||
.icon.s10.lock {
|
||||
background-image: url("../../../images/icons/10/lock.png");
|
||||
}
|
||||
.icon.s10.unlock {
|
||||
background-image: url("../../../images/icons/10/unlock.png");
|
||||
}
|
||||
.icon.s10.text {
|
||||
padding: 2px 0px 0px 15px;
|
||||
font-size: 10px;
|
||||
}
|
||||
.icon.s16 {
|
||||
min-width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
.icon.s16.notify {
|
||||
background-image: url("../../../images/icons/16/notify_off.png");
|
||||
}
|
||||
.icon.s16.gear {
|
||||
background-image: url("../../../images/icons/16/gear.png");
|
||||
}
|
||||
.icon.s16.add {
|
||||
background-image: url("../../../images/icons/16/add.png");
|
||||
}
|
||||
.icon.s16.delete {
|
||||
background-image: url("../../../images/icons/16/delete.png");
|
||||
}
|
||||
/*.icon.s16.edit {
|
||||
background-image: url("../../../images/icons/16/edit.png");
|
||||
}*/
|
||||
.icon.s16.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s16.menu {
|
||||
background-image: url("../../../images/icons/16/menu.png");
|
||||
}
|
||||
/*.icon.s16.link {
|
||||
background-image: url("../../../images/icons/16/link.png");
|
||||
}*/
|
||||
.icon.s16.lock {
|
||||
background-image: url("../../../images/icons/16/lock.png");
|
||||
}
|
||||
.icon.s16.unlock {
|
||||
background-image: url("../../../images/icons/16/unlock.png");
|
||||
}
|
||||
.icon.s16.text {
|
||||
padding: 4px 0px 0px 20px;
|
||||
font-size: 10px;
|
||||
}
|
||||
.icon.s22 {
|
||||
min-width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
.icon.s22.notify {
|
||||
background-image: url("../../../images/icons/22/notify_off.png");
|
||||
}
|
||||
.icon.s22.gear {
|
||||
background-image: url("../../../images/icons/22/gear.png");
|
||||
}
|
||||
.icon.s22.add {
|
||||
background-image: url("../../../images/icons/22/add.png");
|
||||
}
|
||||
.icon.s22.delete {
|
||||
background-image: url("../../../images/icons/22/delete.png");
|
||||
}
|
||||
.icon.s22.edit {
|
||||
background-image: url("../../../images/icons/22/edit.png");
|
||||
}
|
||||
.icon.s22.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s22.menu {
|
||||
background-image: url("../../../images/icons/22/menu.png");
|
||||
}
|
||||
.icon.s22.link {
|
||||
background-image: url("../../../images/icons/22/link.png");
|
||||
}
|
||||
.icon.s22.lock {
|
||||
background-image: url("../../../images/icons/22/lock.png");
|
||||
}
|
||||
.icon.s22.unlock {
|
||||
background-image: url("../../../images/icons/22/unlock.png");
|
||||
}
|
||||
.icon.s22.text {
|
||||
padding: 10px 0px 0px 25px;
|
||||
width: 200px;
|
||||
}
|
||||
.icon.s48 {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.icon.s48.notify {
|
||||
background-image: url("../../../images/icons/48/notify_off.png");
|
||||
}
|
||||
.icon.s48.gear {
|
||||
background-image: url("../../../images/icons/48/gear.png");
|
||||
}
|
||||
.icon.s48.add {
|
||||
background-image: url("../../../images/icons/48/add.png");
|
||||
}
|
||||
.icon.s48.delete {
|
||||
background-image: url("../../../images/icons/48/delete.png");
|
||||
}
|
||||
.icon.s48.edit {
|
||||
background-image: url("../../../images/icons/48/edit.png");
|
||||
}
|
||||
.icon.s48.star {
|
||||
background-image: url("../../../images/star_dummy.png");
|
||||
}
|
||||
.icon.s48.menu {
|
||||
background-image: url("../../../images/icons/48/menu.png");
|
||||
}
|
||||
.icon.s48.link {
|
||||
background-image: url("../../../images/icons/48/link.png");
|
||||
}
|
||||
.icon.s48.lock {
|
||||
background-image: url("../../../images/icons/48/lock.png");
|
||||
}
|
||||
.icon.s48.unlock {
|
||||
background-image: url("../../../images/icons/48/unlock.png");
|
||||
}
|
||||
|
||||
#contact-edit-links ul {
|
||||
list-style: none;
|
||||
list-style-type: none;
|
||||
}
|
||||
@import url('style.css');
|
||||
|
||||
.hide-comments-outer {
|
||||
margin-left: 80px;
|
||||
margin-bottom: 5px;
|
||||
width: 675px;
|
||||
border-bottom: 1px solid #BDCDD4;
|
||||
border-top: 1px solid #BDCDD4;
|
||||
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
/* global */
|
||||
body {
|
||||
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 13px;
|
||||
background-color: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 50px auto auto;
|
||||
display: table;
|
||||
|
||||
}
|
||||
|
||||
#jappix_mini {
|
||||
right: 45px !important;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #3465A4;
|
||||
/* color: #3e3e8c; */
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
/* color: blue; */
|
||||
text-decoration: underline
|
||||
}
|
||||
|
||||
.wall-item-name-link {
|
||||
/* float: left;*/
|
||||
}
|
||||
|
||||
.wall-item-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.left {
|
||||
float: left;
|
||||
}
|
||||
.right {
|
||||
float: right;
|
||||
}
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
.clear {
|
||||
clear: both;
|
||||
}
|
||||
.fakelink {
|
||||
color: #3465A4;
|
||||
/* color: #3e3e8c; */
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.fakelink:hover {
|
||||
/* color: blue; */
|
||||
/*color: #005c94; */
|
||||
text-decoration: underline;
|
||||
}
|
||||
.intro-end {
|
||||
border-bottom: 1px solid black;
|
||||
clear: both;
|
||||
margin-bottom: 25px;
|
||||
padding-bottom: 25px;
|
||||
width: 75%;
|
||||
}
|
||||
.intro-form-end {
|
||||
clear: both;
|
||||
}
|
||||
.intro-fullname {
|
||||
padding-bottom: 5px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
.intro-wrapper-end {
|
||||
clear: both;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
code {
|
||||
font-family: Courier, monospace;
|
||||
white-space: pre;
|
||||
display: block;
|
||||
overflow: auto;
|
||||
border: 1px solid #444;
|
||||
background: #EEE;
|
||||
color: #444;
|
||||
padding: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
#panel {
|
||||
position: absolute;
|
||||
width: 12em;
|
||||
background: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 0px;
|
||||
padding: 1em;
|
||||
list-style: none;
|
||||
border: 3px solid #364e59;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
/* tool */
|
||||
.tool {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
padding: 3px;
|
||||
}
|
||||
#saved-search-ul .tool:hover,
|
||||
#nets-sidebar .tool:hover,
|
||||
#sidebar-group-list .tool:hover,
|
||||
#fileas-sidebar .tool:hover {
|
||||
background: #E7F2F7;
|
||||
}
|
||||
.tool .label {
|
||||
float: left;
|
||||
}
|
||||
.tool .action {
|
||||
float: right;
|
||||
}
|
||||
.tool a {
|
||||
color: ##3F8FBA;
|
||||
}
|
||||
.tool a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
/* popup notifications */
|
||||
div.jGrowl.top-right { top: 30px; /* put it below header/nav bar */ }
|
||||
div.jGrowl div.notice {
|
||||
background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
|
||||
color: #ffffff;
|
||||
padding-left: 58px;
|
||||
}
|
||||
div.jGrowl div.info {
|
||||
background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
|
||||
color: #ffffff;
|
||||
padding-left: 58px;
|
||||
}
|
||||
/* header */
|
||||
header {
|
||||
position: fixed;
|
||||
left: 0%;
|
||||
right: 80%;
|
||||
top: 0px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
width: 22%;
|
||||
height: 32px;
|
||||
background: #000;
|
||||
z-index: 100;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
header #site-location {
|
||||
display: none;
|
||||
}
|
||||
header #banner {
|
||||
overflow: hidden;
|
||||
text-align: left;
|
||||
width: 82%%;
|
||||
margin-left: 25%;
|
||||
}
|
||||
header #banner a,
|
||||
header #banner a:active,
|
||||
header #banner a:visited,
|
||||
header #banner a:link,
|
||||
header #banner a:hover {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
vertical-align: middle;
|
||||
font-weight: bolder;
|
||||
margin-left: 3px;
|
||||
}
|
||||
header #banner #logo-img {
|
||||
height: 25px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
header #banner #logo-text {
|
||||
font-size: 20px!important;position: relative!important;top: -4px!important;
|
||||
}
|
||||
/* messages */
|
||||
#message-new {
|
||||
background: #19aeff;
|
||||
border: 1px solid #005c94;
|
||||
width: 150px;
|
||||
}
|
||||
#message-new a {
|
||||
color: #ffffff;
|
||||
text-align: center;
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
padding: 1em 0px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.mail-list-wrapper {
|
||||
background-color: #f6f7f8;
|
||||
margin-bottom: 5px;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
.mail-list-wrapper span {
|
||||
display: block;
|
||||
float: left;
|
||||
width: 20%;
|
||||
overflow: hidden;
|
||||
}
|
||||
.mail-list-wrapper .mail-subject {
|
||||
width: 30%;
|
||||
padding: 4px 0px 0px 4px;
|
||||
}
|
||||
.mail-list-wrapper .mail-subject a {
|
||||
display: block;
|
||||
}
|
||||
.mail-list-wrapper .mail-subject.unseen a {
|
||||
font-weight: bold;
|
||||
}
|
||||
.mail-list-wrapper .mail-date {
|
||||
padding: 4px 4px 0px 4px;
|
||||
}
|
||||
.mail-list-wrapper .mail-from {
|
||||
padding: 4px 4px 0px 4px;
|
||||
}
|
||||
.mail-list-wrapper .mail-count {
|
||||
padding: 4px 4px 0px 4px;
|
||||
text-align: right;
|
||||
}
|
||||
.mail-list-wrapper .mail-delete {
|
||||
float: right;
|
||||
}
|
||||
#mail-display-subject {
|
||||
background-color: #f6f7f8;
|
||||
color: #2d2d2d;
|
||||
margin-bottom: 10px;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
#mail-display-subject span {
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
padding: 4px 0px 0px 10px;
|
||||
}
|
||||
#mail-display-subject .mail-delete {
|
||||
float: right;
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
#mail-display-subject:hover .mail-delete {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
/* nav */
|
||||
nav {
|
||||
width: 80%;
|
||||
height: 32px;
|
||||
position: fixed;
|
||||
left: 22%;
|
||||
top: 0px;
|
||||
padding: 0px;
|
||||
background: #000;
|
||||
color: #ffffff;
|
||||
z-index: 99;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
nav a,
|
||||
nav a:active,
|
||||
nav a:visited,
|
||||
nav a:link,
|
||||
nav a:hover {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
}
|
||||
nav #banner {
|
||||
overflow: hidden;
|
||||
/*text-align: center;*/
|
||||
width: 100%;
|
||||
}
|
||||
nav #banner a,
|
||||
nav #banner a:active,
|
||||
nav #banner a:visited,
|
||||
nav #banner a:link,
|
||||
nav #banner a:hover {
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
nav #banner #logo-img {
|
||||
height: 22px;
|
||||
margin-top: 5px;
|
||||
}
|
||||
nav #banner #logo-text {
|
||||
font-size: 22px;
|
||||
}
|
||||
nav #navbar{
|
||||
}
|
||||
nav ul {
|
||||
margin: 0px;
|
||||
padding: 0px 20px;
|
||||
}
|
||||
nav ul li {
|
||||
list-style: none;
|
||||
margin: 0px;
|
||||
/* padding: 1px 1px 3px 1px; */
|
||||
float: left;
|
||||
}
|
||||
nav ul li .menu-popup {
|
||||
left: 0px;
|
||||
right: auto;
|
||||
}
|
||||
|
||||
nav #logo-img {
|
||||
height: 25px;
|
||||
margin-top: 4px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
nav #logo-text {
|
||||
font-size: 22px;
|
||||
margin-top: 3px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
nav .nav-menu-search {
|
||||
position: relative;
|
||||
|
||||
margin: 4px 17px;
|
||||
margin-right: 0px;
|
||||
height: 17px;
|
||||
width: 180px;
|
||||
|
||||
}
|
||||
|
||||
nav #search-box #search-text {
|
||||
background-image: url('icons/lupe.png');
|
||||
background-repeat:no-repeat;
|
||||
padding-left:20px;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
border-bottom-left-radius: 15px;
|
||||
}
|
||||
|
||||
|
||||
nav .nav-menu-icon {
|
||||
position: relative;
|
||||
height: 22px;
|
||||
padding: 5px;
|
||||
margin: 0px 7px;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
nav .nav-menu-icon.selected {
|
||||
background-color: #fff;
|
||||
}
|
||||
nav .nav-menu-icon img {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
nav .nav-menu-icon .nav-notify {
|
||||
top: 3px;
|
||||
}
|
||||
/*marker*/
|
||||
nav .nav-menu {
|
||||
position: relative;
|
||||
height: 16px;
|
||||
padding: 5px;
|
||||
margin: 3px 15px 0px;
|
||||
font-size: 15px;
|
||||
/*border-bottom: 3px solid #364A84;*/
|
||||
}
|
||||
nav .nav-menu.selected {
|
||||
/*border-bottom: 3px solid #9eabb0;*/
|
||||
}
|
||||
nav .nav-notify {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: #ff0000;
|
||||
/* background-color: #19aeff; */
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-size: 10px;
|
||||
font-weight: 900;
|
||||
padding: 1px 4px;
|
||||
top: 0px;
|
||||
right: -6px;
|
||||
min-width: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
nav .nav-notify.show {
|
||||
display: block;
|
||||
}
|
||||
nav #nav-help-link,
|
||||
nav #nav-search-link,
|
||||
nav #nav-directory-link,
|
||||
nav #nav-apps-link,
|
||||
nav #nav-site-linkmenu,
|
||||
nav #nav-home-link,
|
||||
nav #nav-user-linkmenu
|
||||
{
|
||||
float: right;
|
||||
}
|
||||
nav #nav-user-linkmenu{
|
||||
margin-right: 0px;
|
||||
}
|
||||
nav #nav-home-link, #nav-directory-link, #nav-apps-link{
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
font-weight: bold;
|
||||
margin: 3px 5px;
|
||||
}
|
||||
nav #nav-directory-link{
|
||||
margin-right: 0px;
|
||||
}
|
||||
nav #nav-home-link{
|
||||
margin-left: 0px;
|
||||
}
|
||||
nav #nav-help-link .menu-popup,
|
||||
nav #nav-search-link .menu-popup,
|
||||
nav #nav-directory-link .menu-popup,
|
||||
nav #nav-apps-link .menu-popup,
|
||||
nav #nav-site-linkmenu .menu-popup {
|
||||
right: 0px;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
|
||||
background-image: url("../../../view/theme/diabook/icons/messages2.png");
|
||||
}
|
||||
|
||||
/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
|
||||
background-image: url("../../../view/theme/diabook/icons/notify2.png");
|
||||
}
|
||||
|
||||
nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
|
||||
background-image: url("../../../view/theme/diabook/icons/contacts2.png");
|
||||
}
|
||||
|
||||
nav #nav-apps-link.selected {
|
||||
background-color: #364e59;
|
||||
}
|
||||
|
||||
#nav-notifications-mark-all {
|
||||
/* padding: 1px 1px 2px 26px; */
|
||||
/* border-bottom: 1px solid #364E59; */
|
||||
/* margin: 0px 0px 2px 0px;
|
||||
padding: 5px 10px; */
|
||||
}
|
||||
|
||||
#nav-notifications-see-all {
|
||||
/* padding: 1px 1px 2px 26px; */
|
||||
/* border-bottom: 1px solid #364E59; */
|
||||
/* margin: 0px 0px 2px 0px;
|
||||
padding: 5px 10px; */
|
||||
}
|
||||
|
||||
.notify-seen {
|
||||
background: none repeat scroll 0 0 #DDDDDD;
|
||||
}
|
||||
|
||||
ul.menu-popup {
|
||||
position: absolute;
|
||||
display: none;
|
||||
width: 11em;
|
||||
background: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
list-style: none;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
ul.menu-popup a {
|
||||
display: block;
|
||||
color: #2d2d2d;
|
||||
padding: 5px 10px;
|
||||
text-decoration: none;
|
||||
}
|
||||
ul.menu-popup a:hover {
|
||||
background-color: #fff797; /*bdcdd4;*/
|
||||
color: #000;
|
||||
}
|
||||
ul.menu-popup .menu-sep {
|
||||
border-top: 1px solid #9eabb0;
|
||||
}
|
||||
ul.menu-popup li {
|
||||
float: none;
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
ul.menu-popup li img {
|
||||
float: left;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
ul.menu-popup .empty {
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
color: #9eabb0;
|
||||
}
|
||||
/* autocomplete popup */
|
||||
.acpopup {
|
||||
max-height: 150px;
|
||||
background-color: #ffffff;
|
||||
color: #2d2d2d;
|
||||
border: 1px solid #MenuBorder;
|
||||
overflow: auto;
|
||||
z-index: 100000;
|
||||
-webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
.acpopupitem {
|
||||
color: #2d2d2d;
|
||||
padding: 4px;
|
||||
clear: left;
|
||||
}
|
||||
.acpopupitem img {
|
||||
float: left;
|
||||
margin-right: 4px;
|
||||
}
|
||||
.acpopupitem.selected {
|
||||
background-color: #bdcdd4;
|
||||
}
|
||||
#nav-notifications-menu {
|
||||
width: 425px !important;
|
||||
max-height: 550px;
|
||||
overflow: auto;
|
||||
}
|
||||
/* #nav-notifications-menu a {
|
||||
display: inline;
|
||||
padding: 5px 0px;
|
||||
margin: 0px 0px 2px 0px;
|
||||
}
|
||||
#nav-notifications-menu li:hover {
|
||||
background-color: #bdcdd4;
|
||||
}*/
|
||||
|
||||
#nav-notifications-menu img {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
}
|
||||
#nav-notifications-menu .contactname {
|
||||
font-weight: bold;
|
||||
}
|
||||
#nav-notifications-menu .notif-when {
|
||||
font-size: 10px;
|
||||
color: #9eabb0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.notif-image {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
padding: 7px 7px 0px 0px;
|
||||
}
|
||||
|
||||
/*profile_side*/
|
||||
#profile_side {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
#ps-usericon{
|
||||
height: 25px
|
||||
}
|
||||
#ps-username{
|
||||
font-size: 1.17em;
|
||||
font-weight: bold;
|
||||
vertical-align: top;
|
||||
position: absolute;
|
||||
padding-top: 4px;
|
||||
padding-left: 5px;
|
||||
color: #2D2D2D;
|
||||
word-wrap: break-word;
|
||||
width: 130px;
|
||||
}
|
||||
#ps-username:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
.menu-profile-side{
|
||||
list-style: none;
|
||||
padding-left: 0px;
|
||||
min-height: 0px;
|
||||
}
|
||||
.menu-profile-list{
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
min-height: 16px;
|
||||
list-style: none;
|
||||
}
|
||||
.menu-profile-list:hover{
|
||||
background: #E7F2F7;
|
||||
}
|
||||
.menu-profile-list-item{
|
||||
padding-left: 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.menu-profile-list-item:hover{
|
||||
text-decoration: none;
|
||||
}
|
||||
/*http://prothemedesign.com/circular-icons/*/
|
||||
.menu-profile-icon.home{
|
||||
background: url("../../../view/theme/diabook/icons/home.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;
|
||||
}
|
||||
.menu-profile-icon.photos{
|
||||
background: url("../../../view/theme/diabook/icons/mess_side.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.events{
|
||||
background: url("../../../view/theme/diabook/icons/events.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.notes{
|
||||
background: url("../../../view/theme/diabook/icons/notes.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.foren{
|
||||
background: url("../../../view/theme/diabook/icons/pubgroups.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.com_side{
|
||||
background: url("../../../view/theme/diabook/icons/com_side.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
.menu-profile-icon.pscontacts{
|
||||
background: url("../../../view/theme/diabook/icons/pscontacts.png") no-repeat;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;}
|
||||
|
||||
/* aside */
|
||||
/*marker*/
|
||||
aside {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 180px;
|
||||
padding: 0px 5px 0px 0px;
|
||||
border-right: 1px solid #D2D2D2;
|
||||
float: left;
|
||||
/* background: #F1F1F1; */
|
||||
}
|
||||
aside #page-sidebar{display: none;}
|
||||
aside .vcard .fn {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
aside .vcard .title {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
aside .vcard dl {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
}
|
||||
aside .vcard dt {
|
||||
float: left;
|
||||
margin-left: 0px;
|
||||
/*width: 35%;*/
|
||||
text-align: right;
|
||||
color: #999999;
|
||||
}
|
||||
aside .vcard dd {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
/*width: 60%;*/
|
||||
}
|
||||
aside #profile-extra-links ul {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
aside #profile-extra-links li {
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
list-style: none;
|
||||
}
|
||||
aside #dfrn-request-link {
|
||||
display: block;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
color: #ffffff;
|
||||
background: #005c94 url('../../../images/connect-bg.png') no-repeat left center;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
padding: 4px 2px 2px 35px;
|
||||
}
|
||||
aside #dfrn-request-link:hover {
|
||||
text-decoration: none;
|
||||
background-color: #36c;
|
||||
/* background-color: #19aeff; */
|
||||
}
|
||||
aside #profiles-menu {
|
||||
width: 20em;
|
||||
}
|
||||
aside #search-text {
|
||||
width: 150px;
|
||||
height: 17px;
|
||||
padding-left: 10px;
|
||||
border-top-left-radius: 15px;
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
border-bottom-left-radius: 15px;
|
||||
}
|
||||
aside #side-follow-url {
|
||||
width: 173px;
|
||||
}
|
||||
aside #side-peoplefind-url {
|
||||
width: 173px;
|
||||
}
|
||||
#contact-block {
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
}
|
||||
#contact-block .contact-block-h4 {
|
||||
float: left;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
#contact-block .allcontact-link {
|
||||
float: right;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
#contact-block .contact-block-content {
|
||||
clear: both;
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
}
|
||||
#contact-block .contact-block-link {
|
||||
float: left;
|
||||
margin: 0px 2px 2px 0px;
|
||||
}
|
||||
#contact-block .contact-block-link img {
|
||||
widht: 55px;
|
||||
height: 55px;
|
||||
}
|
||||
#lost-password-link {
|
||||
float: left;
|
||||
margin-right: 20px;
|
||||
}
|
||||
#login-submit-wrapper{
|
||||
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
aside #login-submit-button{
|
||||
margin-left: 0px!important;
|
||||
}
|
||||
aside #login-extra-links{
|
||||
padding-top: 0px!important;
|
||||
}
|
||||
/* widget */
|
||||
.widget {
|
||||
margin-bottom: 2em;
|
||||
/*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
|
||||
.action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
|
||||
/* font-size: 12px; */
|
||||
}
|
||||
/*marker*/
|
||||
.widget h3 {
|
||||
padding: 0px;
|
||||
margin: 2px;
|
||||
font-size: 1.05em;
|
||||
}
|
||||
.widget .action {
|
||||
opacity: 0.1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget input.action {
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget:hover .title .action {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget .tool:hover .action {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget .tool:hover .action.ticked {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.widget ul {
|
||||
padding: 0px;
|
||||
}
|
||||
.widget ul li {
|
||||
padding-left: 16px;
|
||||
min-height: 16px;
|
||||
list-style: none;
|
||||
}
|
||||
.group_selected {
|
||||
background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;
|
||||
}
|
||||
.group_unselected {
|
||||
background: url("../../../view/theme/diabook/icons/unselected.png") no-repeat left center;
|
||||
float: left;
|
||||
height: 22px;
|
||||
width: 22px;
|
||||
}
|
||||
.icon.text_add {
|
||||
background-image: url("../../../images/icons/16/add.png");
|
||||
float: right;
|
||||
opacity: 0.2;
|
||||
margin-right: 14px;
|
||||
}
|
||||
.icon.text_add:hover {
|
||||
background-image: url("../../../images/icons/16/add.png");
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
margin-right: 14px;
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.icon.text_edit {
|
||||
background-image: url("../../../images/icons/10/edit.png");
|
||||
opacity: 0.2;
|
||||
margin-top: 6px;
|
||||
float: right;
|
||||
height: 10px;
|
||||
}
|
||||
.icon.text_edit:hover {
|
||||
background-image: url("../../../images/icons/10/edit.png");
|
||||
opacity: 1;
|
||||
margin-top: 6px;
|
||||
float: right;
|
||||
height: 10px;
|
||||
}
|
||||
/* widget: search */
|
||||
#add-search-popup {
|
||||
width: 200px;
|
||||
top: 18px;
|
||||
}
|
||||
/* section */
|
||||
section {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
width: 800px;
|
||||
padding: 0px 0px 0px 12px;
|
||||
}
|
||||
|
||||
body .pageheader{
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
margin-bottom: 20px;
|
||||
margin-top: 0px;
|
||||
max-width: 775px;
|
||||
}
|
||||
.qcomment{
|
||||
max-width: 122px;
|
||||
}
|
||||
#id_username {
|
||||
width: 173px;
|
||||
}
|
||||
#id_password {
|
||||
width: 173px;
|
||||
}
|
||||
#id_openid_url {
|
||||
width: 173px;
|
||||
}
|
||||
#contact-edit-end {
|
||||
}
|
||||
.pager {
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
font-size: 1.0em;
|
||||
clear: both;
|
||||
display: block;
|
||||
}
|
||||
.tabs {
|
||||
|
||||
background-position: 0 -20px;
|
||||
background-repeat: repeat-x;
|
||||
height: 27px;
|
||||
padding: 0;
|
||||
}
|
||||
.tab.button {
|
||||
margin-left: 5px;
|
||||
/*background: none repeat scroll 0 0 #F8F8F8;*/
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
font-weight: normal;
|
||||
padding: 3px;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
|
||||
#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
/* wall item */
|
||||
|
||||
.tread-wrapper {
|
||||
border-bottom: 1px solid #D2D2D2;
|
||||
position: relative;
|
||||
padding: 5px;
|
||||
margin-bottom: 0px;
|
||||
width: 775px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-decor {
|
||||
position: absolute;
|
||||
left: 780px;
|
||||
top: -10px;
|
||||
width: 16px;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container {
|
||||
display: table;
|
||||
width: 770px;
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
|
||||
display: table-row;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-item, .wall-item-container .wall-item-bottom {
|
||||
display: table-row;
|
||||
}
|
||||
.wall-item-bottom {
|
||||
font-size: 13px;
|
||||
}
|
||||
.wall-item-container .wall-item-bottom {
|
||||
/* opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out; */
|
||||
}
|
||||
.wall-item-container:hover .wall-item-bottom {
|
||||
/* opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out; */
|
||||
}
|
||||
.wall-item-container .wall-item-info {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
text-align: left;
|
||||
width: 80px;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-info {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
text-align: left;
|
||||
width: 80px;
|
||||
}
|
||||
.wall-item-container .wall-item-location {
|
||||
padding-right: 40px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-location {
|
||||
padding-right: 40px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-ago {
|
||||
word-wrap: break-word;
|
||||
width: 50px;
|
||||
margin-left: 10px;
|
||||
color: #999;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-ago {
|
||||
word-wrap: break-word;
|
||||
width: 50px;
|
||||
margin-left: 10px;
|
||||
color: #999;
|
||||
}
|
||||
.wall-item-location {
|
||||
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container .wall-item-content {
|
||||
|
||||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-photo-container .wall-item-content {
|
||||
|
||||
max-width: 690px;
|
||||
word-wrap: break-word;
|
||||
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
.wall-item-container .wall-item-content img {
|
||||
max-width: 700px;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-content img {
|
||||
max-width: 700px;
|
||||
}
|
||||
.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-links, .wall-item-photo-container .wall-item-actions {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-links .icon, .wall-item-photo-container .wall-item-actions .icon {
|
||||
opacity: 0.5;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-links .icon:hover, .wall-item-photo-container .wall-item-actions .icon:hover {
|
||||
opacity: 1;
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
-moz-transition: all 0.2s ease-in-out;
|
||||
-o-transition: all 0.2s ease-in-out;
|
||||
-ms-transition: all 0.2s ease-in-out;
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
.wall-item-container .wall-item-name, .wall-item-photo-container .wall-item-name {
|
||||
font-weight: bold;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-author, .wall-item-photo-container .wall-item-actions-author {
|
||||
width: 100%;
|
||||
margin-bottom: 0.3em;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-social, .wall-item-photo-container .wall-item-actions-social {
|
||||
float: left;
|
||||
margin-bottom: 1px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-social a {
|
||||
margin-right: 1em;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-actions-social a {
|
||||
margin-right: 1em;
|
||||
}
|
||||
.wall-item-actions-social a {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.wall-item-container .wall-item-actions-tools {
|
||||
float: right;
|
||||
width: 80px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-actions-tools {
|
||||
float: right;
|
||||
width: 80px;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools a {
|
||||
float: right;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-actions-tools a {
|
||||
float: right;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools input {
|
||||
float: right;
|
||||
}
|
||||
.wall-item-photo-container .wall-item-actions-tools input {
|
||||
float: right;
|
||||
}
|
||||
/*marker*/
|
||||
.wall-item-container.comment {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
margin-left: 80px;
|
||||
width: 690px;
|
||||
border-bottom: 1px solid hsl(198, 21%, 79%);
|
||||
}
|
||||
.wall-item-photo-container.comment {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
margin-left: 40px;
|
||||
width: 650px;
|
||||
border-bottom: 1px solid #D2D2D2;
|
||||
}
|
||||
.wall-item-photo-container.comment {
|
||||
top: 15px !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
.wall-item-photo-container {
|
||||
display: table;
|
||||
width: 780px;
|
||||
}
|
||||
|
||||
.my-comment-photo {
|
||||
width: 48px;
|
||||
margin-left: 40px;
|
||||
margin-right: 32px;
|
||||
}
|
||||
.comment-edit-preview {
|
||||
width: 500px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.comment-edit-text-empty {
|
||||
width: 500px;
|
||||
border: 1px solid #D2D2D2;
|
||||
height: 3.2em;
|
||||
color: #2d2d2d;
|
||||
}
|
||||
.comment-edit-text-full {
|
||||
font-size: 12.5px;
|
||||
height: 3.3em;
|
||||
|
||||
border: 1px solid #D2D2D2;
|
||||
width: 500px;
|
||||
}
|
||||
.comment-edit-photo {
|
||||
margin: 10px 0 0;
|
||||
display: table-cell;
|
||||
}
|
||||
.wall-item-container.comment .contact-photo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 16px;
|
||||
/*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
|
||||
|
||||
}
|
||||
.wall-item-container.comment {
|
||||
top: 15px !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
.wall-item-container.comment .wall-item-links {
|
||||
padding-left: 12px;
|
||||
}
|
||||
.wall-item-comment-wrapper {
|
||||
margin: 1px 5px 5px 80px;
|
||||
}
|
||||
.wall-item-comment-wrapper .comment-edit-photo {
|
||||
display: none;
|
||||
}
|
||||
.wall-item-comment-wrapper textarea {
|
||||
height: 1.6em;
|
||||
width: 100%;
|
||||
font-size: 10px;
|
||||
color: #999999;
|
||||
border: 1px solid #DDD;
|
||||
padding: 0.3em;
|
||||
font-size: 14px;
|
||||
}
|
||||
.wall-item-comment-wrapper .comment-edit-text-full {
|
||||
font-size: 14px;
|
||||
height: 4em;
|
||||
color: #2d2d2d;
|
||||
border: 1px solid #2d2d2d;
|
||||
}
|
||||
|
||||
.comment-edit-preview .contact-photo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-left: 16px;
|
||||
/*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
|
||||
|
||||
}
|
||||
.comment-edit-preview {
|
||||
top: 15px !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
.comment-edit-preview {
|
||||
width: 500px;
|
||||
margin-top: 10px;
|
||||
background-color: #fff797;
|
||||
}
|
||||
.comment-edit-preview .wall-item-links {
|
||||
padding-left: 12px;
|
||||
}
|
||||
.comment-edit-preview .wall-item-container {
|
||||
width: 700px;
|
||||
}
|
||||
.comment-edit-preview .tread-wrapper {
|
||||
width: 700px;
|
||||
padding: 0;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.shiny {
|
||||
/* border-right: 10px solid #fce94f; */
|
||||
border-right: 1px solid #A7C7F7;
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
#jot-preview-content{
|
||||
margin-top: 30px;}
|
||||
|
||||
#jot-preview-content .tread-wrapper {
|
||||
background-color: #fff797;
|
||||
}
|
||||
|
||||
.wall-item-tags {
|
||||
padding-top: 1px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
.tag {
|
||||
/*background: url("../../../images/tag_b.png") repeat-x center left;*/
|
||||
color: #999;
|
||||
padding-left: 3px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.tag a {
|
||||
padding-right: 5px;
|
||||
/*background: url("../../../images/tag.png") no-repeat center right;*/
|
||||
color: #999;
|
||||
}
|
||||
.wwto {
|
||||
position: absolute !important;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
background: #FFFFFF;
|
||||
border: 2px solid #364e59;
|
||||
height: 25px;
|
||||
width: 25px;
|
||||
overflow: hidden;
|
||||
padding: 1px;
|
||||
position: absolute !important;
|
||||
top: 40px;
|
||||
left: 30px;
|
||||
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
.wwto .contact-photo {
|
||||
width: auto;
|
||||
height: 25px;
|
||||
}
|
||||
/* contacts menu */
|
||||
.contact-photo-wrapper {
|
||||
position: relative;
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.contact-photo-wrapper.wwto {
|
||||
width: 25px;
|
||||
}
|
||||
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
|
||||
.contact-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.contact-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
.contact-name {
|
||||
/* text-align: center; */
|
||||
/*font-weight: bold;*/
|
||||
font-size: 12px;
|
||||
}
|
||||
.contact-details {
|
||||
color: #999999;
|
||||
}
|
||||
/* editor */
|
||||
.jothidden {
|
||||
display: none;
|
||||
}
|
||||
#jot {
|
||||
width: 785px;
|
||||
margin: 0px 2em 20px 0px;
|
||||
}
|
||||
#profile-jot-form #profile-jot-text {
|
||||
height: 2.0em;
|
||||
width: 99%;
|
||||
font-size: 15px;
|
||||
color: #999999;
|
||||
border: 1px solid #DDD;
|
||||
padding: 0.3em;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.grey
|
||||
{
|
||||
display: inline;
|
||||
float: right;
|
||||
}
|
||||
#jot #jot-tools {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
height: 40px;
|
||||
overflow: none;
|
||||
width: 783px;
|
||||
background-color: #fff;
|
||||
border-bottom: 2px solid #9eabb0;
|
||||
}
|
||||
|
||||
#jot #jot-tools li {
|
||||
list-style: none;
|
||||
float: left;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border-bottom: 2px solid #9eabb0;
|
||||
}
|
||||
#jot #jot-tools li a {
|
||||
display: block;
|
||||
color: #cccccc;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
text-align: center;
|
||||
line-height: 40px;
|
||||
overflow: hidden;
|
||||
}
|
||||
#jot #jot-tools li:hover {
|
||||
background-color: #364e59;
|
||||
border-bottom: 2px solid #bdcdd4;
|
||||
}
|
||||
#jot #jot-tools li.perms {
|
||||
float: right;
|
||||
width: 40px;
|
||||
}
|
||||
#jot #jot-tools li.perms a.unlock {
|
||||
width: 30px;
|
||||
border-left: 10px solid #cccccc;
|
||||
background-color: #cccccc;
|
||||
background-position: left center;
|
||||
}
|
||||
#jot #jot-tools li.perms a.lock {
|
||||
width: 30px;
|
||||
border-left: 10px solid #666666;
|
||||
background-color: #666666;
|
||||
}
|
||||
#jot #jot-tools li.submit {
|
||||
float: right;
|
||||
background-color: #cccccc;
|
||||
border-bottom: 2px solid #cccccc;
|
||||
border-right: 1px solid #666666;
|
||||
border-left: 1px solid #666666;
|
||||
}
|
||||
#jot #jot-tools li.submit input {
|
||||
border: 0px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
background-color: #cccccc;
|
||||
color: #666666;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
}
|
||||
#jot #jot-tools li.submit input:hover {
|
||||
background-color: #bdcdd4;
|
||||
color: #666666;
|
||||
}
|
||||
#jot #jot-tools li.loading {
|
||||
float: right;
|
||||
background-color: #ffffff;
|
||||
width: 20px;
|
||||
vertical-align: center;
|
||||
text-align: center;
|
||||
border-top: 2px solid #9eabb0;
|
||||
height: 38px;
|
||||
}
|
||||
#jot #jot-tools li.loading img {
|
||||
margin-top: 10px;
|
||||
}
|
||||
#profile-jot-form #jot-title, #profile-jot-form #jot-category {
|
||||
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-weight: bold;
|
||||
height: 20px;
|
||||
margin: 0 0 5px;
|
||||
width: 60%;
|
||||
border: 1px solid #d2d2d2;
|
||||
}
|
||||
#profile-jot-form #jot-title:-webkit-input-placeholder {
|
||||
font-weight: normal;
|
||||
}
|
||||
#profile-jot-form #jot-title:-moz-placeholder {
|
||||
font-weight: normal;
|
||||
}
|
||||
#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
|
||||
width: 785px;
|
||||
height: 100px;
|
||||
}
|
||||
#jot #jot-title:hover {
|
||||
border: 1px solid #999999;
|
||||
}
|
||||
#jot #jot-title:focus {
|
||||
border: 1px solid #999999;
|
||||
}
|
||||
#jot #character-counter {
|
||||
width: 80px;
|
||||
float: right;
|
||||
text-align: right;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
#jot-perms-icon,
|
||||
#profile-location,
|
||||
#profile-nolocation,
|
||||
#profile-youtube,
|
||||
#profile-video,
|
||||
#profile-audio,
|
||||
#profile-link,
|
||||
#profile-title,
|
||||
#wall-image-upload,
|
||||
#wall-file-upload,
|
||||
#wall-image-upload-div,
|
||||
#wall-file-upload-div,
|
||||
.hover, .focus {
|
||||
cursor: pointer;
|
||||
margin-top: 2px;
|
||||
}
|
||||
/*marker*/
|
||||
#profile-jot-wrapper{
|
||||
margin: 0 20px 20px 0;
|
||||
width: 785px;
|
||||
}
|
||||
/*marker*/
|
||||
#profile-jot-submit-wrapper {
|
||||
margin-bottom: 50px;
|
||||
width: 785px;
|
||||
}
|
||||
|
||||
#profile-jot-submit {
|
||||
float: right;
|
||||
margin-top: 2px;
|
||||
font-size: 14px;
|
||||
}
|
||||
#profile-upload-wrapper {
|
||||
float: left;
|
||||
margin-top: 2px;
|
||||
margin-left: 10px;
|
||||
|
||||
}
|
||||
#profile-attach-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-rotator {
|
||||
float: left;
|
||||
margin-left: 30px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-link-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-youtube-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-video-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-audio-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-location-wrapper {
|
||||
float: left;
|
||||
margin-left: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#profile-jot-perms {
|
||||
float: left;
|
||||
margin-left: 45px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#jot-preview-link {
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-top: 2px;
|
||||
font-size: 9px;
|
||||
font-weight: bolder;
|
||||
cursor: pointer;
|
||||
}
|
||||
#profile-jot-perms{
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
/** buttons **/
|
||||
.button.creation1 {
|
||||
background-color: #fff;
|
||||
border: 1px solid #777777;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
cursor: pointer;
|
||||
font-weight: bolder;
|
||||
}
|
||||
.button.creation2 {
|
||||
background-color: #33ACFF;
|
||||
background-image: -moz-linear-gradient(center top , #66C1FF 0%, #0097FF 100%);
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
margin-left: 5px;
|
||||
cursor: pointer;
|
||||
font-weight: bolder;
|
||||
}
|
||||
/*input[type="submit"] {
|
||||
border: 0px;
|
||||
background-color: @ButtonBackgroundColor;
|
||||
color: @ButtonColor;
|
||||
padding: 0px 10px;
|
||||
.rounded(5px);
|
||||
height: 18px;
|
||||
}*/
|
||||
/** acl **/
|
||||
#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
|
||||
display: block!important;
|
||||
}
|
||||
#acl-wrapper {
|
||||
width: 690px;
|
||||
float: left;
|
||||
}
|
||||
#acl-search {
|
||||
float: right;
|
||||
background: #ffffff url("../../../images/search_18.png") no-repeat right center;
|
||||
padding-right: 20px;
|
||||
}
|
||||
#acl-showall {
|
||||
float: left;
|
||||
display: block;
|
||||
width: auto;
|
||||
height: 18px;
|
||||
background-color: #cccccc;
|
||||
background-image: url("../../../images/show_all_off.png");
|
||||
background-position: 7px 7px;
|
||||
background-repeat: no-repeat;
|
||||
padding: 7px 5px 0px 30px;
|
||||
color: #999999;
|
||||
-moz-border-radius: 5px 5px 5px 5px;
|
||||
-webkit-border-radius: 5px 5px 5px 5px;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
#acl-showall.selected {
|
||||
color: #000000;
|
||||
background-color: #ff9900;
|
||||
background-image: url("../../../images/show_all_on.png");
|
||||
}
|
||||
#acl-list {
|
||||
height: 210px;
|
||||
border: 1px solid #cccccc;
|
||||
clear: both;
|
||||
margin-top: 30px;
|
||||
overflow: auto;
|
||||
}
|
||||
.acl-list-item {
|
||||
display: block;
|
||||
width: 150px;
|
||||
height: 30px;
|
||||
border: 1px solid #cccccc;
|
||||
margin: 5px;
|
||||
float: left;
|
||||
}
|
||||
.acl-list-item img {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
float: left;
|
||||
margin: 4px;
|
||||
}
|
||||
.acl-list-item p {
|
||||
height: 12px;
|
||||
font-size: 10px;
|
||||
margin: 0px;
|
||||
padding: 2px 0px 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.acl-list-item a {
|
||||
font-size: 8px;
|
||||
display: block;
|
||||
width: 40px;
|
||||
height: 10px;
|
||||
float: left;
|
||||
color: #999999;
|
||||
background-color: #cccccc;
|
||||
background-position: 3px 3px;
|
||||
background-repeat: no-repeat;
|
||||
margin-right: 5px;
|
||||
-webkit-border-radius: 2px ;
|
||||
-moz-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
#acl-wrapper a:hover {
|
||||
text-decoration: none;
|
||||
color: #000000;
|
||||
}
|
||||
.acl-button-show {
|
||||
background-image: url("../../../images/show_off.png");
|
||||
}
|
||||
.acl-button-hide {
|
||||
background-image: url("../../../images/hide_off.png");
|
||||
}
|
||||
.acl-button-show.selected {
|
||||
color: #000000;
|
||||
background-color: #9ade00;
|
||||
background-image: url("../../../images/show_on.png");
|
||||
}
|
||||
.acl-button-hide.selected {
|
||||
color: #000000;
|
||||
background-color: #ff4141;
|
||||
background-image: url("../../../images/hide_on.png");
|
||||
}
|
||||
.acl-list-item.groupshow {
|
||||
border-color: #9ade00;
|
||||
}
|
||||
.acl-list-item.grouphide {
|
||||
border-color: #ff4141;
|
||||
}
|
||||
/** /acl **/
|
||||
/** tab buttons **/
|
||||
/*marker*/
|
||||
ul.tabs {
|
||||
list-style-type: none;
|
||||
padding-bottom: 10px;
|
||||
font-size: 13px;
|
||||
width: 805px;
|
||||
}
|
||||
ul.tabs li {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
}
|
||||
ul.tabs li .active {
|
||||
background-color: #333333;
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 0 1px 1px #CFCFCF;
|
||||
margin-left: 5px;
|
||||
}
|
||||
//settings tabs
|
||||
ul.rs_tabs {
|
||||
list-style-type: none;
|
||||
font-size: 11px;
|
||||
}
|
||||
ul.rs_tabs li {
|
||||
float: left;
|
||||
margin-bottom: 30px;
|
||||
clear: both;
|
||||
}
|
||||
ul.rs_tabs li .selected {
|
||||
background-color: #333;
|
||||
border: 1px solid #777777;
|
||||
color: white;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
box-shadow: 2px 2px 2px #CFCFCF;
|
||||
font-size: 13px;
|
||||
}
|
||||
.rs_tabs {
|
||||
list-style-type: none;
|
||||
font-size: 11px;
|
||||
background-position: 0 -20px;
|
||||
background-repeat: repeat-x;
|
||||
height: 27px;
|
||||
padding: 0;
|
||||
}
|
||||
.rs_tab.button {
|
||||
/*background: none repeat scroll 0 0 #F8F8F8;*/
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 3px 3px 3px 3px;
|
||||
font-weight: bolder;
|
||||
padding: 3px;
|
||||
color: #333333;
|
||||
text-decoration: none;
|
||||
}
|
||||
/**
|
||||
* Form fields
|
||||
*/
|
||||
.field {
|
||||
margin-bottom: 10px;
|
||||
padding-bottom: 10px;
|
||||
overflow: auto;
|
||||
width: 100%;
|
||||
}
|
||||
.field label {
|
||||
float: left;
|
||||
width: 200px;
|
||||
}
|
||||
.field input, .field textarea {
|
||||
width: 400px;
|
||||
}
|
||||
.field textarea {
|
||||
height: 100px;
|
||||
}
|
||||
.field .field_help {
|
||||
display: block;
|
||||
margin-left: 200px;
|
||||
color: #666666;
|
||||
}
|
||||
.field .onoff {
|
||||
float: left;
|
||||
width: 80px;
|
||||
}
|
||||
.field .onoff a {
|
||||
display: block;
|
||||
border: 1px solid #666666;
|
||||
background-image: url("../../../images/onoff.jpg");
|
||||
background-repeat: no-repeat;
|
||||
padding: 4px 2px 2px 2px;
|
||||
height: 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.field .onoff .off {
|
||||
border-color: #666666;
|
||||
padding-left: 40px;
|
||||
background-position: left center;
|
||||
background-color: #cccccc;
|
||||
color: #666666;
|
||||
text-align: right;
|
||||
}
|
||||
.field .onoff .on {
|
||||
border-color: #204A87;
|
||||
padding-right: 40px;
|
||||
background-position: right center;
|
||||
background-color: #D7E3F1;
|
||||
color: #204A87;
|
||||
text-align: left;
|
||||
}
|
||||
.field .hidden {
|
||||
display: none!important;
|
||||
}
|
||||
.field.radio .field_help {
|
||||
margin-left: 0px;
|
||||
}
|
||||
.suggest-select {
|
||||
width: 500px;
|
||||
height: 350px;
|
||||
}
|
||||
.message-to-select {
|
||||
width: 400px;
|
||||
height: 150px;
|
||||
}
|
||||
#directory-search-form{
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
#profile-edit-links-end {
|
||||
clear: both;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
|
||||
|
||||
#profile-edit-links li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.profile-edit-side-div {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#register-form label,
|
||||
#profile-edit-form label {
|
||||
width: 300px; float: left;
|
||||
}
|
||||
|
||||
.required {
|
||||
display: inline;
|
||||
color: #B20202;
|
||||
}
|
||||
|
||||
/* oauth */
|
||||
.oauthapp {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
border-bottom: 2px solid #cccccc;
|
||||
padding-bottom: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.oauthapp img {
|
||||
float: left;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
margin: 10px;
|
||||
}
|
||||
.oauthapp img.noicon {
|
||||
background-image: url("../../../images/icons/48/plugin.png");
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.oauthapp a {
|
||||
float: left;
|
||||
}
|
||||
/* contacts */
|
||||
.contact-entry-wrapper {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
float: left;
|
||||
}
|
||||
/* photo */
|
||||
.photo {
|
||||
border-radius: 10px;
|
||||
height: 145px !important;
|
||||
width: 145px !important;
|
||||
}
|
||||
.lframe {
|
||||
float: left;
|
||||
}
|
||||
/* profile match wrapper */
|
||||
.profile-match-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.profile-match-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.profile-match-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.profile-match-wrapper {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
}
|
||||
|
||||
.contact-photo-menu-button {
|
||||
position: relative;
|
||||
background-image: url("../../../images/icons/16/menu.png");
|
||||
background-position: top left;
|
||||
background-repeat: no-repeat;
|
||||
margin: 0px 0px -16px 0px;
|
||||
padding: 0px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
top: -16px; left:0px;
|
||||
overflow: hidden;
|
||||
text-indent: 40px;
|
||||
display: none;
|
||||
|
||||
}
|
||||
.contact-photo-menu {
|
||||
width: 11em;
|
||||
border: 3px solid #364e59;
|
||||
color: #2d2d2d;
|
||||
background: #FFFFFF;
|
||||
/* position: absolute;*/
|
||||
position: relative;
|
||||
left: 0px; top: 0px;
|
||||
display: none;
|
||||
z-index: 10000;
|
||||
}
|
||||
.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
|
||||
.contact-photo-menu li a {
|
||||
display: block;
|
||||
padding: 5px 10px;
|
||||
color: #2d2d2d;
|
||||
text-decoration: none;
|
||||
}
|
||||
.contact-photo-menu li a:hover {
|
||||
background-color: #bdcdd4;
|
||||
}
|
||||
|
||||
/* page footer */
|
||||
footer {
|
||||
height: 100px;
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 1px solid #D2D2D2;
|
||||
padding-left: 9px;
|
||||
margin: 0 0 0 .8ex;
|
||||
color: #777;
|
||||
}
|
||||
.oembed {
|
||||
font-weight: bold;
|
||||
}
|
||||
.aprofile dt{
|
||||
box-shadow: 1px 1px 5px 0;
|
||||
color: #666666;
|
||||
margin: 15px 0 5px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
/* ================== */
|
||||
/* = Contacts Block = */
|
||||
/* ================== */
|
||||
|
||||
.contact-block-img {
|
||||
width: 55px;
|
||||
height: 55px;
|
||||
padding-right: 3px;
|
||||
}
|
||||
.contact-block-div {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.contact-block-textdiv { width: 150px; height: 34px; float: left; }
|
||||
#contact-block-end { clear: both; }
|
||||
|
||||
#group-edit-wrapper {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#group-members-end {
|
||||
clear: both;
|
||||
}
|
||||
#group-edit-desc {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
/*
|
||||
#group-separator,
|
||||
#prof-separator { display: none;}
|
||||
*/
|
||||
#prof-members-end{
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
|
||||
margin-bottom: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#prvmail-submit {
|
||||
float: right;
|
||||
margin-top: 10px;
|
||||
}
|
||||
#prvmail-subject
|
||||
{
|
||||
background: none repeat scroll 0 0 #FFFFFF;
|
||||
border: 1px solid #CCCCCC;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
font-weight: bold;
|
||||
height: 20px;
|
||||
margin: 0 0 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
#prvmail-form{
|
||||
width: 597px;
|
||||
}
|
||||
#prvmail-upload-wrapper,
|
||||
#prvmail-link-wrapper,
|
||||
#prvmail-rotator-wrapper {
|
||||
float: left;
|
||||
margin-top: 10px;
|
||||
margin-right: 10px;
|
||||
width: 24px;
|
||||
}
|
||||
|
||||
#prvmail-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-list-sender,
|
||||
.mail-list-detail {
|
||||
float: left;
|
||||
}
|
||||
.mail-list-detail {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.mail-list-subject {
|
||||
font-size: 1.1em;
|
||||
margin-top: 10px;
|
||||
}
|
||||
a.mail-list-link {
|
||||
display: block;
|
||||
font-size: 1.3em;
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
/*
|
||||
*a.mail-list-link:hover {
|
||||
* background-color: #15607B;
|
||||
* color: #F5F6FB;
|
||||
*}
|
||||
*/
|
||||
|
||||
.mail-list-outside-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-list-outside-wrapper {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.mail-list-delete-wrapper {
|
||||
float: right;
|
||||
margin-right: 30px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.mail-list-delete-icon {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.mail-conv-sender,
|
||||
.mail-conv-detail {
|
||||
float: left;
|
||||
}
|
||||
.mail-conv-detail {
|
||||
margin-left: 20px;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.mail-conv-subject {
|
||||
font-size: 1.4em;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.mail-conv-outside-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-conv-outside-wrapper {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.mail-conv-delete-wrapper {
|
||||
float: right;
|
||||
margin-right: 30px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
.mail-conv-break {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-conv-delete-icon {
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* ========== */
|
||||
/* = Events = */
|
||||
/* ========== */
|
||||
.eventcal {
|
||||
float: left;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.vevent {
|
||||
position: relative;
|
||||
width: 400px;
|
||||
padding: 20px;
|
||||
padding-top: 10px;
|
||||
margin: 0 0px;
|
||||
margin-bottom: 10px;
|
||||
background-color: white;
|
||||
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
|
||||
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.vevent .event-location {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.vevent .event-description {
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
font-size: 1.1em;
|
||||
font-weight: bolder;
|
||||
}
|
||||
.vevent .event-start, .vevent .event-end {
|
||||
|
||||
margin-right: 20px;
|
||||
margin-bottom: 2px;
|
||||
margin-top: 2px;
|
||||
font-size: 0.9em;
|
||||
text-align: left;
|
||||
}
|
||||
.event-start .dtstart, .event-end .dtend {
|
||||
float: right;
|
||||
}
|
||||
|
||||
|
||||
#new-event-link {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.edit-event-link, .plink-event-link {
|
||||
float: left;
|
||||
margin-top: 4px;
|
||||
margin-right: 4px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.event-description:before {
|
||||
content: url("../../../view/theme/diabook/icons/events2.png") !important;
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.event-start, .event-end {
|
||||
margin-left: 10px;
|
||||
width: 330px;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.event-start .dtstart, .event-end .dtend {
|
||||
float: right;
|
||||
}
|
||||
.event-list-date {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.prevcal, .nextcal {
|
||||
float: left;
|
||||
margin-left: 32px;
|
||||
margin-right: 32px;
|
||||
margin-top: 64px;
|
||||
}
|
||||
.event-calendar-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
.calendar {
|
||||
font-family: Courier, monospace;
|
||||
}
|
||||
.today {
|
||||
font-weight: bold;
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
.settings-block {
|
||||
border: 1px solid #AAA;
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.app-title {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#identity-manage-desc {
|
||||
margin-top:15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#identity-manage-choose {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#identity-submit {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#photo-prev-link, #photo-next-link {
|
||||
padding: 10px;
|
||||
float: left;
|
||||
}
|
||||
.lightbox{
|
||||
float: left;
|
||||
}
|
||||
|
||||
#photo-photo {
|
||||
float: left;
|
||||
}
|
||||
#photo-like-div .wall-item-like-buttons {
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
|
||||
.wall-item-like-buttons .icon.like {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#photo-photo-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.tabs .comment-wwedit-wrapper {
|
||||
display: block;
|
||||
margin-top: 30px;
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
.profile-match-photo {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
.profile-match-name {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 120px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.profile-match-break,
|
||||
.profile-match-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.profile-match-connect {
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.profile-match-wrapper {
|
||||
float: left;
|
||||
padding: 10px;
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
scroll: auto;
|
||||
}
|
||||
#profile-match-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* ============= */
|
||||
/* = Directory = */
|
||||
/* ============= */
|
||||
/* contacts menu */
|
||||
.contact-photo-wrapper {
|
||||
position: relative;
|
||||
section .directory-item dt {
|
||||
float: inherit;
|
||||
margin-left: auto;
|
||||
text-align: inherit;
|
||||
color: inherit;
|
||||
}
|
||||
.contact-photo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
section .directory-item dd {
|
||||
float: inherit;
|
||||
margin-left: auto;
|
||||
}
|
||||
.contact-photo img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
.directory-profile-wrapper {
|
||||
float: inherit;
|
||||
max-height: none;
|
||||
overflow: auto;
|
||||
width: auto;
|
||||
}
|
||||
.contact-photo-menu-button {
|
||||
display: none;
|
||||
/* position: absolute; */
|
||||
/* position: absolute; */
|
||||
left: 0px;
|
||||
top: -16px;
|
||||
}
|
||||
.contact-wrapper {
|
||||
float: left;
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.contact-wrapper .contact-photo {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.contact-wrapper .contact-photo-menu-button {
|
||||
left: 0px;
|
||||
top: 63px;
|
||||
.directory-copy-wrapper {
|
||||
float: inherit;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.directory-item {
|
||||
float: left;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
.directory-item .contact-photo {
|
||||
width: 175px;
|
||||
height: 175px;
|
||||
}
|
||||
.directory-item .contact-photo img {
|
||||
width: 175px;
|
||||
height: 175px;
|
||||
|
||||
section .directory-photo-wrapper {
|
||||
float: inherit;
|
||||
height: auto;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.contact-name {
|
||||
text-align: left;
|
||||
font-weight: bold;
|
||||
font-size: 12px;
|
||||
}
|
||||
.contact-details {
|
||||
color: #999999;
|
||||
}
|
||||
#side-bar-photos-albums li{
|
||||
list-style-type: disc;
|
||||
}
|
||||
#side-bar-photos-albums ul li{
|
||||
margin-left: 30px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
#side-bar-photos-albums{
|
||||
margin-top: 15px;
|
||||
}
|
||||
.photo-top-photo, .photo-album-photo {
|
||||
-webkit-border-radius: 5px 5px 0 0;
|
||||
-moz-border-radius: 5px 5px 0 0;
|
||||
border-radius: 5px 5px 0 0;
|
||||
}
|
||||
.photo-album-image-wrapper, .photo-top-image-wrapper {
|
||||
float: left;
|
||||
-moz-box-shadow: 0 0 5px #888;
|
||||
-webkit-box-shadow: 0 0 5px #888;
|
||||
box-shadow: 0 0 5px #888;
|
||||
background-color: #000;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
padding-bottom: 20px;
|
||||
position: relative;
|
||||
margin: 0 10px 10px 0;
|
||||
width: 200px; height: 140px;
|
||||
overflow: hidden;
|
||||
}
|
||||
/*
|
||||
.photo-top-album-name {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
padding: 0 5px;
|
||||
}*/
|
||||
/*.photo-top-image-wrapper {
|
||||
position: relative;
|
||||
float: left;
|
||||
margin-top: 15px;
|
||||
margin-right: 15px;
|
||||
width: 200px; height: 200px;
|
||||
|
||||
}*/
|
||||
.photo-top-album-name {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
padding-left: 3px;
|
||||
background-color: #EEE;
|
||||
}
|
||||
.photo-top-album-link{
|
||||
color: #3465A4;
|
||||
}
|
||||
#photo-top-end {
|
||||
clear: both;
|
||||
margin-bottom: auto;
|
||||
}
|
||||
|
||||
#photo-top-links {
|
||||
margin-bottom: 30px;
|
||||
margin-left: 30px;
|
||||
.page-type {
|
||||
font-size: inherit;
|
||||
font-style: inherit;
|
||||
}
|
||||
.directory-detailscolumn-wrapper {
|
||||
float: inherit;
|
||||
width: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.directory-profile-wrapper dl {
|
||||
margin-top: auto;
|
||||
margin-bottom: auto;
|
||||
}
|
||||
.directory-profile-title {
|
||||
font-weight: auto;
|
||||
margin-bottom: auto;
|
||||
font-size: auto;
|
||||
}
|
||||
|
||||
#photos-upload-newalbum-div {
|
||||
float: left;
|
||||
width: 175px;
|
||||
}
|
||||
|
|
@ -221,6 +221,7 @@
|
|||
.attachtype {
|
||||
display: block; width: 20px; height: 23px;
|
||||
background-image: url('../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.type-video { background-position: 0px 0px; }
|
||||
|
|
|
|||
|
|
@ -169,10 +169,10 @@ if ($color=="dark") $color_path = "/diabook-dark/";
|
|||
$a->page['htmlhead'] .= '
|
||||
<script>
|
||||
$(function() {
|
||||
$("a.lightbox").fancybox(); // Select all links with lightbox class
|
||||
$("a#twittersettings-link").fancybox({onClosed: function() { $("#twittersettings").attr("style","display: none;");}} );
|
||||
$("a#mapcontrol-link").fancybox({onClosed: function() { $("#mapcontrol").attr("style","display: none;");}} );
|
||||
$("a#closeicon").fancybox({onClosed: function() { $("#boxsettings").attr("style","display: none;");}} );
|
||||
$("a.lightbox").colorbox({maxHeight:"90%"}); // Select all links with lightbox class
|
||||
$("a#twittersettings-link").colorbox({inline:true,onClosed: function() { $("#twittersettings").attr("style","display: none;");}} );
|
||||
$("a#mapcontrol-link").colorbox({inline:true,onClosed: function() { $("#mapcontrol").attr("style","display: none;");}} );
|
||||
$("a#closeicon").colorbox({inline:true,onClosed: function() { $("#boxsettings").attr("style","display: none;");}} );
|
||||
});
|
||||
|
||||
$(window).load(function() {
|
||||
|
|
|
|||
|
|
@ -512,7 +512,8 @@ div[id$="wrapper"]{height:100%;}div[id$="wrapper"] br{clear:left;}
|
|||
.icon.dim{opacity:0.3;}
|
||||
#pause{position:fixed;bottom:40px;right:30px;z-index:10;}
|
||||
.border{border:1px solid #babdb6;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}.border:hover{border:1px solid #babdb6;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}
|
||||
.attachtype{display:block;width:20px;height:23px;background-image:url(../../../images/content-types.png);}
|
||||
.attachtype{display:block;width:20px;height:23px;background-image:url(../../../images/content-types.png);background-position: -80px 0px;
|
||||
}
|
||||
.type-video{background-position:0px 0px;}
|
||||
.type-image{background-position:-20px 0;}
|
||||
.type-audio{background-position:-40px 0;}
|
||||
|
|
|
|||
|
|
@ -2998,6 +2998,7 @@ div {
|
|||
display: block;
|
||||
.box(20px, 23px);
|
||||
background-image: url(../../../images/content-types.png);
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
.type-video {
|
||||
background-position: 0px 0px;
|
||||
|
|
|
|||
|
|
@ -1,100 +0,0 @@
|
|||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
<meta charset="UTF-8" />
|
||||
<base href="$baseurl/" />
|
||||
<meta name="generator" content="$generator" />
|
||||
<link rel="stylesheet" href="$baseurl/library/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="$baseurl/library/tiptip/tipTip.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="$baseurl/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="$stylesheet" media="all" />
|
||||
<link rel="shortcut icon" href="$baseurl/images/friendica-32.png" />
|
||||
<link rel="search"
|
||||
href="$baseurl/opensearch"
|
||||
type="application/opensearchdescription+xml"
|
||||
title="Search in Friendica" />
|
||||
|
||||
<!--[if IE]>
|
||||
<script type="text/javascript" src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||||
<![endif]-->
|
||||
<script type="text/javascript" src="$baseurl/js/jquery.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/js/jquery.textinputs.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/js/fk.autocomplete.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/library/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/library/tiptip/jquery.tipTip.minified.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/library/jgrowl/jquery.jgrowl_minimized.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/js/acl.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/js/webtoolkit.base64.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/js/main.js"></script>
|
||||
<!-- in dispy -->
|
||||
<script>
|
||||
var updateInterval = $update_interval;
|
||||
var localUser = {{ if $local_user }}$local_user{{ else }}false{{ endif }};
|
||||
|
||||
function confirmDelete() { return confirm("$delitem"); }
|
||||
function commentOpen(obj,id) {
|
||||
if(obj.value == '$comment') {
|
||||
obj.value = '';
|
||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
||||
$("#mod-cmnt-wrap-" + id).show();
|
||||
openMenu("comment-edit-submit-wrapper-" + id);
|
||||
}
|
||||
}
|
||||
function commentClose(obj,id) {
|
||||
if(obj.value == '') {
|
||||
obj.value = '$comment';
|
||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
|
||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
|
||||
$("#mod-cmnt-wrap-" + id).hide();
|
||||
closeMenu("comment-edit-submit-wrapper-" + id);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function commentInsert(obj,id) {
|
||||
var tmpStr = $("#comment-edit-text-" + id).val();
|
||||
if(tmpStr == '$comment') {
|
||||
tmpStr = '';
|
||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
||||
openMenu("comment-edit-submit-wrapper-" + id);
|
||||
}
|
||||
var ins = $(obj).html();
|
||||
ins = ins.replace('<','<');
|
||||
ins = ins.replace('>','>');
|
||||
ins = ins.replace('&','&');
|
||||
ins = ins.replace('"','"');
|
||||
$("#comment-edit-text-" + id).val(tmpStr + ins);
|
||||
}
|
||||
|
||||
function qCommentInsert(obj,id) {
|
||||
var tmpStr = $("#comment-edit-text-" + id).val();
|
||||
if(tmpStr == '$comment') {
|
||||
tmpStr = '';
|
||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
||||
openMenu("comment-edit-submit-wrapper-" + id);
|
||||
}
|
||||
var ins = $(obj).val();
|
||||
ins = ins.replace('<','<');
|
||||
ins = ins.replace('>','>');
|
||||
ins = ins.replace('&','&');
|
||||
ins = ins.replace('"','"');
|
||||
$("#comment-edit-text-" + id).val(tmpStr + ins);
|
||||
$(obj).val('');
|
||||
}
|
||||
|
||||
window.showMore = "$showmore";
|
||||
window.showFewer = "$showfewer";
|
||||
|
||||
function showHideCommentBox(id) {
|
||||
if( $('#comment-edit-form-' + id).is(':visible')) {
|
||||
$('#comment-edit-form-' + id).hide();
|
||||
}
|
||||
else {
|
||||
$('#comment-edit-form-' + id).show();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
|
|
@ -11,9 +11,9 @@ function initEditor(cb) {
|
|||
$("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
|
||||
$("#profile-jot-text").contact_autocomplete(baseurl+"/acl");
|
||||
editor = true;
|
||||
$("a#jot-perms-icon").fancybox({
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
$("a#jot-perms-icon").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'elastic'
|
||||
});
|
||||
$(".jothidden").show();
|
||||
if (typeof cb!="undefined") cb();
|
||||
|
|
@ -102,9 +102,9 @@ function initEditor(cb) {
|
|||
});
|
||||
editor = true;
|
||||
// setup acl popup
|
||||
$("a#jot-perms-icon").fancybox({
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
$("a#jot-perms-icon").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'elastic'
|
||||
});
|
||||
} else {
|
||||
if (typeof cb!="undefined") cb();
|
||||
|
|
@ -268,7 +268,7 @@ function enableOnUser(){
|
|||
var bordercolor = $("input").css("border-color");
|
||||
|
||||
$.get('filer/', function(data){
|
||||
$.fancybox(data);
|
||||
$.colorbox({html:data});
|
||||
$("#id_term").keypress(function(){
|
||||
$(this).css("border-color",bordercolor);
|
||||
})
|
||||
|
|
@ -286,7 +286,7 @@ function enableOnUser(){
|
|||
if(timer) clearTimeout(timer);
|
||||
timer = setTimeout(NavUpdate,3000);
|
||||
liking = 1;
|
||||
$.fancybox.close();
|
||||
$.colorbox.close();
|
||||
} else {
|
||||
$("#id_term").css("border-color","#FF0000");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -512,7 +512,8 @@ div[id$="wrapper"]{height:100%;}div[id$="wrapper"] br{clear:left;}
|
|||
.icon.dim{opacity:0.3;}
|
||||
#pause{position:fixed;bottom:40px;right:30px;z-index:10;}
|
||||
.border{border:1px solid #babdb6;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}.border:hover{border:1px solid #babdb6;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;}
|
||||
.attachtype{display:block;width:20px;height:23px;background-image:url(../../../images/content-types.png);}
|
||||
.attachtype{display:block;width:20px;height:23px;background-image:url(../../../images/content-types.png);background-position: -80px 0px;
|
||||
}
|
||||
.type-video{background-position:0px 0px;}
|
||||
.type-image{background-position:-20px 0;}
|
||||
.type-audio{background-position:-40px 0;}
|
||||
|
|
|
|||
|
|
@ -2999,6 +2999,7 @@ div {
|
|||
display: block;
|
||||
.box(20px, 23px);
|
||||
background-image: url(../../../images/content-types.png);
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
.type-video {
|
||||
background-position: 0px 0px;
|
||||
|
|
|
|||
|
|
@ -46,8 +46,8 @@
|
|||
</form>
|
||||
|
||||
<script type="text/javascript">
|
||||
$("a#photo-edit-perms-menu").fancybox({
|
||||
'transitionIn' : 'none',
|
||||
'transitionOut' : 'none'
|
||||
$("a#photo-edit-perms-menu").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'none'
|
||||
});
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -1,105 +0,0 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
<meta charset="UTF-8" />
|
||||
<base href="{{$baseurl}}/" />
|
||||
<meta name="generator" content="{{$generator}}" />
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/tiptip/tipTip.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="{{$baseurl}}/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" type="text/css" href="{{$stylesheet}}" media="all" />
|
||||
<link rel="shortcut icon" href="{{$baseurl}}/images/friendica-32.png" />
|
||||
<link rel="search"
|
||||
href="{{$baseurl}}/opensearch"
|
||||
type="application/opensearchdescription+xml"
|
||||
title="Search in Friendica" />
|
||||
|
||||
<!--[if IE]>
|
||||
<script type="text/javascript" src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||||
<![endif]-->
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/jquery.textinputs.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/fk.autocomplete.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/tiptip/jquery.tipTip.minified.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/jgrowl/jquery.jgrowl_minimized.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/acl.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/webtoolkit.base64.js"></script>
|
||||
<script type="text/javascript" src="{{$baseurl}}/js/main.js"></script>
|
||||
<!-- in dispy -->
|
||||
<script>
|
||||
var updateInterval = {{$update_interval}};
|
||||
var localUser = {{if $local_user}}{{$local_user}}{{else}}false{{/if}};
|
||||
|
||||
function confirmDelete() { return confirm("{{$delitem}}"); }
|
||||
function commentOpen(obj,id) {
|
||||
if(obj.value == '{{$comment}}') {
|
||||
obj.value = '';
|
||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
||||
$("#mod-cmnt-wrap-" + id).show();
|
||||
openMenu("comment-edit-submit-wrapper-" + id);
|
||||
}
|
||||
}
|
||||
function commentClose(obj,id) {
|
||||
if(obj.value == '') {
|
||||
obj.value = '{{$comment}}';
|
||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
|
||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
|
||||
$("#mod-cmnt-wrap-" + id).hide();
|
||||
closeMenu("comment-edit-submit-wrapper-" + id);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function commentInsert(obj,id) {
|
||||
var tmpStr = $("#comment-edit-text-" + id).val();
|
||||
if(tmpStr == '{{$comment}}') {
|
||||
tmpStr = '';
|
||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
||||
openMenu("comment-edit-submit-wrapper-" + id);
|
||||
}
|
||||
var ins = $(obj).html();
|
||||
ins = ins.replace('<','<');
|
||||
ins = ins.replace('>','>');
|
||||
ins = ins.replace('&','&');
|
||||
ins = ins.replace('"','"');
|
||||
$("#comment-edit-text-" + id).val(tmpStr + ins);
|
||||
}
|
||||
|
||||
function qCommentInsert(obj,id) {
|
||||
var tmpStr = $("#comment-edit-text-" + id).val();
|
||||
if(tmpStr == '{{$comment}}') {
|
||||
tmpStr = '';
|
||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
|
||||
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
|
||||
openMenu("comment-edit-submit-wrapper-" + id);
|
||||
}
|
||||
var ins = $(obj).val();
|
||||
ins = ins.replace('<','<');
|
||||
ins = ins.replace('>','>');
|
||||
ins = ins.replace('&','&');
|
||||
ins = ins.replace('"','"');
|
||||
$("#comment-edit-text-" + id).val(tmpStr + ins);
|
||||
$(obj).val('');
|
||||
}
|
||||
|
||||
window.showMore = "{{$showmore}}";
|
||||
window.showFewer = "{{$showfewer}}";
|
||||
|
||||
function showHideCommentBox(id) {
|
||||
if( $('#comment-edit-form-' + id).is(':visible')) {
|
||||
$('#comment-edit-form-' + id).hide();
|
||||
}
|
||||
else {
|
||||
$('#comment-edit-form-' + id).show();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
|
|
@ -16,9 +16,9 @@ function initEditor(cb) {
|
|||
$("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
|
||||
$("#profile-jot-text").contact_autocomplete(baseurl+"/acl");
|
||||
editor = true;
|
||||
$("a#jot-perms-icon").fancybox({
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
$("a#jot-perms-icon").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'elastic'
|
||||
});
|
||||
$(".jothidden").show();
|
||||
if (typeof cb!="undefined") cb();
|
||||
|
|
@ -107,9 +107,9 @@ function initEditor(cb) {
|
|||
});
|
||||
editor = true;
|
||||
// setup acl popup
|
||||
$("a#jot-perms-icon").fancybox({
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
$("a#jot-perms-icon").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'elastic'
|
||||
});
|
||||
} else {
|
||||
if (typeof cb!="undefined") cb();
|
||||
|
|
@ -273,7 +273,7 @@ function enableOnUser(){
|
|||
var bordercolor = $("input").css("border-color");
|
||||
|
||||
$.get('filer/', function(data){
|
||||
$.fancybox(data);
|
||||
$.colorbox({html:data});
|
||||
$("#id_term").keypress(function(){
|
||||
$(this).css("border-color",bordercolor);
|
||||
})
|
||||
|
|
@ -291,7 +291,7 @@ function enableOnUser(){
|
|||
if(timer) clearTimeout(timer);
|
||||
timer = setTimeout(NavUpdate,3000);
|
||||
liking = 1;
|
||||
$.fancybox.close();
|
||||
$.colorbox.close();
|
||||
} else {
|
||||
$("#id_term").css("border-color","#FF0000");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -51,8 +51,8 @@
|
|||
</form>
|
||||
|
||||
<script type="text/javascript">
|
||||
$("a#photo-edit-perms-menu").fancybox({
|
||||
'transitionIn' : 'none',
|
||||
'transitionOut' : 'none'
|
||||
$("a#photo-edit-perms-menu").colorbox({
|
||||
'inline' : true,
|
||||
'transition' : 'none'
|
||||
});
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ function dispy_init(&$a) {
|
|||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
// Select all links with lightbox class
|
||||
$("a.lightbox").fancybox();
|
||||
$("a.lightbox").colorbox({maxHeight:"90%"});
|
||||
|
||||
$('.group-edit-icon').hover(
|
||||
function() {
|
||||
|
|
|
|||
|
|
@ -3137,6 +3137,7 @@ aside input[type='text'] {
|
|||
display: block; width: 20px; height: 23px;
|
||||
float: left;
|
||||
background-image: url('../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.body-attach {
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
<?php
|
||||
|
||||
function duepuntozero_init(&$a) {
|
||||
|
||||
$a->theme_info = array();
|
||||
set_template_engine($a, 'smarty3');
|
||||
|
||||
function duepuntozero_init(&$a) {
|
||||
$a->page['htmlhead'] .= <<< EOT
|
||||
<script>
|
||||
function insertFormatting(comment,BBcode,id) {
|
||||
|
|
|
|||
|
|
@ -2935,6 +2935,7 @@ aside input[type='text'] {
|
|||
display: block; width: 20px; height: 23px;
|
||||
float: left;
|
||||
background-image: url('../../../images/content-types.png');
|
||||
background-position: -80px 0px;
|
||||
}
|
||||
|
||||
.body-attach {
|
||||
|
|
|
|||
12
view/theme/frost-mobile/categories_widget.tpl
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{#<!--<div id="categories-sidebar" class="widget">
|
||||
<h3>$title</h3>
|
||||
<div id="nets-desc">$desc</div>
|
||||
|
||||
<ul class="categories-ul">
|
||||
<li class="tool"><a href="$base" class="categories-link categories-all{{ if $sel_all }} categories-selected{{ endif }}">$all</a></li>
|
||||
{{ for $terms as $term }}
|
||||
<li class="tool"><a href="$base?f=&category=$term.name" class="categories-link{{ if $term.selected }} categories-selected{{ endif }}">$term.name</a></li>
|
||||
{{ endfor }}
|
||||
</ul>
|
||||
|
||||
</div>-->#}
|
||||
6
view/theme/frost-mobile/common_tabs.tpl
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<ul class="tabs">
|
||||
{{ for $tabs as $tab }}
|
||||
<li id="$tab.id"><a href="$tab.url" class="tab button $tab.sel"{{ if $tab.title }} title="$tab.title"{{ endif }}>$tab.label</a></li>
|
||||
{{ endfor }}
|
||||
<div id="tabs-end"></div>
|
||||
</ul>
|
||||
12
view/theme/frost-mobile/contact_block.tpl
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{#<!--<div id="contact-block">
|
||||
<h4 class="contact-block-h4">$contacts</h4>
|
||||
{{ if $micropro }}
|
||||
<a class="allcontact-link" href="viewcontacts/$nickname">$viewcontacts</a>
|
||||
<div class='contact-block-content'>
|
||||
{{ for $micropro as $m }}
|
||||
$m
|
||||
{{ endfor }}
|
||||
</div>
|
||||
{{ endif }}
|
||||
</div>
|
||||
<div class="clear"></div>-->#}
|
||||
|
|
@ -6,7 +6,7 @@
|
|||
$tab_str
|
||||
|
||||
<div id="contact-edit-drop-link" >
|
||||
<a href="contacts/$contact_id/drop" class="icon drophide" id="contact-edit-drop-link" onclick="return confirmDelete();" title="$delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);"></a>
|
||||
<a href="contacts/$contact_id/drop" class="icon drophide" id="contact-edit-drop-link" onclick="return confirmDelete();" title="$delete" {#onmouseover="imgbright(this);" onmouseout="imgdull(this);"#}></a>
|
||||
</div>
|
||||
|
||||
<div id="contact-edit-drop-link-end"></div>
|
||||
|
|
@ -48,7 +48,7 @@
|
|||
{{ endif }}
|
||||
|
||||
|
||||
<li><a href="network/?cid=$contact_id" id="contact-edit-view-recent">$lblrecent</a></li>
|
||||
<li><a href="network/0?nets=all&cid=$contact_id" id="contact-edit-view-recent">$lblrecent</a></li>
|
||||
{{ if $lblsuggest }}
|
||||
<li><a href="fsuggest/$contact_id" id="contact-edit-suggest">$lblsuggest</a></li>
|
||||
{{ endif }}
|
||||
|
|
@ -74,7 +74,7 @@
|
|||
|
||||
<div id="contact-edit-info-wrapper">
|
||||
<h4>$lbl_info1</h4>
|
||||
<textarea id="contact-edit-info" rows="8" cols="35" name="info">$info</textarea>
|
||||
<textarea id="contact-edit-info" rows="8"{# cols="35"#} name="info">$info</textarea>
|
||||
<input class="contact-edit-submit" type="submit" name="submit" value="$submit" />
|
||||
</div>
|
||||
<div id="contact-edit-info-end"></div>
|
||||
|
|
|
|||
|
|
@ -20,10 +20,10 @@ $live_update
|
|||
|
||||
<div id="conversation-end"></div>
|
||||
|
||||
<!--{{ if $dropping }}
|
||||
{#<!--{{ if $dropping }}
|
||||
<div id="item-delete-selected" class="fakelink" onclick="deleteCheckedItems();">
|
||||
<div id="item-delete-selected-icon" class="icon drophide" title="$dropping" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></div>
|
||||
<div id="item-delete-selected-desc" >$dropping</div>
|
||||
</div>
|
||||
<div id="item-delete-selected-end"></div>-->
|
||||
{{ endif }}
|
||||
<div id="item-delete-selected-end"></div>
|
||||
{{ endif }}-->#}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
<div class='main-container'>
|
||||
<!-- <div class='main-content-container'>-->
|
||||
<div class='section-wrapper'>
|
||||
<?php if( ($a->module === 'settings') && x($page,'aside')) echo $page['aside']; ?>
|
||||
<?php if( ($a->module === 'settings' || $a->module === 'message' || $a->module === 'profile') && x($page,'aside')) echo $page['aside']; ?>
|
||||
<section><?php if(x($page,'content')) echo $page['content']; ?>
|
||||
<div id="page-footer"></div>
|
||||
</section>
|
||||
|
|
|
|||
|
|
@ -1,17 +1,22 @@
|
|||
<!--[if IE]>
|
||||
<script type="text/javascript" src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||||
<![endif]-->
|
||||
<!--<script type="text/javascript" src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce.js" ></script>
|
||||
{#<!--<script type="text/javascript" src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce.js" ></script>
|
||||
<script type="text/javascript">
|
||||
tinyMCE.init({ mode : "none"});
|
||||
</script>-->
|
||||
<script type="text/javascript" src="$baseurl/view/theme/frost-mobile/js/main.min.js" ></script>
|
||||
</script>-->#}
|
||||
<script type="text/javascript" src="$baseurl/js/jquery.js" ></script>
|
||||
<script type="text/javascript">var $j = jQuery.noConflict();</script>
|
||||
<script type="text/javascript" src="$baseurl/view/theme/frost-mobile/js/jquery.divgrow-1.3.1.f1.min.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/js/jquery.textinputs.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/view/theme/frost-mobile/js/fk.autocomplete.min.js" ></script>
|
||||
<!--<script type="text/javascript" src="$baseurl/library/fancybox/jquery.fancybox-1.3.4.pack.js"></script>-->
|
||||
<!--<script type="text/javascript" src="$baseurl/library/tiptip/jquery.tipTip.minified.js"></script>-->
|
||||
{#<!--<script type="text/javascript" src="$baseurl/library/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
|
||||
<script type="text/javascript" src="$baseurl/library/colorbox/jquery.colorbox-min.js"></script>-->#}
|
||||
{#<!--<script type="text/javascript" src="$baseurl/library/tiptip/jquery.tipTip.minified.js"></script>-->#}
|
||||
<script type="text/javascript" src="$baseurl/library/jgrowl/jquery.jgrowl_minimized.js"></script>
|
||||
|
||||
<script type="text/javascript" src="$baseurl/view/theme/frost-mobile/js/fk.autocomplete.min.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/view/theme/frost-mobile/js/acl.min.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/js/webtoolkit.base64.min.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/view/theme/frost-mobile/js/main.min.js" ></script>
|
||||
<script type="text/javascript" src="$baseurl/view/theme/frost-mobile/js/theme.min.js"></script>
|
||||
|
||||
|
|
|
|||
10
view/theme/frost-mobile/event.tpl
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{{ for $events as $event }}
|
||||
<div class="event">
|
||||
|
||||
{{ if $event.item.author_name }}<a href="$event.item.author_link" ><img src="$event.item.author_avatar" height="32" width="32" />$event.item.author_name</a>{{ endif }}
|
||||
$event.html
|
||||
{{ if $event.item.plink }}<a href="$event.plink.0" title="$event.plink.1" target="external-link" class="plink-event-link icon s22 remote-link"></a>{{ endif }}
|
||||
{{ if $event.edit }}<a href="$event.edit.0" title="$event.edit.1" class="edit-event-link tool s22 pencil"></a>{{ endif }}
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
{{ endfor }}
|
||||
|
|
@ -1,11 +1,12 @@
|
|||
<div class="widget{{ if $class }} $class{{ endif }}">
|
||||
<!-- {{if $title}}<h3>$title</h3>{{endif}}-->
|
||||
{#<!-- {{if $title}}<h3>$title</h3>{{endif}}-->#}
|
||||
{{if $desc}}<div class="desc">$desc</div>{{endif}}
|
||||
|
||||
<ul class="tabs">
|
||||
<ul class="tabs links-widget">
|
||||
{{ for $items as $item }}
|
||||
<li class="tool"><a href="$item.url" class="tab {{ if $item.selected }}selected{{ endif }}">$item.label</a></li>
|
||||
{{ endfor }}
|
||||
<div id="tabs-end"></div>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
9
view/theme/frost-mobile/group_drop.tpl
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<div class="group-delete-wrapper button" id="group-delete-wrapper-$id" >
|
||||
<a href="group/drop/$id?t=$form_security_token"
|
||||
onclick="return confirmDelete();"
|
||||
id="group-delete-icon-$id"
|
||||
class="icon drophide group-delete-icon"
|
||||
{#onmouseover="imgbright(this);"
|
||||
onmouseout="imgdull(this);"#} ></a>
|
||||
</div>
|
||||
<div class="group-delete-end"></div>
|
||||
|
|
@ -1,14 +1,15 @@
|
|||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
<!--<meta content='width=device-width, minimum-scale=1 maximum-scale=1' name='viewport'>
|
||||
{#<!--<meta content='width=device-width, minimum-scale=1 maximum-scale=1' name='viewport'>
|
||||
<meta content='True' name='HandheldFriendly'>
|
||||
<meta content='320' name='MobileOptimized'>-->
|
||||
<meta content='320' name='MobileOptimized'>-->#}
|
||||
<meta name="viewport" content="width=device-width; initial-scale = 1.0; maximum-scale=1.0; user-scalable=no" />
|
||||
<!--<meta name="viewport" content="width=100%; initial-scale=1; maximum-scale=1; minimum-scale=1; user-scalable=no;" />-->
|
||||
{#<!--<meta name="viewport" content="width=100%; initial-scale=1; maximum-scale=1; minimum-scale=1; user-scalable=no;" />-->#}
|
||||
|
||||
<base href="$baseurl/" />
|
||||
<meta name="generator" content="$generator" />
|
||||
<!--<link rel="stylesheet" href="$baseurl/library/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="$baseurl/library/tiptip/tipTip.css" type="text/css" media="screen" />-->
|
||||
{#<!--<link rel="stylesheet" href="$baseurl/library/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="$baseurl/library/colorbox/colorbox.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="$baseurl/library/tiptip/tipTip.css" type="text/css" media="screen" />-->#}
|
||||
<link rel="stylesheet" href="$baseurl/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="$stylesheet" media="all" />
|
||||
|
|
@ -27,7 +28,4 @@
|
|||
var updateInterval = $update_interval;
|
||||
var localUser = {{ if $local_user }}$local_user{{ else }}false{{ endif }};
|
||||
</script>
|
||||
<script type="text/javascript" src="$baseurl/js/jquery.js" ></script>
|
||||
<script type="text/javascript">var $j = jQuery.noConflict();</script>
|
||||
<script type="text/javascript" src="$baseurl/view/theme/frost-mobile/js/jquery.divgrow-1.3.1.f1.min.js" ></script>
|
||||
|
||||
|
|
|
|||
165
view/theme/frost-mobile/images/oxygen/LICENSE
Normal file
|
|
@ -0,0 +1,165 @@
|
|||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates
|
||||
the terms and conditions of version 3 of the GNU General Public
|
||||
License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||
General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License,
|
||||
other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided
|
||||
by the Library, but which is not otherwise based on the Library.
|
||||
Defining a subclass of a class defined by the Library is deemed a mode
|
||||
of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an
|
||||
Application with the Library. The particular version of the Library
|
||||
with which the Combined Work was made is also called the "Linked
|
||||
Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the
|
||||
Corresponding Source for the Combined Work, excluding any source code
|
||||
for portions of the Combined Work that, considered in isolation, are
|
||||
based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the
|
||||
object code and/or source code for the Application, including any data
|
||||
and utility programs needed for reproducing the Combined Work from the
|
||||
Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
|
||||
You may convey a covered work under sections 3 and 4 of this License
|
||||
without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
|
||||
If you modify a copy of the Library, and, in your modifications, a
|
||||
facility refers to a function or data to be supplied by an Application
|
||||
that uses the facility (other than as an argument passed when the
|
||||
facility is invoked), then you may convey a copy of the modified
|
||||
version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to
|
||||
ensure that, in the event an Application does not supply the
|
||||
function or data, the facility still operates, and performs
|
||||
whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of
|
||||
this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
|
||||
The object code form of an Application may incorporate material from
|
||||
a header file that is part of the Library. You may convey such object
|
||||
code under terms of your choice, provided that, if the incorporated
|
||||
material is not limited to numerical parameters, data structure
|
||||
layouts and accessors, or small macros, inline functions and templates
|
||||
(ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the
|
||||
Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
4. Combined Works.
|
||||
|
||||
You may convey a Combined Work under terms of your choice that,
|
||||
taken together, effectively do not restrict modification of the
|
||||
portions of the Library contained in the Combined Work and reverse
|
||||
engineering for debugging such modifications, if you also do each of
|
||||
the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that
|
||||
the Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during
|
||||
execution, include the copyright notice for the Library among
|
||||
these notices, as well as a reference directing the user to the
|
||||
copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this
|
||||
License, and the Corresponding Application Code in a form
|
||||
suitable for, and under terms that permit, the user to
|
||||
recombine or relink the Application with a modified version of
|
||||
the Linked Version to produce a modified Combined Work, in the
|
||||
manner specified by section 6 of the GNU GPL for conveying
|
||||
Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (a) uses at run time
|
||||
a copy of the Library already present on the user's computer
|
||||
system, and (b) will operate properly with a modified version
|
||||
of the Library that is interface-compatible with the Linked
|
||||
Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise
|
||||
be required to provide such information under section 6 of the
|
||||
GNU GPL, and only to the extent that such information is
|
||||
necessary to install and execute a modified version of the
|
||||
Combined Work produced by recombining or relinking the
|
||||
Application with a modified version of the Linked Version. (If
|
||||
you use option 4d0, the Installation Information must accompany
|
||||
the Minimal Corresponding Source and Corresponding Application
|
||||
Code. If you use option 4d1, you must provide the Installation
|
||||
Information in the manner specified by section 6 of the GNU GPL
|
||||
for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
|
||||
You may place library facilities that are a work based on the
|
||||
Library side by side in a single library together with other library
|
||||
facilities that are not Applications and are not covered by this
|
||||
License, and convey such a combined library under terms of your
|
||||
choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based
|
||||
on the Library, uncombined with any other library facilities,
|
||||
conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it
|
||||
is a work based on the Library, and explaining where to find the
|
||||
accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Lesser General Public License from time to time. Such new
|
||||
versions will be similar in spirit to the present version, but may
|
||||
differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Library as you received it specifies that a certain numbered version
|
||||
of the GNU Lesser General Public License "or any later version"
|
||||
applies to it, you have the option of following the terms and
|
||||
conditions either of that published version or of any later version
|
||||
published by the Free Software Foundation. If the Library as you
|
||||
received it does not specify a version number of the GNU Lesser
|
||||
General Public License, you may choose any version of the GNU Lesser
|
||||
General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide
|
||||
whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the
|
||||
Library.
|
||||
BIN
view/theme/frost-mobile/images/oxygen/application-msword.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
view/theme/frost-mobile/images/oxygen/application-pdf.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 3 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 3 KiB |
BIN
view/theme/frost-mobile/images/oxygen/application-x-deb.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
view/theme/frost-mobile/images/oxygen/application-x-font-otf.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
view/theme/frost-mobile/images/oxygen/application-x-font-ttf.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
BIN
view/theme/frost-mobile/images/oxygen/application-x-php.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
view/theme/frost-mobile/images/oxygen/application-x-rar.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
view/theme/frost-mobile/images/oxygen/application-x-rpm.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
view/theme/frost-mobile/images/oxygen/application-x-ruby.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
BIN
view/theme/frost-mobile/images/oxygen/application-x-tar.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
view/theme/frost-mobile/images/oxygen/application-xml.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
view/theme/frost-mobile/images/oxygen/application-zip.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
view/theme/frost-mobile/images/oxygen/audio-aac.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
view/theme/frost-mobile/images/oxygen/audio-mp4.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
view/theme/frost-mobile/images/oxygen/audio-mpeg.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
view/theme/frost-mobile/images/oxygen/audio-x-flac.png
Normal file
|
After Width: | Height: | Size: 3 KiB |
BIN
view/theme/frost-mobile/images/oxygen/audio-x-generic.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
view/theme/frost-mobile/images/oxygen/audio-x-mp2.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
view/theme/frost-mobile/images/oxygen/audio-x-ms-wma.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
view/theme/frost-mobile/images/oxygen/audio-x-vorbis+ogg.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
view/theme/frost-mobile/images/oxygen/audio-x-wav.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
view/theme/frost-mobile/images/oxygen/image-x-generic.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
view/theme/frost-mobile/images/oxygen/text-css.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
view/theme/frost-mobile/images/oxygen/text-html.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
view/theme/frost-mobile/images/oxygen/text-x-generic-2.png
Normal file
|
After Width: | Height: | Size: 3 KiB |