diff options
-rw-r--r-- | .openshift/README.md | 12 | ||||
-rw-r--r-- | doc/Hubzilla_on_OpenShift.bb | 81 | ||||
-rw-r--r-- | doc/admins.bb | 1 | ||||
-rw-r--r-- | include/api.php | 31 | ||||
-rw-r--r-- | include/attach.php | 68 | ||||
-rw-r--r-- | include/identity.php | 23 | ||||
-rw-r--r-- | include/import.php | 68 | ||||
-rwxr-xr-x | include/items.php | 26 | ||||
-rw-r--r-- | include/text.php | 2 | ||||
-rw-r--r-- | include/zot.php | 6 | ||||
-rw-r--r-- | mod/channel.php | 2 | ||||
-rw-r--r-- | mod/import.php | 6 | ||||
-rw-r--r-- | mod/photos.php | 19 | ||||
-rw-r--r-- | mod/siteinfo.php | 2 | ||||
-rw-r--r-- | util/messages.po | 8315 | ||||
-rw-r--r-- | version.inc | 2 | ||||
-rw-r--r-- | view/css/conversation.css | 14 | ||||
-rw-r--r-- | view/css/mod_directory.css | 3 | ||||
-rw-r--r-- | view/es/hmessages.po | 735 | ||||
-rw-r--r-- | view/es/hstrings.php | 181 | ||||
-rw-r--r-- | view/it/hmessages.po | 1087 | ||||
-rw-r--r-- | view/it/hstrings.php | 193 | ||||
-rw-r--r-- | view/js/main.js | 3 | ||||
-rw-r--r-- | view/nl/hmessages.po | 669 | ||||
-rw-r--r-- | view/nl/hstrings.php | 115 | ||||
-rw-r--r-- | view/theme/redbasic/css/style.css | 35 | ||||
-rw-r--r-- | view/theme/redbasic/tpl/theme_settings.tpl | 4 | ||||
-rwxr-xr-x | view/tpl/conv_item.tpl | 46 | ||||
-rwxr-xr-x | view/tpl/conv_list.tpl | 46 | ||||
-rwxr-xr-x | view/tpl/photo_view.tpl | 10 |
30 files changed, 6030 insertions, 5775 deletions
diff --git a/.openshift/README.md b/.openshift/README.md index c778b8f32..535b9bdd1 100644 --- a/.openshift/README.md +++ b/.openshift/README.md @@ -9,7 +9,7 @@ rhc app-create your_app_name php-5.4 mysql-5.5 cron phpmyadmin --namespace your_ Make a note of the database username and password OpenShift creates for your instance, and use these at https://your_app_name-your_domain.rhcloud.com/ to complete the setup. -NOTE: PostgreSQL is NOT support yet. +NOTE: PostgreSQL is NOT supported by the deploy script yet. Update To update, consider your own workflow first. I have forked Hubzilla code into my GitHub account to be able to try things out, this remote repo is called origin. Here is how I fetch new code from upstream, merge into my local repo, then push the updated code both into origin and the remote repo called openshift. @@ -24,9 +24,17 @@ Symptoms of need for MySQL database administration are: - you can login, but your channel posts are not visible. This can mean your item table is marked as crashed. - you can login and you can see your channel posts, but apparently nobody is getting your posts, comments, likes and so on. This can mean your outq table is marked as crashed. +You can check your OpenShift logs by doing + +``` +rhc tail -a your_app_name -n your_domain -l your@email.address -p your_account_password +``` + +and you might be able to confirm the above suspicions about crashed tables, or other problems you need to fix. + ###How to fix crashed tables in MySQL Using MySQL and the MyISAM database engine can result in table indexes coming out of sync, and you have at least two options for fixing tables marked as crashed. -- Use the database username and password OpenShift creates for your instance at #^https://your_app_name-your_domain.rhcloud.com/phpmyadmin/ to login via the web into your phpMyAdmin web interface, click your database in the left column, in the right column scroll down to the bottom of the list of tables and click the checkbox for marking all tables, then select Check tables from the drop down menu. This will check the tables for problems, and you can then checkmark only those tables with problems, and select Repair table from the same drop down menu at the bottom. +- Use the database username and password OpenShift creates for your instance at https://your_app_name-your_domain.rhcloud.com/phpmyadmin/ to login via the web into your phpMyAdmin web interface, click your database in the left column, in the right column scroll down to the bottom of the list of tables and click the checkbox for marking all tables, then select Check tables from the drop down menu. This will check the tables for problems, and you can then checkmark only those tables with problems, and select Repair table from the same drop down menu at the bottom. - You can login to your instance with SSH - see OpenShift for details - then ``` diff --git a/doc/Hubzilla_on_OpenShift.bb b/doc/Hubzilla_on_OpenShift.bb new file mode 100644 index 000000000..316894564 --- /dev/null +++ b/doc/Hubzilla_on_OpenShift.bb @@ -0,0 +1,81 @@ +[b]Hubzilla on OpenShift[/b] +You will notice a new .openshift folder when you fetch from upstream, i.e. from [url=https://github.com/redmatrix/hubzilla.git]https://github.com/redmatrix/hubzilla.git[/url] , which contains a deploy script to set up Hubzilla on OpenShift. + +Create an account on OpenShift, then use the registration e-mail and password to create your first Hubzilla instance. Install git and RedHat's command line tools - rhc - if you have not already done so. + +[code]rhc app-create your_app_name php-5.4 mysql-5.5 cron phpmyadmin --namespace your_domain --from-code https://github.com/redmatrix/hubzilla.git -l your@email.address -p your_account_password +[/code] + +Make a note of the database username and password OpenShift creates for your instance, and use these at [url=https://your_app_name-your_domain.rhcloud.com/]https://your_app_name-your_domain.rhcloud.com/[/url] to complete the setup. + +NOTE: PostgreSQL is NOT supported by the deploy script yet, see [zrl=https://zot-mor.rhcloud.com/display/3c7035f2a6febf87057d84ea0ae511223e9b38dc27913177bc0df053edecac7c@zot-mor.rhcloud.com?zid=haakon%40zot-mor.rhcloud.com]this thread[/zrl]. + +[b]Update[/b] +To update, consider your own workflow first. I have forked Hubzilla code into my GitHub account to be able to try things out, this remote repo is called origin. Here is how I fetch new code from upstream, merge into my local repo, then push the updated code both into origin and the remote repo called openshift. + +[code]git fetch upstream;git checkout master;git merge upstream/master;git push origin;git push openshift HEAD +[/code] + +[b]Administration[/b] +Symptoms of need for MySQL database administration are: +[list] +[*] you can visit your domain and see the Hubzilla frontpage, but trying to login throws you back to login. This can mean your session table is marked as crashed. +[*] you can login, but your channel posts are not visible. This can mean your item table is marked as crashed. +[*] you can login and you can see your channel posts, but apparently nobody is getting your posts, comments, likes and so on. This can mean your outq table is marked as crashed. +[/list] + +You can check your OpenShift logs by doing + +[code] +rhc tail -a your_app_name -n your_domain -l your@email.address -p your_account_password +[/code] + +and you might be able to confirm the above suspicions about crashed tables, or other problems you need to fix. + +[b]How to fix crashed tables in MySQL[/b] +Using MySQL and the MyISAM database engine can result in table indexes coming out of sync, and you have at least two options for fixing tables marked as crashed. +[list] +[*] Use the database username and password OpenShift creates for your instance at [url=https://your_app_name-your_domain.rhcloud.com/phpmyadmin/]https://your_app_name-your_domain.rhcloud.com/phpmyadmin/[/url] to login via the web into your phpMyAdmin web interface, click your database in the left column, in the right column scroll down to the bottom of the list of tables and click the checkbox for marking all tables, then select Check tables from the drop down menu. This will check the tables for problems, and you can then checkmark only those tables with problems, and select Repair table from the same drop down menu at the bottom. +[*] You can login to your instance with SSH - see OpenShift for details - then + +[code]cd mysql/data/your_database +myisamchk -r *.MYI[/code] + +or if you get + +[code]Can't create new tempfile[/code] + +check your OpenShift's gear quota with + +[code]quota -gus[/code] + +and if you are short on space, then locally (not SSH) do + +[code]rhc app-tidy your_app_name -l your_login -p your_password[/code] + +to have rhc delete temporary files and OpenShift logs to free space first, then check the size of your local repo dir and execute + +[code]git gc[/code] + +against it and check the size again, and then to minimize your remote repo connect via SSH to your application gear and execute the same command against it by changing to the remote repo directory - your repo should be in + +[code]~/git/your_app_name.git[/code] + +(if not, do find -size +1M to find it), then do + +[code] +cd +cd mysql/data/yourdatabase +myisamchk -r -v -f*.MYI[/code] + +and hopefully your database tables are now okay. +[/list] + +[b]Notes[/b] +[list] +[*] definitely DO turn off feeds and discovery by default if you are on the Free or Bronze plan on OpenShift with a single 1Gb gear by visiting [observer.baseurl]admin/site when logged in as administrator of your Hubzilla site. +[*] DO add the above defaults into the deploy script. +[*] DO add git gc to the deploy script +[*] MAYBE DO add myisamchk - only checking? to the end of the deploy script. +[*] mysqlcheck is similar in function to myisamchk, but works differently. The main operational difference is that mysqlcheck must be used when the mysqld server is running, whereas myisamchk should be used when it is not. The benefit of using mysqlcheck is that you do not have to stop the server to perform table maintenance - this means this documenation should be fixed. +[/list] diff --git a/doc/admins.bb b/doc/admins.bb index d4e90c8a3..817b79d0f 100644 --- a/doc/admins.bb +++ b/doc/admins.bb @@ -4,6 +4,7 @@ [zrl=[baseurl]/help/install]Install[/zrl] [zrl=[baseurl]/help/red2pi]Installing $Projectname on the Raspberry Pi[/zrl] +[zrl=[baseurl]/help/Hubzilla_on_OpenShift]$Projectname on OpenShift[/zrl] [zrl=[baseurl]/help/troubleshooting]Troubleshooting Tips[/zrl] [zrl=[baseurl]/help/hidden_configs]Tweaking $Projectname's Hidden Configurations[/zrl] [zrl=[baseurl]/help/faq_admins]FAQ For Admins[/zrl] diff --git a/include/api.php b/include/api.php index a77bf15f7..d0449763b 100644 --- a/include/api.php +++ b/include/api.php @@ -8,6 +8,7 @@ require_once("html2plain.php"); require_once('include/security.php'); require_once('include/photos.php'); require_once('include/items.php'); +require_once('include/attach.php'); /* * @@ -619,6 +620,36 @@ require_once('include/items.php'); } api_register_func('api/red/channel/stream','api_channel_stream', true); + function api_attach_list(&$a,$type) { + logger('api_user: ' . api_user()); + json_return_and_die(attach_list_files(api_user(),get_observer_hash(),'','','','created asc')); + } + api_register_func('api/red/files','api_attach_list', true); + + + function api_file_detail(&$a,$type) { + if (api_user()===false) return false; + if(! $_REQUEST['file_id']) return false; + $r = q("select * from attach where uid = %d and hash = '%s' limit 1", + intval(api_user()), + dbesc($_REQUEST['file_id']) + ); + if($r) { + if($r[0]['is_dir']) + $r[0]['data'] = ''; + elseif(intval($r[0]['os_storage'])) + $r[0]['data'] = base64_encode(file_get_contents(dbunescbin($r[0]['data']))); + else + $r[0]['data'] = base64_encode(dbunescbin($r[0]['data'])); + + $ret = array('attach' => $r[0]); + json_return_and_die($ret); + } + killme(); + } + + api_register_func('api/red/file', 'api_file_detail', true); + function api_albums(&$a,$type) { json_return_and_die(photos_albums_list($a->get_channel(),$a->get_observer())); diff --git a/include/attach.php b/include/attach.php index 39fdb5c3a..0d4e4092b 100644 --- a/include/attach.php +++ b/include/attach.php @@ -181,7 +181,7 @@ function attach_list_files($channel_id, $observer, $hash = '', $filename = '', $ $ret = array('success' => false); - if(! perm_is_allowed($channel_id,$observer, 'read_storage')) { + if(! perm_is_allowed($channel_id,$observer, 'view_storage')) { $ret['message'] = t('Permission denied.'); return $ret; } @@ -203,7 +203,7 @@ function attach_list_files($channel_id, $observer, $hash = '', $filename = '', $ // Retrieve all columns except 'data' - $r = q("select id, aid, uid, hash, filename, filetype, filesize, revision, folder, os_storage, is_dir, is_photo, flags, created, edited, allow_cid, allow_gid, deny_cid, deny_gid from attach where uid = %d $sql_extra $orderby $limit", + $r = q("select id, aid, uid, hash, filename, filetype, filesize, revision, folder, os_storage, is_dir, is_photo, flags, created, edited, allow_cid, allow_gid, deny_cid, deny_gid from attach where uid = %d $sql_extra ORDER BY $orderby $limit", intval($channel_id) ); @@ -405,7 +405,6 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { require_once('include/photos.php'); - call_hooks('photo_upload_begin',$arr); $ret = array('success' => false); @@ -416,6 +415,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { $newalbum = (($arr) ? $arr['newalbum'] : ''); $hash = (($arr && $arr['hash']) ? $arr['hash'] : null); $upload_path = (($arr && $arr['directory']) ? $arr['directory'] : ''); + $visible = (($arr && $arr['visible']) ? $arr['visible'] : ''); $observer = array(); @@ -447,11 +447,33 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { // revise or update must provide $arr['hash'] of the thing to revise/update + // By default remove $src when finished + + $remove_when_processed = true; + if($options === 'import') { $src = $arr['src']; $filename = $arr['filename']; $filesize = @filesize($src); + $hash = $arr['resource_id']; + + if(array_key_exists('hash',$arr)) + $hash = $arr['hash']; + if(array_key_exists('type',$arr)) + $type = $arr['type']; + + if($arr['preserve_original']) + $remove_when_processed = false; + + // if importing a directory, just do it now and go home - we're done. + + if(array_key_exists('is_dir',$arr) && intval($arr['is_dir'])) { + $x = attach_mkdir($channel,$observer_hash,$arr); + if($x['message']) + logger('import_directory: ' . $x['message']); + return; + } } elseif($options !== 'update') { $f = array('src' => '', 'filename' => '', 'filesize' => 0, 'type' => ''); @@ -530,10 +552,20 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { $pathname = ''; if($is_photo) { - if($newalbum) + if($newalbum) { $pathname = filepath_macro($newalbum); - else + } + elseif(array_key_exists('folder',$arr)) { + $x = q("select filename from attach where hash = '%s' and uid = %d limit 1", + dbesc($arr['folder']), + intval($channel['channel_id']) + ); + if($x) + $pathname = $x[0]['filename']; + } + else { $pathname = filepath_macro($album); + } } else { $pathname = filepath_macro($upload_path); @@ -563,7 +595,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { } } else { - $folder_hash = ''; + $folder_hash = ((($arr) && array_key_exists('folder',$arr)) ? $arr['folder'] : ''); } if((! $options) || ($options === 'import')) { @@ -630,7 +662,8 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { if(($maxfilesize) && ($filesize > $maxfilesize)) { $ret['message'] = sprintf( t('File exceeds size limit of %d'), $maxfilesize); - @unlink($src); + if($remove_when_processed) + @unlink($src); call_hooks('photo_upload_end',$ret); return $ret; } @@ -643,7 +676,9 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { ); if(($r) && (($r[0]['total'] + $filesize) > ($limit - $existing_size))) { $ret['message'] = upgrade_message(true) . sprintf(t("You have reached your limit of %1$.0f Mbytes attachment storage."), $limit / 1024000); - @unlink($src); + if($remove_when_processed) + @unlink($src); + call_hooks('photo_upload_end',$ret); return $ret; } @@ -757,7 +792,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { if($is_photo) { - $args = array( 'source' => $source, 'visible' => 0, 'resource_id' => $hash, 'album' => basename($pathname), 'os_path' => $os_basepath . $os_relpath, 'filename' => $filename, 'getimagesize' => $gis, 'directory' => $direct); + $args = array( 'source' => $source, 'visible' => $visible, 'resource_id' => $hash, 'album' => basename($pathname), 'os_path' => $os_basepath . $os_relpath, 'filename' => $filename, 'getimagesize' => $gis, 'directory' => $direct); if($arr['contact_allow']) $args['contact_allow'] = $arr['contact_allow']; if($arr['group_allow']) @@ -786,7 +821,7 @@ function attach_store($channel, $observer_hash, $options = '', $arr = null) { } } - if($options !== 'update') + if(($options !== 'update') && ($remove_when_processed)) @unlink($src); if(! $r) { @@ -959,7 +994,6 @@ function attach_mkdir($channel, $observer_hash, $arr = null) { intval($channel['channel_id']), dbesc($lfile) ); - if(! $r) { logger('attach_mkdir: hash ' . $lfile . ' not found in ' . $lpath); $ret['message'] = t('Path not found.'); @@ -1195,7 +1229,7 @@ function attach_delete($channel_id, $resource, $is_photo = 0) { $channel_address = (($c) ? $c[0]['channel_address'] : 'notfound'); $photo_sql = (($is_photo) ? " and is_photo = 1 " : ''); - $r = q("SELECT hash, flags, is_dir, folder FROM attach WHERE hash = '%s' AND uid = %d $photo_sql limit 1", + $r = q("SELECT hash, flags, is_dir, is_photo, folder FROM attach WHERE hash = '%s' AND uid = %d $photo_sql limit 1", dbesc($resource), intval($channel_id) ); @@ -1241,6 +1275,16 @@ function attach_delete($channel_id, $resource, $is_photo = 0) { intval($channel_id) ); + if($r[0]['is_photo']) { + $x = q("select id, item_hidden from item where resource_id = '%s' and resource_type = 'photo' and uid = %d", + dbesc($resource), + intval($channel_id) + ); + if($x) { + drop_item($x[0]['id'],false,(($x[0]['item_hidden']) ? DROPITEM_NORMAL : DROPITEM_PHASE1),true); + } + } + // update the parent folder's lastmodified timestamp $e = q("UPDATE attach SET edited = '%s' WHERE hash = '%s' AND uid = %d", dbesc(datetime_convert()), diff --git a/include/identity.php b/include/identity.php index 47738a8fa..ad5bfbe6d 100644 --- a/include/identity.php +++ b/include/identity.php @@ -631,6 +631,29 @@ function identity_basic_export($channel_id, $items = false) { if($r) $ret['likes'] = $r; + + $r = q("select * from conv where uid = %d", + intval($channel_id) + ); + if($r) { + for($x = 0; $x < count($r); $x ++) { + $r[$x]['subject'] = base64url_decode(str_rot47($r[$x]['subject'])); + } + $ret['conv'] = $r; + } + + + $r = q("select mail.*, conv.guid as conv_guid from mail left join conv on mail.convid = conv.id where mail.uid = %d", + intval($channel_id) + ); + if($r) { + $m = array(); + foreach($r as $rr) { + $m[] = mail_encode($rr,true); + } + $ret['mail'] = $m; + } + $r = q("select item_id.*, item.mid from item_id left join item on item_id.iid = item.id where item_id.uid = %d", intval($channel_id) ); diff --git a/include/import.php b/include/import.php index ad8bcd84e..1734bd263 100644 --- a/include/import.php +++ b/include/import.php @@ -790,7 +790,7 @@ function import_likes($channel,$likes) { if($r) continue; - dbesc_array($config); + dbesc_array($like); $r = dbq("INSERT INTO likes (`" . implode("`, `", array_keys($like)) . "`) VALUES ('" @@ -800,6 +800,72 @@ function import_likes($channel,$likes) { } } +function import_conv($channel,$convs) { + if($channel && $convs) { + foreach($convs as $conv) { + if($conv['deleted']) { + q("delete from conv where guid = '%s' and uid = %d limit 1", + dbesc($conv['guid']), + intval($channel['channel_id']) + ); + continue; + } + + unset($conv['id']); + + $conv['uid'] = $channel['channel_id']; + $conv['subject'] = str_rot47(base64url_encode($conv['subject'])); + + $r = q("select id from conv where guid = '%s' and uid = %d limit 1", + dbesc($conv['guid']), + intval($channel['channel_id']) + ); + if($r) + continue; + + dbesc_array($conv); + $r = dbq("INSERT INTO conv (`" + . implode("`, `", array_keys($conv)) + . "`) VALUES ('" + . implode("', '", array_values($conv)) + . "')" ); + } + } +} + + + +function import_mail($channel,$mails) { + if($channel && $mails) { + foreach($mails as $mail) { + if(array_key_exists('flags',$mail) && in_array('deleted',$mail['flags'])) { + q("delete from mail where mid = '%s' and uid = %d limit 1", + dbesc($mail['message_id']), + intval($channel['channel_id']) + ); + continue; + } + $m = get_mail_elements($mail); + if(! $m) + continue; + + if($mail['conv_guid']) { + $x = q("select id from conv where guid = '%s' and uid = %d limit 1", + dbesc($mail['conv_guid']), + intval($channel['channel_id']) + ); + if($x) { + $m['convid'] = $x[0]['id']; + } + } + $m['aid'] = $channel['channel_account_id']; + $m['uid'] = $channel['channel_id']; + mail_store($m); + } + } +} + + diff --git a/include/items.php b/include/items.php index e7cc02579..5569cd1e4 100755 --- a/include/items.php +++ b/include/items.php @@ -1559,7 +1559,7 @@ function encode_item_flags($item) { return $ret; } -function encode_mail($item) { +function encode_mail($item,$extended = false) { $x = array(); $x['type'] = 'mail'; $x['encoding'] = 'zot'; @@ -1592,6 +1592,18 @@ function encode_mail($item) { $x['body'] = ''; } + if($extended) { + $x['conv_guid'] = $item['conv_guid']; + if(intval($item['mail_deleted'])) + $x['flags'][] = 'deleted'; + if(intval($item['mail_replied'])) + $x['flags'][] = 'replied'; + if(intval($item['mail_isreply'])) + $x['flags'][] = 'isreply'; + if(intval($item['mail_seen'])) + $x['flags'][] = 'seen'; + } + return $x; } @@ -1616,6 +1628,18 @@ function get_mail_elements($x) { if(in_array('recalled',$x['flags'])) { $arr['mail_recalled'] = 1; } + if(in_array('replied',$x['flags'])) { + $arr['mail_replied'] = 1; + } + if(in_array('isreply',$x['flags'])) { + $arr['mail_isreply'] = 1; + } + if(in_array('seen',$x['flags'])) { + $arr['mail_seen'] = 1; + } + if(in_array('deleted',$x['flags'])) { + $arr['mail_deleted'] = 1; + } } $key = get_config('system','pubkey'); diff --git a/include/text.php b/include/text.php index 205736502..775076e93 100644 --- a/include/text.php +++ b/include/text.php @@ -2221,7 +2221,7 @@ function handle_tag($a, &$body, &$access_tag, &$str_tags, $profile_uid, $tag, $d } if($tag == '#getzot') { $basetag = 'getzot'; - $url = 'https://redmatrix.me'; + $url = 'http://hubzilla.org'; $newtag = '#[zrl=' . $url . ']' . $basetag . '[/zrl]'; $body = str_replace($tag,$newtag,$body); $replaced = true; diff --git a/include/zot.php b/include/zot.php index dd9222bf3..b1cb5a8ec 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3002,6 +3002,12 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { if(array_key_exists('chatroom',$arr) && $arr['chatroom']) sync_chatrooms($channel,$arr['chatroom']); + if(array_key_exists('conv',$arr) && $arr['conv']) + import_conv($channel,$arr['conv']); + + if(array_key_exists('mail',$arr) && $arr['mail']) + import_mail($channel,$arr['mail']); + if(array_key_exists('event',$arr) && $arr['event']) sync_events($channel,$arr['event']); diff --git a/mod/channel.php b/mod/channel.php index f1b74136e..0af2666cc 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -173,7 +173,7 @@ function channel_content(&$a, $update = 0, $load = false) { $r = q("SELECT distinct parent AS `item_id`, created from item left join abook on ( item.owner_xchan = abook.abook_xchan $abook_uids ) WHERE uid = %d $item_normal - AND item_wall = 1 AND item_unseen = 1 + AND item_wall = 1 $simple_update AND (abook.abook_blocked = 0 or abook.abook_flags is null) $sql_extra ORDER BY created DESC", diff --git a/mod/import.php b/mod/import.php index b6e36d734..72d8f92e9 100644 --- a/mod/import.php +++ b/mod/import.php @@ -441,6 +441,12 @@ function import_post(&$a) { if(is_array($data['chatroom'])) import_chatrooms($channel,$data['chatroom']); + if(is_array($data['conv'])) + import_conv($channel,$data['conv']); + + if(is_array($data['mail'])) + import_mail($channel,$data['mail']); + if(is_array($data['event'])) import_events($channel,$data['event']); diff --git a/mod/photos.php b/mod/photos.php index cd293b39d..320e2beed 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -149,8 +149,9 @@ function photos_post(&$a) { if($r) { foreach($r as $i) { attach_delete($page_owner_uid, $i['resource_id'], 1 ); - drop_item($i['id'],false,DROPITEM_PHASE1,true /* force removal of linked items */); - proc_run('php','include/notifier.php','drop',$i['id']); + // This is now being done in attach_delete() + // drop_item($i['id'],false,DROPITEM_PHASE1,true /* force removal of linked items */); + // proc_run('php','include/notifier.php','drop',$i['id']); } } @@ -982,13 +983,13 @@ function photos_content(&$a) { $likebuttons = ''; if($can_post || $can_comment) { - $likebuttons = replace_macros($like_tpl,array( - '$id' => $link_item['id'], - '$likethis' => t("I like this \x28toggle\x29"), - '$nolike' => t("I don't like this \x28toggle\x29"), - '$share' => t('Share'), - '$wait' => t('Please wait') - )); + $likebuttons = array( + 'id' => $link_item['id'], + 'likethis' => t("I like this \x28toggle\x29"), + 'nolike' => t("I don't like this \x28toggle\x29"), + 'share' => t('Share'), + 'wait' => t('Please wait') + ); } $comments = ''; diff --git a/mod/siteinfo.php b/mod/siteinfo.php index 14aaef144..2fffccc73 100644 --- a/mod/siteinfo.php +++ b/mod/siteinfo.php @@ -165,7 +165,7 @@ function siteinfo_content(&$a) { '$loadavg_all' => $loadavg[0] . ', ' . $loadavg[1] . ', ' . $loadavg[2], '$commit' => $commit, '$web_location' => t('Running at web location') . ' ' . z_root(), - '$visit' => t('Please visit <a href="https://redmatrix.me">redmatrix.me</a> to learn more about $Projectname.'), + '$visit' => t('Please visit <a href="http://hubzilla.org">hubzilla.org</a> to learn more about $Projectname.'), '$bug_text' => t('Bug reports and issues: please visit'), '$bug_link_url' => 'https://github.com/redmatrix/hubzilla/issues', '$bug_link_text' => t('$projectname issues'), diff --git a/util/messages.po b/util/messages.po index 947acab5b..8d0ef235c 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2015-10-09.1180\n" +"Project-Id-Version: 2015-10-13.1184\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-09 00:04-0700\n" +"POT-Creation-Date: 2015-10-14 13:36+0200\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" @@ -17,232 +17,6 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../include/dba/dba_driver.php:141 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" - -#: ../../include/photo/photo_driver.php:687 ../../mod/profile_photo.php:143 -#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 -#: ../../mod/photos.php:92 ../../mod/photos.php:637 -msgid "Profile Photos" -msgstr "" - -#: ../../include/menu.php:107 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:266 -#: ../../include/ItemObject.php:100 ../../include/apps.php:254 -#: ../../mod/webpages.php:181 ../../mod/thing.php:255 -#: ../../mod/connections.php:242 ../../mod/connections.php:255 -#: ../../mod/connections.php:274 ../../mod/blocks.php:153 -#: ../../mod/editpost.php:106 ../../mod/editlayout.php:133 -#: ../../mod/editwebpage.php:178 ../../mod/editblock.php:134 -#: ../../mod/menu.php:106 ../../mod/settings.php:650 ../../mod/layouts.php:183 -msgid "Edit" -msgstr "" - -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "" - -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "" - -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:822 -#: ../../mod/admin.php:831 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1552 -msgid "Email" -msgstr "" - -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "" - -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "" - -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "" - -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "" - -#: ../../include/Import/import_diaspora.php:17 -msgid "No username found in import file." -msgstr "" - -#: ../../include/Import/import_diaspora.php:42 ../../mod/import.php:156 -msgid "Unable to create a unique channel address. Import failed." -msgstr "" - -#: ../../include/Import/import_diaspora.php:140 ../../mod/import.php:562 -msgid "Import completed." -msgstr "" - -#: ../../include/group.php:26 -msgid "" -"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." -msgstr "" - -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "" - -#: ../../include/group.php:254 ../../mod/admin.php:831 -msgid "All Channels" -msgstr "" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "" - -#: ../../include/group.php:300 -msgid "Add new collection" -msgstr "" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "" - -#: ../../include/group.php:303 ../../include/widgets.php:275 -msgid "add" -msgstr "" - -#: ../../include/account.php:27 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:29 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:35 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:67 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:71 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:121 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:188 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:246 -#, php-format -msgid "Registration confirmation for %s" -msgstr "" - -#: ../../include/account.php:312 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../include/account.php:314 ../../include/account.php:341 -#: ../../include/account.php:401 ../../include/network.php:1632 -msgid "Administrator" -msgstr "" - -#: ../../include/account.php:336 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:339 ../../include/account.php:399 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../include/account.php:408 -msgid "Account approved." -msgstr "" - -#: ../../include/account.php:447 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../include/account.php:492 -msgid "Account verified. Please login." -msgstr "" - -#: ../../include/account.php:705 ../../include/account.php:707 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/account.php:713 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/account.php:718 -msgid "This action is not available under your subscription plan." -msgstr "" - #: ../../include/datetime.php:48 msgid "Miscellaneous" msgstr "" @@ -251,8 +25,8 @@ msgstr "" msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/datetime.php:235 ../../mod/events.php:672 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 +#: ../../include/datetime.php:235 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 ../../mod/events.php:672 msgid "Required" msgstr "" @@ -336,1444 +110,1499 @@ msgstr "" msgid "Happy Birthday %1$s" msgstr "" -#: ../../include/dir_fns.php:126 -msgid "Directory Options" +#: ../../include/conversation.php:120 ../../include/text.php:1884 +#: ../../include/diaspora.php:2119 ../../mod/tagger.php:43 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/like.php:349 +msgid "photo" msgstr "" -#: ../../include/dir_fns.php:128 -msgid "Safe Mode" +#: ../../include/conversation.php:123 ../../include/text.php:1887 +#: ../../mod/tagger.php:47 ../../mod/like.php:351 +msgid "event" msgstr "" -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/api.php:106 -#: ../../mod/photos.php:568 ../../mod/mitem.php:159 ../../mod/mitem.php:160 -#: ../../mod/mitem.php:232 ../../mod/mitem.php:233 ../../mod/menu.php:94 -#: ../../mod/menu.php:151 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:428 -#: ../../mod/settings.php:579 ../../mod/removeme.php:60 -#: ../../mod/connedit.php:647 ../../mod/connedit.php:675 -#: ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1554 -msgid "No" +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" msgstr "" -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/api.php:105 -#: ../../mod/photos.php:568 ../../mod/mitem.php:159 ../../mod/mitem.php:160 -#: ../../mod/mitem.php:232 ../../mod/mitem.php:233 ../../mod/menu.php:94 -#: ../../mod/menu.php:151 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:430 -#: ../../mod/settings.php:579 ../../mod/removeme.php:60 -#: ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1554 -msgid "Yes" +#: ../../include/conversation.php:148 ../../include/text.php:1890 +#: ../../include/diaspora.php:2119 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/like.php:349 +msgid "status" msgstr "" -#: ../../include/dir_fns.php:129 -msgid "Public Forums Only" +#: ../../include/conversation.php:150 ../../include/text.php:1892 +#: ../../mod/tagger.php:53 +msgid "comment" msgstr "" -#: ../../include/dir_fns.php:130 -msgid "This Website Only" +#: ../../include/conversation.php:164 ../../include/diaspora.php:2148 +#: ../../mod/like.php:397 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../include/page_widgets.php:6 -msgid "New Page" +#: ../../include/conversation.php:167 ../../mod/like.php:399 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:187 -#: ../../mod/blocks.php:159 ../../mod/layouts.php:188 -msgid "View" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 -#: ../../include/conversation.php:1166 ../../mod/webpages.php:188 -#: ../../mod/events.php:690 ../../mod/editpost.php:143 -#: ../../mod/photos.php:982 ../../mod/editwebpage.php:214 -#: ../../mod/editblock.php:170 -msgid "Preview" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 -msgid "Actions" +#: ../../include/conversation.php:243 ../../include/text.php:990 +msgid "poked" msgstr "" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 -msgid "Page Link" +#: ../../include/conversation.php:260 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../include/page_widgets.php:43 -msgid "Title" +#: ../../include/conversation.php:583 ../../mod/photos.php:996 +msgctxt "title" +msgid "Likes" msgstr "" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:192 -#: ../../mod/blocks.php:150 ../../mod/menu.php:108 ../../mod/layouts.php:181 -msgid "Created" +#: ../../include/conversation.php:583 ../../mod/photos.php:996 +msgctxt "title" +msgid "Dislikes" msgstr "" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:193 -#: ../../mod/blocks.php:151 ../../mod/menu.php:109 ../../mod/layouts.php:182 -msgid "Edited" +#: ../../include/conversation.php:584 ../../mod/photos.php:997 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../include/api.php:1234 -msgid "Public Timeline" +#: ../../include/conversation.php:584 ../../mod/photos.php:997 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../include/comanche.php:34 ../../mod/admin.php:390 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" +#: ../../include/conversation.php:584 ../../mod/photos.php:997 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" +#: ../../include/conversation.php:585 ../../mod/photos.php:998 +msgctxt "title" +msgid "Attending" msgstr "" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 -#: ../../mod/photos.php:980 ../../mod/photos.php:1098 -msgid "Comment" +#: ../../include/conversation.php:585 ../../mod/photos.php:998 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 -msgid "[+] show all" +#: ../../include/conversation.php:585 ../../mod/photos.php:998 +msgctxt "title" +msgid "Might attend" msgstr "" -#: ../../include/js_strings.php:8 -msgid "[-] show less" +#: ../../include/conversation.php:670 ../../include/ItemObject.php:126 +msgid "Select" msgstr "" -#: ../../include/js_strings.php:9 -msgid "[+] expand" +#: ../../include/conversation.php:671 ../../include/apps.php:255 +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:120 +#: ../../mod/editblock.php:180 ../../mod/group.php:176 +#: ../../mod/editlayout.php:178 ../../mod/editwebpage.php:225 +#: ../../mod/admin.php:826 ../../mod/admin.php:988 ../../mod/connedit.php:563 +#: ../../mod/thing.php:256 ../../mod/settings.php:651 +#: ../../mod/photos.php:1062 ../../mod/blocks.php:155 +#: ../../mod/webpages.php:183 +msgid "Delete" msgstr "" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" +#: ../../include/conversation.php:678 ../../include/ItemObject.php:89 +msgid "Private Message" msgstr "" -#: ../../include/js_strings.php:11 -msgid "Password too short" +#: ../../include/conversation.php:685 ../../include/ItemObject.php:227 +msgid "Message signature validated" msgstr "" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" +#: ../../include/conversation.php:686 ../../include/ItemObject.php:228 +msgid "Message signature incorrect" msgstr "" -#: ../../include/js_strings.php:13 ../../mod/photos.php:40 -msgid "everybody" +#: ../../include/conversation.php:703 +#, php-format +msgid "View %s's profile @ %s" msgstr "" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" +#: ../../include/conversation.php:718 +msgid "Categories:" msgstr "" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" +#: ../../include/conversation.php:719 +msgid "Filed under:" msgstr "" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." +#: ../../include/conversation.php:727 ../../include/ItemObject.php:312 +#, php-format +msgid "from %s" msgstr "" -#: ../../include/js_strings.php:17 -msgid "close all" +#: ../../include/conversation.php:730 ../../include/ItemObject.php:315 +#, php-format +msgid "last edited: %s" msgstr "" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" +#: ../../include/conversation.php:731 ../../include/ItemObject.php:316 +#, php-format +msgid "Expires: %s" msgstr "" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" +#: ../../include/conversation.php:746 +msgid "View in context" msgstr "" -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 -#: ../../mod/connedit.php:683 -msgid "Rating" +#: ../../include/conversation.php:748 ../../include/conversation.php:1220 +#: ../../include/ItemObject.php:364 ../../mod/editblock.php:149 +#: ../../mod/mail.php:241 ../../mod/mail.php:356 ../../mod/editlayout.php:147 +#: ../../mod/editpost.php:123 ../../mod/editwebpage.php:192 +#: ../../mod/photos.php:962 +msgid "Please wait" msgstr "" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" +#: ../../include/conversation.php:857 +msgid "remove" msgstr "" -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 -#: ../../mod/xchan.php:11 ../../mod/connect.php:93 ../../mod/thing.php:303 -#: ../../mod/thing.php:346 ../../mod/events.php:511 ../../mod/events.php:693 -#: ../../mod/group.php:81 ../../mod/photos.php:577 ../../mod/photos.php:654 -#: ../../mod/photos.php:941 ../../mod/photos.php:981 ../../mod/photos.php:1099 -#: ../../mod/pdledit.php:58 ../../mod/import.php:592 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/mitem.php:235 ../../mod/rate.php:167 -#: ../../mod/invite.php:142 ../../mod/locs.php:105 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:156 -#: ../../mod/fsuggest.php:108 ../../mod/poke.php:166 -#: ../../mod/profiles.php:667 ../../mod/setup.php:327 ../../mod/setup.php:367 -#: ../../mod/admin.php:453 ../../mod/admin.php:819 ../../mod/admin.php:986 -#: ../../mod/admin.php:1118 ../../mod/admin.php:1312 ../../mod/admin.php:1397 -#: ../../mod/settings.php:588 ../../mod/settings.php:692 -#: ../../mod/settings.php:718 ../../mod/settings.php:746 -#: ../../mod/settings.php:769 ../../mod/settings.php:854 -#: ../../mod/settings.php:1050 ../../mod/mood.php:134 -#: ../../mod/connedit.php:704 ../../mod/mail.php:355 ../../mod/appman.php:99 -#: ../../mod/pconfig.php:108 ../../mod/poll.php:68 -#: ../../mod/bulksetclose.php:24 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" +#: ../../include/conversation.php:861 ../../include/nav.php:247 +msgid "Loading..." msgstr "" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" +#: ../../include/conversation.php:862 +msgid "Delete Selected Items" msgstr "" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" +#: ../../include/conversation.php:950 +msgid "View Source" msgstr "" -#: ../../include/js_strings.php:26 -msgid "timeago.prefixAgo" +#: ../../include/conversation.php:951 +msgid "Follow Thread" msgstr "" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixFromNow" +#: ../../include/conversation.php:952 +msgid "View Status" msgstr "" -#: ../../include/js_strings.php:28 -msgid "ago" +#: ../../include/conversation.php:953 ../../include/nav.php:91 +#: ../../mod/connedit.php:510 +msgid "View Profile" msgstr "" -#: ../../include/js_strings.php:29 -msgid "from now" +#: ../../include/conversation.php:954 +msgid "View Photos" msgstr "" -#: ../../include/js_strings.php:30 -msgid "less than a minute" +#: ../../include/conversation.php:955 +msgid "Matrix Activity" msgstr "" -#: ../../include/js_strings.php:31 -msgid "about a minute" +#: ../../include/conversation.php:956 ../../include/Contact.php:107 +#: ../../include/widgets.php:136 ../../include/widgets.php:175 +#: ../../include/identity.php:933 ../../mod/match.php:64 +#: ../../mod/suggest.php:52 ../../mod/directory.php:316 +msgid "Connect" msgstr "" -#: ../../include/js_strings.php:32 -#, php-format -msgid "%d minutes" +#: ../../include/conversation.php:957 +msgid "Edit Contact" msgstr "" -#: ../../include/js_strings.php:33 -msgid "about an hour" +#: ../../include/conversation.php:958 +msgid "Send PM" msgstr "" -#: ../../include/js_strings.php:34 -#, php-format -msgid "about %d hours" +#: ../../include/conversation.php:959 ../../include/apps.php:145 +msgid "Poke" msgstr "" -#: ../../include/js_strings.php:35 -msgid "a day" +#: ../../include/conversation.php:1030 ../../include/apps.php:336 +#: ../../include/apps.php:387 ../../include/RedDAV/RedBrowser.php:164 +#: ../../mod/photos.php:693 ../../mod/photos.php:1131 +msgid "Unknown" msgstr "" -#: ../../include/js_strings.php:36 +#: ../../include/conversation.php:1073 #, php-format -msgid "%d days" -msgstr "" - -#: ../../include/js_strings.php:37 -msgid "about a month" +msgid "%s likes this." msgstr "" -#: ../../include/js_strings.php:38 +#: ../../include/conversation.php:1073 #, php-format -msgid "%d months" -msgstr "" - -#: ../../include/js_strings.php:39 -msgid "about a year" +msgid "%s doesn't like this." msgstr "" -#: ../../include/js_strings.php:40 +#: ../../include/conversation.php:1077 #, php-format -msgid "%d years" -msgstr "" - -#: ../../include/js_strings.php:41 -msgid " " -msgstr "" - -#: ../../include/js_strings.php:42 -msgid "timeago.numbers" -msgstr "" - -#: ../../include/text.php:391 -msgid "prev" -msgstr "" - -#: ../../include/text.php:393 -msgid "first" -msgstr "" - -#: ../../include/text.php:422 -msgid "last" -msgstr "" - -#: ../../include/text.php:425 -msgid "next" -msgstr "" - -#: ../../include/text.php:435 -msgid "older" -msgstr "" +msgid "<span %1$s>%2$d people</span> like this." +msgid_plural "<span %1$s>%2$d people</span> like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:437 -msgid "newer" -msgstr "" +#: ../../include/conversation.php:1079 +#, php-format +msgid "<span %1$s>%2$d people</span> don't like this." +msgid_plural "<span %1$s>%2$d people</span> don't like this." +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:830 -msgid "No connections" +#: ../../include/conversation.php:1085 +msgid "and" msgstr "" -#: ../../include/text.php:844 +#: ../../include/conversation.php:1088 #, php-format -msgid "%d Connection" -msgid_plural "%d Connections" +msgid ", and %d other people" +msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] "" -#: ../../include/text.php:857 ../../mod/viewconnections.php:104 -msgid "View Connections" -msgstr "" - -#: ../../include/text.php:914 ../../include/text.php:926 -#: ../../include/nav.php:165 ../../include/apps.php:147 -#: ../../mod/search.php:38 -msgid "Search" +#: ../../include/conversation.php:1089 +#, php-format +msgid "%s like this." msgstr "" -#: ../../include/text.php:915 ../../include/text.php:927 -#: ../../include/widgets.php:192 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 ../../mod/admin.php:1457 -#: ../../mod/admin.php:1477 -msgid "Save" +#: ../../include/conversation.php:1089 +#, php-format +msgid "%s don't like this." msgstr "" -#: ../../include/text.php:990 -msgid "poke" +#: ../../include/conversation.php:1151 +msgid "Visible to <strong>everybody</strong>" msgstr "" -#: ../../include/text.php:990 ../../include/conversation.php:243 -msgid "poked" +#: ../../include/conversation.php:1152 ../../mod/mail.php:174 +#: ../../mod/mail.php:289 +msgid "Please enter a link URL:" msgstr "" -#: ../../include/text.php:991 -msgid "ping" +#: ../../include/conversation.php:1153 +msgid "Please enter a video link/URL:" msgstr "" -#: ../../include/text.php:991 -msgid "pinged" +#: ../../include/conversation.php:1154 +msgid "Please enter an audio link/URL:" msgstr "" -#: ../../include/text.php:992 -msgid "prod" +#: ../../include/conversation.php:1155 +msgid "Tag term:" msgstr "" -#: ../../include/text.php:992 -msgid "prodded" +#: ../../include/conversation.php:1156 ../../mod/filer.php:49 +msgid "Save to Folder:" msgstr "" -#: ../../include/text.php:993 -msgid "slap" +#: ../../include/conversation.php:1157 +msgid "Where are you right now?" msgstr "" -#: ../../include/text.php:993 -msgid "slapped" +#: ../../include/conversation.php:1158 ../../mod/mail.php:175 +#: ../../mod/mail.php:290 ../../mod/editpost.php:47 +msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../include/text.php:994 -msgid "finger" +#: ../../include/conversation.php:1166 ../../include/page_widgets.php:40 +#: ../../include/ItemObject.php:677 ../../mod/editblock.php:170 +#: ../../mod/editpost.php:143 ../../mod/editwebpage.php:214 +#: ../../mod/events.php:690 ../../mod/photos.php:982 +#: ../../mod/webpages.php:188 +msgid "Preview" msgstr "" -#: ../../include/text.php:994 -msgid "fingered" +#: ../../include/conversation.php:1185 ../../mod/layouts.php:184 +#: ../../mod/photos.php:961 ../../mod/blocks.php:154 +#: ../../mod/webpages.php:182 +msgid "Share" msgstr "" -#: ../../include/text.php:995 -msgid "rebuff" +#: ../../include/conversation.php:1187 +msgid "Page link name" msgstr "" -#: ../../include/text.php:995 -msgid "rebuffed" +#: ../../include/conversation.php:1190 +msgid "Post as" msgstr "" -#: ../../include/text.php:1005 -msgid "happy" +#: ../../include/conversation.php:1192 ../../include/ItemObject.php:669 +#: ../../mod/editblock.php:135 ../../mod/editlayout.php:134 +#: ../../mod/editpost.php:107 ../../mod/editwebpage.php:179 +msgid "Bold" msgstr "" -#: ../../include/text.php:1006 -msgid "sad" +#: ../../include/conversation.php:1193 ../../include/ItemObject.php:670 +#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135 +#: ../../mod/editpost.php:108 ../../mod/editwebpage.php:180 +msgid "Italic" msgstr "" -#: ../../include/text.php:1007 -msgid "mellow" +#: ../../include/conversation.php:1194 ../../include/ItemObject.php:671 +#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136 +#: ../../mod/editpost.php:109 ../../mod/editwebpage.php:181 +msgid "Underline" msgstr "" -#: ../../include/text.php:1008 -msgid "tired" +#: ../../include/conversation.php:1195 ../../include/ItemObject.php:672 +#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137 +#: ../../mod/editpost.php:110 ../../mod/editwebpage.php:182 +msgid "Quote" msgstr "" -#: ../../include/text.php:1009 -msgid "perky" +#: ../../include/conversation.php:1196 ../../include/ItemObject.php:673 +#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138 +#: ../../mod/editpost.php:111 ../../mod/editwebpage.php:183 +msgid "Code" msgstr "" -#: ../../include/text.php:1010 -msgid "angry" +#: ../../include/conversation.php:1197 ../../mod/editblock.php:141 +#: ../../mod/mail.php:238 ../../mod/mail.php:352 ../../mod/editlayout.php:139 +#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:184 +msgid "Upload photo" msgstr "" -#: ../../include/text.php:1011 -msgid "stupified" +#: ../../include/conversation.php:1198 +msgid "upload photo" msgstr "" -#: ../../include/text.php:1012 -msgid "puzzled" +#: ../../include/conversation.php:1199 ../../mod/editblock.php:142 +#: ../../mod/mail.php:239 ../../mod/mail.php:353 ../../mod/editlayout.php:140 +#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:185 +msgid "Attach file" msgstr "" -#: ../../include/text.php:1013 -msgid "interested" +#: ../../include/conversation.php:1200 +msgid "attach file" msgstr "" -#: ../../include/text.php:1014 -msgid "bitter" +#: ../../include/conversation.php:1201 ../../mod/editblock.php:143 +#: ../../mod/mail.php:240 ../../mod/mail.php:354 ../../mod/editlayout.php:141 +#: ../../mod/editpost.php:114 ../../mod/editwebpage.php:186 +msgid "Insert web link" msgstr "" -#: ../../include/text.php:1015 -msgid "cheerful" +#: ../../include/conversation.php:1202 +msgid "web link" msgstr "" -#: ../../include/text.php:1016 -msgid "alive" +#: ../../include/conversation.php:1203 +msgid "Insert video link" msgstr "" -#: ../../include/text.php:1017 -msgid "annoyed" +#: ../../include/conversation.php:1204 +msgid "video link" msgstr "" -#: ../../include/text.php:1018 -msgid "anxious" +#: ../../include/conversation.php:1205 +msgid "Insert audio link" msgstr "" -#: ../../include/text.php:1019 -msgid "cranky" +#: ../../include/conversation.php:1206 +msgid "audio link" msgstr "" -#: ../../include/text.php:1020 -msgid "disturbed" +#: ../../include/conversation.php:1207 ../../mod/editblock.php:147 +#: ../../mod/editlayout.php:145 ../../mod/editpost.php:118 +#: ../../mod/editwebpage.php:190 +msgid "Set your location" msgstr "" -#: ../../include/text.php:1021 -msgid "frustrated" +#: ../../include/conversation.php:1208 +msgid "set location" msgstr "" -#: ../../include/text.php:1022 -msgid "depressed" +#: ../../include/conversation.php:1209 ../../mod/editpost.php:120 +msgid "Toggle voting" msgstr "" -#: ../../include/text.php:1023 -msgid "motivated" +#: ../../include/conversation.php:1212 ../../mod/editblock.php:148 +#: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 +#: ../../mod/editwebpage.php:191 +msgid "Clear browser location" msgstr "" -#: ../../include/text.php:1024 -msgid "relaxed" +#: ../../include/conversation.php:1213 +msgid "clear location" msgstr "" -#: ../../include/text.php:1025 -msgid "surprised" +#: ../../include/conversation.php:1215 ../../mod/editblock.php:161 +#: ../../mod/editpost.php:135 ../../mod/editwebpage.php:207 +msgid "Title (optional)" msgstr "" -#: ../../include/text.php:1197 -msgid "Monday" +#: ../../include/conversation.php:1219 ../../mod/editblock.php:164 +#: ../../mod/editlayout.php:162 ../../mod/editpost.php:137 +#: ../../mod/editwebpage.php:209 +msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../include/text.php:1197 -msgid "Tuesday" +#: ../../include/conversation.php:1221 ../../mod/editblock.php:150 +#: ../../mod/editlayout.php:148 ../../mod/editpost.php:124 +#: ../../mod/editwebpage.php:193 +msgid "Permission settings" msgstr "" -#: ../../include/text.php:1197 -msgid "Wednesday" +#: ../../include/conversation.php:1222 +msgid "permissions" msgstr "" -#: ../../include/text.php:1197 -msgid "Thursday" +#: ../../include/conversation.php:1230 ../../mod/editblock.php:158 +#: ../../mod/editlayout.php:155 ../../mod/editpost.php:132 +#: ../../mod/editwebpage.php:202 +msgid "Public post" msgstr "" -#: ../../include/text.php:1197 -msgid "Friday" +#: ../../include/conversation.php:1232 ../../mod/editblock.php:165 +#: ../../mod/editlayout.php:163 ../../mod/editpost.php:138 +#: ../../mod/editwebpage.php:210 +msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../include/text.php:1197 -msgid "Saturday" +#: ../../include/conversation.php:1245 ../../mod/editblock.php:175 +#: ../../mod/mail.php:245 ../../mod/mail.php:359 ../../mod/editlayout.php:172 +#: ../../mod/editpost.php:149 ../../mod/editwebpage.php:219 +msgid "Set expiration date" msgstr "" -#: ../../include/text.php:1197 -msgid "Sunday" +#: ../../include/conversation.php:1247 ../../include/ItemObject.php:680 +#: ../../mod/mail.php:247 ../../mod/mail.php:361 ../../mod/editpost.php:151 +msgid "Encrypt text" msgstr "" -#: ../../include/text.php:1201 -msgid "January" +#: ../../include/conversation.php:1249 ../../mod/editpost.php:153 +#: ../../mod/events.php:674 +msgid "OK" msgstr "" -#: ../../include/text.php:1201 -msgid "February" +#: ../../include/conversation.php:1250 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:154 +#: ../../mod/events.php:673 ../../mod/settings.php:589 +#: ../../mod/settings.php:615 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +msgid "Cancel" msgstr "" -#: ../../include/text.php:1201 -msgid "March" +#: ../../include/conversation.php:1492 +msgid "Discover" msgstr "" -#: ../../include/text.php:1201 -msgid "April" +#: ../../include/conversation.php:1495 +msgid "Imported public streams" msgstr "" -#: ../../include/text.php:1201 -msgid "May" +#: ../../include/conversation.php:1500 +msgid "Commented Order" msgstr "" -#: ../../include/text.php:1201 -msgid "June" +#: ../../include/conversation.php:1503 +msgid "Sort by Comment Date" msgstr "" -#: ../../include/text.php:1201 -msgid "July" +#: ../../include/conversation.php:1507 +msgid "Posted Order" msgstr "" -#: ../../include/text.php:1201 -msgid "August" +#: ../../include/conversation.php:1510 +msgid "Sort by Post Date" msgstr "" -#: ../../include/text.php:1201 -msgid "September" +#: ../../include/conversation.php:1515 ../../include/widgets.php:94 +msgid "Personal" msgstr "" -#: ../../include/text.php:1201 -msgid "October" +#: ../../include/conversation.php:1518 +msgid "Posts that mention or involve you" msgstr "" -#: ../../include/text.php:1201 -msgid "November" +#: ../../include/conversation.php:1524 ../../mod/menu.php:110 +#: ../../mod/connections.php:72 ../../mod/connections.php:85 +msgid "New" msgstr "" -#: ../../include/text.php:1201 -msgid "December" +#: ../../include/conversation.php:1527 +msgid "Activity Stream - by date" msgstr "" -#: ../../include/text.php:1306 -msgid "unknown.???" +#: ../../include/conversation.php:1533 +msgid "Starred" msgstr "" -#: ../../include/text.php:1307 -msgid "bytes" +#: ../../include/conversation.php:1536 +msgid "Favourite Posts" msgstr "" -#: ../../include/text.php:1343 -msgid "remove category" +#: ../../include/conversation.php:1543 +msgid "Spam" msgstr "" -#: ../../include/text.php:1418 -msgid "remove from file" +#: ../../include/conversation.php:1546 +msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/text.php:1494 ../../include/text.php:1505 -msgid "Click to open/close" +#: ../../include/conversation.php:1590 ../../mod/admin.php:993 +msgid "Channel" msgstr "" -#: ../../include/text.php:1661 ../../mod/events.php:474 -msgid "Link to Source" +#: ../../include/conversation.php:1593 +msgid "Status Messages and Posts" msgstr "" -#: ../../include/text.php:1682 ../../include/text.php:1753 -msgid "default" +#: ../../include/conversation.php:1602 +msgid "About" msgstr "" -#: ../../include/text.php:1690 -msgid "Page layout" +#: ../../include/conversation.php:1605 +msgid "Profile Details" msgstr "" -#: ../../include/text.php:1690 -msgid "You can create your own with the layouts tool" +#: ../../include/conversation.php:1611 ../../include/apps.php:139 +#: ../../include/nav.php:97 ../../mod/fbrowser.php:25 +msgid "Photos" msgstr "" -#: ../../include/text.php:1731 -msgid "Page content type" +#: ../../include/conversation.php:1614 ../../include/photos.php:359 +msgid "Photo Albums" msgstr "" -#: ../../include/text.php:1765 -msgid "Select an alternate language" +#: ../../include/conversation.php:1620 ../../include/apps.php:135 +#: ../../include/nav.php:98 ../../include/RedDAV/RedBrowser.php:251 +#: ../../mod/fbrowser.php:114 +msgid "Files" msgstr "" -#: ../../include/text.php:1884 ../../include/diaspora.php:2119 -#: ../../include/conversation.php:120 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:43 -msgid "photo" +#: ../../include/conversation.php:1623 +msgid "Files and Storage" msgstr "" -#: ../../include/text.php:1887 ../../include/conversation.php:123 -#: ../../mod/like.php:351 ../../mod/tagger.php:47 -msgid "event" +#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 +msgid "Chatrooms" msgstr "" -#: ../../include/text.php:1890 ../../include/diaspora.php:2119 -#: ../../include/conversation.php:148 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -msgid "status" +#: ../../include/conversation.php:1646 ../../include/apps.php:129 +#: ../../include/nav.php:109 +msgid "Bookmarks" msgstr "" -#: ../../include/text.php:1892 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" +#: ../../include/conversation.php:1649 +msgid "Saved Bookmarks" msgstr "" -#: ../../include/text.php:1897 -msgid "activity" +#: ../../include/conversation.php:1656 ../../include/apps.php:136 +#: ../../include/nav.php:113 ../../mod/webpages.php:178 +msgid "Webpages" msgstr "" -#: ../../include/text.php:2192 -msgid "Design Tools" +#: ../../include/conversation.php:1659 +msgid "Manage Webpages" msgstr "" -#: ../../include/text.php:2195 ../../mod/blocks.php:147 -msgid "Blocks" +#: ../../include/conversation.php:1688 ../../include/ItemObject.php:175 +#: ../../include/ItemObject.php:187 ../../mod/photos.php:1015 +#: ../../mod/photos.php:1027 +msgid "View all" msgstr "" -#: ../../include/text.php:2196 ../../mod/menu.php:101 -msgid "Menus" -msgstr "" +#: ../../include/conversation.php:1712 ../../include/taxonomy.php:396 +#: ../../include/identity.php:1243 ../../include/ItemObject.php:179 +#: ../../mod/photos.php:1019 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:2197 ../../mod/layouts.php:174 -msgid "Layouts" -msgstr "" +#: ../../include/conversation.php:1715 ../../include/ItemObject.php:184 +#: ../../mod/photos.php:1024 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:2198 -msgid "Pages" -msgstr "" +#: ../../include/conversation.php:1718 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" -#: ../../include/text.php:2549 ../../include/RedDAV/RedBrowser.php:131 -msgid "Collection" -msgstr "" +#: ../../include/conversation.php:1721 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" -#: ../../include/RedDAV/RedBrowser.php:107 -#: ../../include/RedDAV/RedBrowser.php:265 -msgid "parent" -msgstr "" +#: ../../include/conversation.php:1724 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" -#: ../../include/RedDAV/RedBrowser.php:134 -msgid "Principal" -msgstr "" +#: ../../include/conversation.php:1727 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" -#: ../../include/RedDAV/RedBrowser.php:137 -msgid "Addressbook" -msgstr "" +#: ../../include/conversation.php:1730 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" -#: ../../include/RedDAV/RedBrowser.php:140 -msgid "Calendar" -msgstr "" +#: ../../include/conversation.php:1733 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" -#: ../../include/RedDAV/RedBrowser.php:143 -msgid "Schedule Inbox" +#: ../../include/menu.php:107 ../../include/apps.php:254 +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/RedDAV/RedBrowser.php:266 ../../include/ItemObject.php:100 +#: ../../mod/menu.php:106 ../../mod/layouts.php:183 +#: ../../mod/editblock.php:134 ../../mod/editlayout.php:133 +#: ../../mod/editpost.php:106 ../../mod/editwebpage.php:178 +#: ../../mod/thing.php:255 ../../mod/connections.php:242 +#: ../../mod/connections.php:255 ../../mod/connections.php:274 +#: ../../mod/settings.php:650 ../../mod/blocks.php:153 +#: ../../mod/webpages.php:181 +msgid "Edit" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:146 -msgid "Schedule Outbox" +#: ../../include/dir_fns.php:126 +msgid "Directory Options" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1030 -#: ../../include/apps.php:336 ../../include/apps.php:387 -#: ../../mod/photos.php:693 ../../mod/photos.php:1131 -msgid "Unknown" +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:227 -#, php-format -msgid "%1$s used" +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../mod/mitem.php:159 +#: ../../mod/mitem.php:160 ../../mod/mitem.php:232 ../../mod/mitem.php:233 +#: ../../mod/menu.php:94 ../../mod/menu.php:151 ../../mod/admin.php:428 +#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 +#: ../../mod/api.php:106 ../../mod/removeme.php:60 ../../mod/connedit.php:647 +#: ../../mod/connedit.php:675 ../../mod/settings.php:579 +#: ../../mod/photos.php:568 ../../boot.php:1554 +msgid "No" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:232 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../mod/mitem.php:159 +#: ../../mod/mitem.php:160 ../../mod/mitem.php:232 ../../mod/mitem.php:233 +#: ../../mod/menu.php:94 ../../mod/menu.php:151 ../../mod/admin.php:430 +#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 +#: ../../mod/api.php:105 ../../mod/removeme.php:60 ../../mod/settings.php:579 +#: ../../mod/photos.php:568 ../../boot.php:1554 +msgid "Yes" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 -#: ../../include/conversation.php:1620 ../../include/apps.php:135 -#: ../../mod/fbrowser.php:114 -msgid "Files" +#: ../../include/dir_fns.php:129 +msgid "Public Forums Only" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Total" +#: ../../include/dir_fns.php:130 +msgid "This Website Only" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:255 -msgid "Shared" +#: ../../include/security.php:349 +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 "" -#: ../../include/RedDAV/RedBrowser.php:256 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/webpages.php:180 -#: ../../mod/blocks.php:152 ../../mod/menu.php:112 -#: ../../mod/new_channel.php:121 ../../mod/layouts.php:175 -msgid "Create" +#: ../../include/bbcode.php:122 ../../include/bbcode.php:768 +#: ../../include/bbcode.php:771 ../../include/bbcode.php:776 +#: ../../include/bbcode.php:779 ../../include/bbcode.php:782 +#: ../../include/bbcode.php:785 ../../include/bbcode.php:790 +#: ../../include/bbcode.php:793 ../../include/bbcode.php:798 +#: ../../include/bbcode.php:801 ../../include/bbcode.php:804 +#: ../../include/bbcode.php:807 +msgid "Image/photo" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:718 ../../mod/photos.php:1248 -msgid "Upload" +#: ../../include/bbcode.php:161 ../../include/bbcode.php:818 +msgid "Encrypted content" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:994 -#: ../../mod/settings.php:590 ../../mod/settings.php:616 -#: ../../mod/sharedwithme.php:95 -msgid "Name" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " msgstr "" -#: ../../include/RedDAV/RedBrowser.php:262 -msgid "Type" +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." msgstr "" -#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 -msgid "Size" +#: ../../include/bbcode.php:192 ../../mod/impel.php:37 +msgid "webpage" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 -msgid "Last Modified" +#: ../../include/bbcode.php:195 ../../mod/impel.php:47 +msgid "layout" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:120 -#: ../../include/conversation.php:671 ../../include/apps.php:255 -#: ../../mod/webpages.php:183 ../../mod/thing.php:256 ../../mod/group.php:176 -#: ../../mod/blocks.php:155 ../../mod/photos.php:1062 -#: ../../mod/editlayout.php:178 ../../mod/editwebpage.php:225 -#: ../../mod/editblock.php:180 ../../mod/admin.php:826 ../../mod/admin.php:988 -#: ../../mod/settings.php:651 ../../mod/connedit.php:563 -msgid "Delete" +#: ../../include/bbcode.php:198 ../../mod/impel.php:42 +msgid "block" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:302 -msgid "Create new folder" +#: ../../include/bbcode.php:201 ../../mod/impel.php:54 +msgid "menu" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Upload file" +#: ../../include/bbcode.php:215 +msgid "QR code" msgstr "" -#: ../../include/bookmarks.php:35 +#: ../../include/bbcode.php:266 #, php-format -msgid "%1$s's bookmarks" +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/network.php:635 -msgid "view full size" +#: ../../include/bbcode.php:268 ../../mod/tagger.php:51 +msgid "post" msgstr "" -#: ../../include/network.php:1585 ../../include/enotify.php:58 -msgid "$Projectname Notification" +#: ../../include/bbcode.php:518 +msgid "Different viewers will see this text differently" msgstr "" -#: ../../include/network.php:1586 ../../include/enotify.php:59 -#: ../../include/diaspora.php:2522 ../../include/diaspora.php:2533 -#: ../../mod/p.php:46 -msgid "$projectname" +#: ../../include/bbcode.php:729 +msgid "$1 spoiler" msgstr "" -#: ../../include/network.php:1588 ../../include/enotify.php:61 -msgid "Thank You," +#: ../../include/bbcode.php:756 +msgid "$1 wrote:" msgstr "" -#: ../../include/network.php:1590 ../../include/enotify.php:63 -#, php-format -msgid "%s Administrator" +#: ../../include/attach.php:137 ../../include/attach.php:184 +#: ../../include/attach.php:247 ../../include/attach.php:261 +#: ../../include/attach.php:305 ../../include/attach.php:319 +#: ../../include/attach.php:350 ../../include/attach.php:546 +#: ../../include/attach.php:618 ../../include/items.php:4359 +#: ../../include/chat.php:131 ../../include/photos.php:26 ../../index.php:182 +#: ../../index.php:393 ../../mod/mitem.php:111 ../../mod/page.php:31 +#: ../../mod/page.php:86 ../../mod/menu.php:72 ../../mod/locs.php:77 +#: ../../mod/poke.php:128 ../../mod/layouts.php:69 ../../mod/layouts.php:76 +#: ../../mod/layouts.php:87 ../../mod/pdledit.php:21 ../../mod/channel.php:100 +#: ../../mod/channel.php:219 ../../mod/channel.php:262 +#: ../../mod/editblock.php:65 ../../mod/invite.php:13 ../../mod/invite.php:104 +#: ../../mod/notifications.php:66 ../../mod/appman.php:66 +#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/viewsrc.php:14 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/mood.php:111 +#: ../../mod/manage.php:6 ../../mod/regmod.php:17 ../../mod/id.php:71 +#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 +#: ../../mod/achievements.php:30 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/mail.php:114 ../../mod/group.php:9 ../../mod/editlayout.php:63 +#: ../../mod/editlayout.php:87 ../../mod/register.php:72 +#: ../../mod/common.php:35 ../../mod/authtest.php:13 ../../mod/editpost.php:13 +#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 +#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 +#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 +#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 +#: ../../mod/bookmarks.php:46 ../../mod/fsuggest.php:78 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/events.php:249 +#: ../../mod/connedit.php:348 ../../mod/profile_photo.php:264 +#: ../../mod/profile_photo.php:277 ../../mod/sharedwithme.php:7 +#: ../../mod/thing.php:269 ../../mod/thing.php:284 ../../mod/thing.php:318 +#: ../../mod/connections.php:29 ../../mod/rate.php:110 +#: ../../mod/service_limits.php:7 ../../mod/settings.php:570 +#: ../../mod/suggest.php:26 ../../mod/message.php:16 ../../mod/item.php:206 +#: ../../mod/item.php:214 ../../mod/item.php:1005 ../../mod/setup.php:223 +#: ../../mod/photos.php:69 ../../mod/network.php:12 ../../mod/profiles.php:188 +#: ../../mod/profiles.php:576 ../../mod/blocks.php:69 ../../mod/blocks.php:76 +#: ../../mod/sources.php:66 ../../mod/webpages.php:69 ../../mod/like.php:178 +msgid "Permission denied." msgstr "" -#: ../../include/network.php:1646 -msgid "No Subject" +#: ../../include/attach.php:242 ../../include/attach.php:300 +msgid "Item was not found." msgstr "" -#: ../../include/features.php:38 -msgid "General Features" +#: ../../include/attach.php:363 +msgid "No source file." msgstr "" -#: ../../include/features.php:40 -msgid "Content Expiration" +#: ../../include/attach.php:381 +msgid "Cannot locate file to replace" msgstr "" -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" +#: ../../include/attach.php:399 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/features.php:41 -msgid "Multiple Profiles" +#: ../../include/attach.php:410 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" +#: ../../include/attach.php:422 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/features.php:42 -msgid "Advanced Profiles" +#: ../../include/attach.php:505 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" +#: ../../include/attach.php:517 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/features.php:43 -msgid "Profile Import/Export" +#: ../../include/attach.php:561 ../../include/attach.php:578 +msgid "Path not available." msgstr "" -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" +#: ../../include/attach.php:623 +msgid "Empty pathname" msgstr "" -#: ../../include/features.php:44 -msgid "Web Pages" +#: ../../include/attach.php:639 +msgid "duplicate filename or path" msgstr "" -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" +#: ../../include/attach.php:663 +msgid "Path not found." msgstr "" -#: ../../include/features.php:45 -msgid "Private Notes" +#: ../../include/attach.php:714 +msgid "mkdir failed." msgstr "" -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" +#: ../../include/attach.php:718 +msgid "database storage failed." msgstr "" -#: ../../include/features.php:46 -msgid "Navigation Channel Select" +#: ../../include/photo/photo_driver.php:687 ../../mod/profile_photo.php:143 +#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 +#: ../../mod/photos.php:92 ../../mod/photos.php:637 +msgid "Profile Photos" msgstr "" -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" msgstr "" -#: ../../include/features.php:47 -msgid "Photo Location" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" msgstr "" -#: ../../include/features.php:47 -msgid "If location data is available on uploaded photos, link this to a map." +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" msgstr "" -#: ../../include/features.php:49 -msgid "Expert Mode" +#: ../../include/contact_selectors.php:59 +msgid "Daily" msgstr "" -#: ../../include/features.php:49 -msgid "Enable Expert Mode to provide advanced configuration options" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" msgstr "" -#: ../../include/features.php:50 -msgid "Premium Channel" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" msgstr "" -#: ../../include/features.php:50 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" +#: ../../include/contact_selectors.php:76 +msgid "Friendica" msgstr "" -#: ../../include/features.php:55 -msgid "Post Composition Features" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" msgstr "" -#: ../../include/features.php:57 -msgid "Use Markdown" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" msgstr "" -#: ../../include/features.php:57 -msgid "Allow use of \"Markdown\" to format posts" +#: ../../include/contact_selectors.php:79 ../../mod/id.php:15 +#: ../../mod/id.php:16 ../../mod/admin.php:822 ../../mod/admin.php:831 +#: ../../boot.php:1552 +msgid "Email" msgstr "" -#: ../../include/features.php:58 -msgid "Large Photos" +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" msgstr "" -#: ../../include/features.php:58 -msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" +#: ../../include/contact_selectors.php:81 +msgid "Facebook" msgstr "" -#: ../../include/features.php:59 ../../include/widgets.php:548 -#: ../../mod/sources.php:88 -msgid "Channel Sources" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" msgstr "" -#: ../../include/features.php:59 -msgid "Automatically import channel content from other channels or feeds" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" msgstr "" -#: ../../include/features.php:60 -msgid "Even More Encryption" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" msgstr "" -#: ../../include/features.php:60 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" msgstr "" -#: ../../include/features.php:61 -msgid "Enable voting tools" +#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 +msgid "Tags" msgstr "" -#: ../../include/features.php:61 -msgid "Provide a class of post which others can vote on" +#: ../../include/taxonomy.php:264 ../../include/contact_widgets.php:92 +#: ../../include/widgets.php:35 +msgid "Categories" msgstr "" -#: ../../include/features.php:67 -msgid "Network and Stream Filtering" +#: ../../include/taxonomy.php:287 +msgid "Keywords" msgstr "" -#: ../../include/features.php:68 -msgid "Search by Date" +#: ../../include/taxonomy.php:308 +msgid "have" msgstr "" -#: ../../include/features.php:68 -msgid "Ability to select posts by date ranges" +#: ../../include/taxonomy.php:308 +msgid "has" msgstr "" -#: ../../include/features.php:69 -msgid "Collections Filter" +#: ../../include/taxonomy.php:309 +msgid "want" msgstr "" -#: ../../include/features.php:69 -msgid "Enable widget to display Network posts only from selected collections" +#: ../../include/taxonomy.php:309 +msgid "wants" msgstr "" -#: ../../include/features.php:70 ../../include/widgets.php:274 -msgid "Saved Searches" +#: ../../include/taxonomy.php:310 ../../include/ItemObject.php:254 +msgid "like" msgstr "" -#: ../../include/features.php:70 -msgid "Save search terms for re-use" +#: ../../include/taxonomy.php:310 +msgid "likes" msgstr "" -#: ../../include/features.php:71 -msgid "Network Personal Tab" +#: ../../include/taxonomy.php:311 ../../include/ItemObject.php:255 +msgid "dislike" msgstr "" -#: ../../include/features.php:71 -msgid "Enable tab to display only Network posts that you've interacted on" +#: ../../include/taxonomy.php:311 +msgid "dislikes" msgstr "" -#: ../../include/features.php:72 -msgid "Network New Tab" +#: ../../include/zot.php:684 +msgid "Invalid data packet" msgstr "" -#: ../../include/features.php:72 -msgid "Enable tab to display all new Network activity" +#: ../../include/zot.php:700 +msgid "Unable to verify channel signature" msgstr "" -#: ../../include/features.php:73 -msgid "Affinity Tool" +#: ../../include/zot.php:2208 +#, php-format +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/features.php:73 -msgid "Filter stream activity by depth of relationships" -msgstr "" +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" -#: ../../include/features.php:74 -msgid "Connection Filtering" +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:457 +msgid "Advanced" msgstr "" -#: ../../include/features.php:74 -msgid "Filter incoming posts from connections based on keywords/content" +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" msgstr "" -#: ../../include/features.php:75 -msgid "Suggest Channels" +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" msgstr "" -#: ../../include/features.php:75 -msgid "Show channel suggestions" +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" msgstr "" -#: ../../include/features.php:80 -msgid "Post/Comment Tools" +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/features.php:81 -msgid "Tagging" +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:273 +#: ../../mod/directory.php:379 ../../mod/directory.php:384 +msgid "Find" msgstr "" -#: ../../include/features.php:81 -msgid "Ability to tag existing posts" +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:60 +#: ../../mod/directory.php:383 +msgid "Channel Suggestions" msgstr "" -#: ../../include/features.php:82 -msgid "Post Categories" +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" msgstr "" -#: ../../include/features.php:82 -msgid "Add categories to your posts" +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" msgstr "" -#: ../../include/features.php:83 ../../include/widgets.php:304 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" msgstr "" +#: ../../include/contact_widgets.php:57 ../../include/widgets.php:304 #: ../../include/features.php:83 -msgid "Ability to file posts under folders" +msgid "Saved Folders" msgstr "" -#: ../../include/features.php:84 -msgid "Dislike Posts" +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 +#: ../../include/widgets.php:307 +msgid "Everything" msgstr "" -#: ../../include/features.php:84 -msgid "Ability to dislike posts/comments" +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:130 +msgid "show more" msgstr "" -#: ../../include/features.php:85 -msgid "Star Posts" +#: ../../include/notify.php:23 +msgid "created a new post" msgstr "" -#: ../../include/features.php:85 -msgid "Ability to mark special posts with a star indicator" +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" msgstr "" -#: ../../include/features.php:86 -msgid "Tag Cloud" +#: ../../include/items.php:413 ../../index.php:392 ../../mod/profperm.php:23 +#: ../../mod/group.php:68 ../../mod/subthread.php:49 ../../mod/like.php:273 +msgid "Permission denied" msgstr "" -#: ../../include/features.php:86 -msgid "Provide a personal tag cloud on your channel page" +#: ../../include/items.php:1101 ../../include/items.php:1147 +msgid "(Unknown)" msgstr "" -#: ../../include/widgets.php:35 ../../include/taxonomy.php:264 -#: ../../include/contact_widgets.php:92 -msgid "Categories" +#: ../../include/items.php:1373 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:36 -msgid "Apps" +#: ../../include/items.php:1375 +msgid "Visible to you only." msgstr "" -#: ../../include/widgets.php:92 -msgid "System" +#: ../../include/items.php:1377 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/widgets.php:94 ../../include/conversation.php:1515 -msgid "Personal" +#: ../../include/items.php:1379 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/widgets.php:95 -msgid "Create Personal App" +#: ../../include/items.php:1381 +#, php-format +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/widgets.php:96 -msgid "Edit Personal App" +#: ../../include/items.php:1383 +msgid "Visible to all connections." msgstr "" -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../include/conversation.php:956 -#: ../../include/identity.php:933 ../../mod/directory.php:316 -#: ../../mod/match.php:64 ../../mod/suggest.php:52 -msgid "Connect" +#: ../../include/items.php:1385 +msgid "Visible to approved connections." msgstr "" -#: ../../include/widgets.php:138 ../../mod/suggest.php:54 -msgid "Ignore/Hide" +#: ../../include/items.php:1387 +msgid "Visible to specific connections." msgstr "" -#: ../../include/widgets.php:143 ../../mod/connections.php:128 -msgid "Suggestions" +#: ../../include/items.php:4286 ../../mod/viewsrc.php:20 +#: ../../mod/display.php:36 ../../mod/admin.php:167 ../../mod/admin.php:1025 +#: ../../mod/admin.php:1225 ../../mod/filestorage.php:27 +#: ../../mod/thing.php:74 +msgid "Item not found." msgstr "" -#: ../../include/widgets.php:144 -msgid "See more..." +#: ../../include/items.php:4763 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." msgstr "" -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +#: ../../include/items.php:4779 +msgid "Collection is empty." msgstr "" -#: ../../include/widgets.php:172 -msgid "Add New Connection" +#: ../../include/items.php:4786 +#, php-format +msgid "Collection: %s" msgstr "" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" +#: ../../include/items.php:4796 ../../mod/connedit.php:674 +#, php-format +msgid "Connection: %s" msgstr "" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" +#: ../../include/items.php:4798 +msgid "Connection not found." msgstr "" -#: ../../include/widgets.php:190 -msgid "Notes" +#: ../../include/chat.php:23 +msgid "Missing room name" msgstr "" -#: ../../include/widgets.php:266 -msgid "Remove term" +#: ../../include/chat.php:32 +msgid "Duplicate room name" msgstr "" -#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" +#: ../../include/chat.php:82 ../../include/chat.php:90 +msgid "Invalid room specifier." msgstr "" -#: ../../include/widgets.php:349 -msgid "Archives" +#: ../../include/chat.php:120 +msgid "Room not found." msgstr "" -#: ../../include/widgets.php:429 ../../mod/connedit.php:583 -msgid "Me" +#: ../../include/chat.php:141 +msgid "Room is full" msgstr "" -#: ../../include/widgets.php:430 ../../mod/connedit.php:584 -msgid "Family" +#: ../../include/group.php:26 +msgid "" +"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." msgstr "" -#: ../../include/widgets.php:431 ../../include/identity.php:394 -#: ../../include/identity.php:395 ../../include/identity.php:402 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:345 -#: ../../mod/settings.php:349 ../../mod/settings.php:350 -#: ../../mod/settings.php:353 ../../mod/settings.php:364 -#: ../../mod/connedit.php:585 -msgid "Friends" +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" msgstr "" -#: ../../include/widgets.php:432 ../../mod/connedit.php:586 -msgid "Acquaintances" +#: ../../include/group.php:254 ../../mod/admin.php:831 +msgid "All Channels" msgstr "" -#: ../../include/widgets.php:433 ../../mod/connections.php:91 -#: ../../mod/connections.php:106 ../../mod/connedit.php:587 -msgid "All" +#: ../../include/group.php:276 +msgid "edit" msgstr "" -#: ../../include/widgets.php:452 -msgid "Refresh" +#: ../../include/group.php:298 +msgid "Collections" msgstr "" -#: ../../include/widgets.php:487 -msgid "Account settings" +#: ../../include/group.php:299 +msgid "Edit collection" msgstr "" -#: ../../include/widgets.php:493 -msgid "Channel settings" +#: ../../include/group.php:300 +msgid "Add new collection" msgstr "" -#: ../../include/widgets.php:499 -msgid "Additional features" +#: ../../include/group.php:301 +msgid "Channels not in any collection" msgstr "" -#: ../../include/widgets.php:505 -msgid "Feature/Addon settings" +#: ../../include/group.php:303 ../../include/widgets.php:275 +msgid "add" msgstr "" -#: ../../include/widgets.php:511 -msgid "Display settings" +#: ../../include/apps.php:128 +msgid "Site Admin" msgstr "" -#: ../../include/widgets.php:517 -msgid "Connected apps" +#: ../../include/apps.php:130 +msgid "Address Book" msgstr "" -#: ../../include/widgets.php:523 -msgid "Export channel" +#: ../../include/apps.php:131 ../../include/nav.php:117 ../../boot.php:1550 +msgid "Login" msgstr "" -#: ../../include/widgets.php:532 ../../mod/connedit.php:674 -msgid "Connection Default Permissions" +#: ../../include/apps.php:132 ../../include/nav.php:206 +#: ../../mod/manage.php:166 +msgid "Channel Manager" msgstr "" -#: ../../include/widgets.php:540 -msgid "Premium Channel Settings" +#: ../../include/apps.php:133 ../../include/nav.php:180 +msgid "Matrix" msgstr "" -#: ../../include/widgets.php:556 ../../include/nav.php:208 -#: ../../include/apps.php:134 ../../mod/admin.php:1079 -#: ../../mod/admin.php:1279 +#: ../../include/apps.php:134 ../../include/widgets.php:556 +#: ../../include/nav.php:208 ../../mod/admin.php:1079 ../../mod/admin.php:1279 msgid "Settings" msgstr "" -#: ../../include/widgets.php:569 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" +#: ../../include/apps.php:137 ../../include/nav.php:183 +msgid "Channel Home" msgstr "" -#: ../../include/widgets.php:572 -msgid "Check Mail" +#: ../../include/apps.php:138 ../../include/identity.php:1217 +#: ../../include/identity.php:1334 ../../mod/profperm.php:112 +msgid "Profile" msgstr "" -#: ../../include/widgets.php:577 ../../include/nav.php:199 -msgid "New Message" +#: ../../include/apps.php:140 ../../include/nav.php:202 +#: ../../mod/events.php:503 +msgid "Events" msgstr "" -#: ../../include/widgets.php:652 -msgid "Chat Rooms" +#: ../../include/apps.php:141 ../../include/nav.php:168 +msgid "Directory" msgstr "" -#: ../../include/widgets.php:672 -msgid "Bookmarked Chatrooms" +#: ../../include/apps.php:142 ../../include/nav.php:160 +#: ../../mod/layouts.php:176 ../../mod/help.php:67 ../../mod/help.php:72 +msgid "Help" msgstr "" -#: ../../include/widgets.php:692 -msgid "Suggested Chatrooms" +#: ../../include/apps.php:143 ../../include/nav.php:194 +msgid "Mail" msgstr "" -#: ../../include/widgets.php:819 ../../include/widgets.php:877 -msgid "photo/image" +#: ../../include/apps.php:144 ../../mod/mood.php:130 +msgid "Mood" msgstr "" -#: ../../include/widgets.php:972 ../../include/widgets.php:974 -msgid "Rate Me" +#: ../../include/apps.php:146 ../../include/nav.php:103 +msgid "Chat" msgstr "" -#: ../../include/widgets.php:978 -msgid "View Ratings" +#: ../../include/apps.php:147 ../../include/text.php:914 +#: ../../include/text.php:926 ../../include/nav.php:165 +#: ../../mod/search.php:38 +msgid "Search" msgstr "" -#: ../../include/widgets.php:989 -msgid "Public Hubs" +#: ../../include/apps.php:148 +msgid "Probe" msgstr "" -#: ../../include/event.php:22 ../../include/bb2diaspora.php:459 -msgid "l F d, Y \\@ g:i A" +#: ../../include/apps.php:149 +msgid "Suggest" msgstr "" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:465 -msgid "Starts:" +#: ../../include/apps.php:150 +msgid "Random Channel" msgstr "" -#: ../../include/event.php:40 ../../include/bb2diaspora.php:473 -msgid "Finishes:" +#: ../../include/apps.php:151 +msgid "Invite" msgstr "" -#: ../../include/event.php:50 ../../include/bb2diaspora.php:481 -#: ../../include/identity.php:984 ../../mod/directory.php:302 -#: ../../mod/events.php:684 -msgid "Location:" +#: ../../include/apps.php:152 +msgid "Features" msgstr "" -#: ../../include/event.php:549 -msgid "This event has been added to your calendar." +#: ../../include/apps.php:153 ../../mod/id.php:28 +msgid "Language" msgstr "" -#: ../../include/enotify.php:96 -#, php-format -msgid "%s <!item_type!>" +#: ../../include/apps.php:154 +msgid "Post" msgstr "" -#: ../../include/enotify.php:100 -#, php-format -msgid "[Red:Notify] New mail received at %s" +#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 +#: ../../mod/id.php:19 +msgid "Profile Photo" msgstr "" -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." +#: ../../include/apps.php:247 ../../mod/settings.php:84 +#: ../../mod/settings.php:614 +msgid "Update" msgstr "" -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." +#: ../../include/apps.php:247 +msgid "Install" msgstr "" -#: ../../include/enotify.php:103 -msgid "a private message" +#: ../../include/apps.php:252 +msgid "Purchase" msgstr "" -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." +#: ../../include/account.php:27 +msgid "Not a valid email address" msgstr "" -#: ../../include/enotify.php:158 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +#: ../../include/account.php:29 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/enotify.php:166 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +#: ../../include/account.php:35 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/enotify.php:175 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +#: ../../include/account.php:67 +msgid "An invitation is required." msgstr "" -#: ../../include/enotify.php:186 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +#: ../../include/account.php:71 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/enotify.php:187 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." +#: ../../include/account.php:121 +msgid "Please enter the required information." msgstr "" -#: ../../include/enotify.php:190 ../../include/enotify.php:205 -#: ../../include/enotify.php:231 ../../include/enotify.php:249 -#: ../../include/enotify.php:263 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." +#: ../../include/account.php:188 +msgid "Failed to store account information." msgstr "" -#: ../../include/enotify.php:196 +#: ../../include/account.php:246 #, php-format -msgid "[Red:Notify] %s posted to your profile wall" +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/enotify.php:198 +#: ../../include/account.php:312 #, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgid "Registration request at %s" msgstr "" -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +#: ../../include/account.php:314 ../../include/account.php:341 +#: ../../include/account.php:401 ../../include/network.php:1632 +msgid "Administrator" msgstr "" -#: ../../include/enotify.php:224 -#, php-format -msgid "[Red:Notify] %s tagged you" +#: ../../include/account.php:336 +msgid "your registration password" msgstr "" -#: ../../include/enotify.php:225 +#: ../../include/account.php:339 ../../include/account.php:399 #, php-format -msgid "%1$s, %2$s tagged you at %3$s" +msgid "Registration details for %s" msgstr "" -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +#: ../../include/account.php:408 +msgid "Account approved." msgstr "" -#: ../../include/enotify.php:238 +#: ../../include/account.php:447 #, php-format -msgid "[Red:Notify] %1$s poked you" +msgid "Registration revoked for %s" msgstr "" -#: ../../include/enotify.php:239 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" +#: ../../include/account.php:492 +msgid "Account verified. Please login." msgstr "" -#: ../../include/enotify.php:240 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +#: ../../include/account.php:705 ../../include/account.php:707 +msgid "Click here to upgrade." msgstr "" -#: ../../include/enotify.php:256 -#, php-format -msgid "[Red:Notify] %s tagged your post" +#: ../../include/account.php:713 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" +#: ../../include/account.php:718 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +#: ../../include/Import/import_diaspora.php:17 +msgid "No username found in import file." msgstr "" -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" +#: ../../include/Import/import_diaspora.php:42 ../../mod/import.php:156 +msgid "Unable to create a unique channel address. Import failed." msgstr "" -#: ../../include/enotify.php:271 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +#: ../../include/Import/import_diaspora.php:140 ../../mod/import.php:562 +msgid "Import completed." msgstr "" -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +#: ../../include/bb2diaspora.php:373 +msgid "Attachments:" msgstr "" -#: ../../include/enotify.php:276 ../../include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" +#: ../../include/bb2diaspora.php:459 ../../include/event.php:22 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/enotify.php:278 -#, php-format -msgid "Please visit %s to approve or reject the connection request." +#: ../../include/bb2diaspora.php:461 +msgid "$Projectname event notification:" msgstr "" -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" +#: ../../include/bb2diaspora.php:465 ../../include/event.php:30 +msgid "Starts:" msgstr "" -#: ../../include/enotify.php:286 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +#: ../../include/bb2diaspora.php:473 ../../include/event.php:40 +msgid "Finishes:" msgstr "" -#: ../../include/enotify.php:287 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." +#: ../../include/bb2diaspora.php:481 ../../include/event.php:50 +#: ../../include/identity.php:984 ../../mod/events.php:684 +#: ../../mod/directory.php:302 +msgid "Location:" msgstr "" -#: ../../include/enotify.php:293 -msgid "Name:" +#: ../../include/activities.php:39 +msgid " and " msgstr "" -#: ../../include/enotify.php:294 -msgid "Photo:" +#: ../../include/activities.php:47 +msgid "public profile" msgstr "" -#: ../../include/enotify.php:297 +#: ../../include/activities.php:56 #, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../include/enotify.php:508 -msgid "[Red:Notify]" -msgstr "" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "" - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../include/message.php:200 -msgid "Stored post could not be verified." +#: ../../include/activities.php:57 +#, php-format +msgid "Visit %1$s's %2$s" msgstr "" -#: ../../include/diaspora.php:2148 ../../include/conversation.php:164 -#: ../../mod/like.php:397 +#: ../../include/activities.php:60 #, php-format -msgid "%1$s likes %2$s's %3$s" +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/diaspora.php:2494 -msgid "Please choose" +#: ../../include/Contact.php:124 +msgid "New window" msgstr "" -#: ../../include/diaspora.php:2496 -msgid "Agree" +#: ../../include/Contact.php:125 +msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/diaspora.php:2498 -msgid "Disagree" +#: ../../include/Contact.php:212 +#, php-format +msgid "User '%s' deleted" msgstr "" -#: ../../include/diaspora.php:2500 -msgid "Abstain" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" msgstr "" #: ../../include/follow.php:28 @@ -1812,1471 +1641,964 @@ msgstr "" msgid "Cannot connect to yourself." msgstr "" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:678 -msgid "Private Message" -msgstr "" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:670 -msgid "Select" -msgstr "" - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "" - -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "" - -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "" - -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "" - -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "" - -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "" - -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "" - -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1688 ../../mod/photos.php:1015 -#: ../../mod/photos.php:1027 -msgid "View all" -msgstr "" - -#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396 -#: ../../include/conversation.php:1712 ../../include/identity.php:1243 -#: ../../mod/photos.php:1019 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1715 -#: ../../mod/photos.php:1024 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "" - -#: ../../include/ItemObject.php:227 ../../include/conversation.php:685 -msgid "Message signature validated" -msgstr "" - -#: ../../include/ItemObject.php:228 ../../include/conversation.php:686 -msgid "Message signature incorrect" -msgstr "" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:959 -msgid "I like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310 -msgid "like" -msgstr "" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:960 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 -msgid "dislike" -msgstr "" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "" - -#: ../../include/ItemObject.php:276 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 -#, php-format -msgid "View %s's profile - %s" -msgstr "" - -#: ../../include/ItemObject.php:298 -msgid "to" -msgstr "" - -#: ../../include/ItemObject.php:299 -msgid "via" -msgstr "" - -#: ../../include/ItemObject.php:300 -msgid "Wall-to-Wall" -msgstr "" - -#: ../../include/ItemObject.php:301 -msgid "via Wall-To-Wall:" -msgstr "" - -#: ../../include/ItemObject.php:312 ../../include/conversation.php:727 -#, php-format -msgid "from %s" -msgstr "" - -#: ../../include/ItemObject.php:315 ../../include/conversation.php:730 -#, php-format -msgid "last edited: %s" -msgstr "" - -#: ../../include/ItemObject.php:316 ../../include/conversation.php:731 +#: ../../include/dba/dba_driver.php:141 #, php-format -msgid "Expires: %s" -msgstr "" - -#: ../../include/ItemObject.php:337 -msgid "Save Bookmarks" -msgstr "" - -#: ../../include/ItemObject.php:338 -msgid "Add to Calendar" -msgstr "" - -#: ../../include/ItemObject.php:347 -msgid "Mark all seen" -msgstr "" - -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1145 -msgctxt "noun" -msgid "Likes" -msgstr "" - -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1146 -msgctxt "noun" -msgid "Dislikes" -msgstr "" - -#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1151 -msgid "Close" -msgstr "" - -#: ../../include/ItemObject.php:364 ../../include/conversation.php:748 -#: ../../include/conversation.php:1220 ../../mod/editpost.php:123 -#: ../../mod/photos.php:962 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:192 ../../mod/editblock.php:149 -#: ../../mod/mail.php:241 ../../mod/mail.php:356 -msgid "Please wait" -msgstr "" - -#: ../../include/ItemObject.php:665 ../../mod/photos.php:978 -#: ../../mod/photos.php:1096 -msgid "This is you" -msgstr "" - -#: ../../include/ItemObject.php:669 ../../include/conversation.php:1192 -#: ../../mod/editpost.php:107 ../../mod/editlayout.php:134 -#: ../../mod/editwebpage.php:179 ../../mod/editblock.php:135 -msgid "Bold" -msgstr "" - -#: ../../include/ItemObject.php:670 ../../include/conversation.php:1193 -#: ../../mod/editpost.php:108 ../../mod/editlayout.php:135 -#: ../../mod/editwebpage.php:180 ../../mod/editblock.php:136 -msgid "Italic" -msgstr "" - -#: ../../include/ItemObject.php:671 ../../include/conversation.php:1194 -#: ../../mod/editpost.php:109 ../../mod/editlayout.php:136 -#: ../../mod/editwebpage.php:181 ../../mod/editblock.php:137 -msgid "Underline" +msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/ItemObject.php:672 ../../include/conversation.php:1195 -#: ../../mod/editpost.php:110 ../../mod/editlayout.php:137 -#: ../../mod/editwebpage.php:182 ../../mod/editblock.php:138 -msgid "Quote" +#: ../../include/api.php:1267 +msgid "Public Timeline" msgstr "" -#: ../../include/ItemObject.php:673 ../../include/conversation.php:1196 -#: ../../mod/editpost.php:111 ../../mod/editlayout.php:138 -#: ../../mod/editwebpage.php:183 ../../mod/editblock.php:139 -msgid "Code" +#: ../../include/widgets.php:91 ../../include/nav.php:163 +#: ../../mod/apps.php:36 +msgid "Apps" msgstr "" -#: ../../include/ItemObject.php:674 -msgid "Image" +#: ../../include/widgets.php:92 +msgid "System" msgstr "" -#: ../../include/ItemObject.php:675 -msgid "Insert Link" +#: ../../include/widgets.php:95 +msgid "Create Personal App" msgstr "" -#: ../../include/ItemObject.php:676 -msgid "Video" +#: ../../include/widgets.php:96 +msgid "Edit Personal App" msgstr "" -#: ../../include/ItemObject.php:680 ../../include/conversation.php:1247 -#: ../../mod/editpost.php:151 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" +#: ../../include/widgets.php:138 ../../mod/suggest.php:54 +msgid "Ignore/Hide" msgstr "" -#: ../../include/Contact.php:124 -msgid "New window" +#: ../../include/widgets.php:143 ../../mod/connections.php:128 +msgid "Suggestions" msgstr "" -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/widgets.php:144 +msgid "See more..." msgstr "" -#: ../../include/Contact.php:212 +#: ../../include/widgets.php:166 #, php-format -msgid "User '%s' deleted" -msgstr "" - -#: ../../include/bb2diaspora.php:373 -msgid "Attachments:" -msgstr "" - -#: ../../include/bb2diaspora.php:461 -msgid "$Projectname event notification:" -msgstr "" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "" - -#: ../../include/nav.php:91 ../../include/conversation.php:953 -#: ../../mod/connedit.php:510 -msgid "View Profile" -msgstr "" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:95 ../../include/identity.php:956 -msgid "Edit Profile" -msgstr "" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "" - -#: ../../include/nav.php:97 ../../include/conversation.php:1611 -#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "" - -#: ../../include/nav.php:109 ../../include/conversation.php:1646 -#: ../../include/apps.php:129 -msgid "Bookmarks" -msgstr "" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "" - -#: ../../include/nav.php:113 ../../include/conversation.php:1656 -#: ../../include/apps.php:136 ../../mod/webpages.php:178 -msgid "Webpages" +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/nav.php:113 -msgid "Your webpages" +#: ../../include/widgets.php:172 +msgid "Add New Connection" msgstr "" -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1550 -msgid "Login" +#: ../../include/widgets.php:173 +msgid "Enter the channel address" msgstr "" -#: ../../include/nav.php:117 -msgid "Sign in" +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" +#: ../../include/widgets.php:190 +msgid "Notes" msgstr "" -#: ../../include/nav.php:137 -msgid "Remote authentication" +#: ../../include/widgets.php:192 ../../include/text.php:915 +#: ../../include/text.php:927 ../../mod/admin.php:1457 +#: ../../mod/admin.php:1477 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 +#: ../../mod/filer.php:50 +msgid "Save" msgstr "" -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" +#: ../../include/widgets.php:266 +msgid "Remove term" msgstr "" -#: ../../include/nav.php:151 -msgid "Home Page" +#: ../../include/widgets.php:274 ../../include/features.php:70 +msgid "Saved Searches" msgstr "" -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526 -msgid "Register" +#: ../../include/widgets.php:349 +msgid "Archives" msgstr "" -#: ../../include/nav.php:155 -msgid "Create an account" +#: ../../include/widgets.php:429 ../../mod/connedit.php:583 +msgid "Me" msgstr "" -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 ../../mod/layouts.php:176 -msgid "Help" +#: ../../include/widgets.php:430 ../../mod/connedit.php:584 +msgid "Family" msgstr "" -#: ../../include/nav.php:160 -msgid "Help and documentation" +#: ../../include/widgets.php:431 ../../include/identity.php:394 +#: ../../include/identity.php:395 ../../include/identity.php:402 +#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:585 +#: ../../mod/settings.php:345 ../../mod/settings.php:349 +#: ../../mod/settings.php:350 ../../mod/settings.php:353 +#: ../../mod/settings.php:364 +msgid "Friends" msgstr "" -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" +#: ../../include/widgets.php:432 ../../mod/connedit.php:586 +msgid "Acquaintances" msgstr "" -#: ../../include/nav.php:165 -msgid "Search site content" +#: ../../include/widgets.php:433 ../../mod/connedit.php:587 +#: ../../mod/connections.php:91 ../../mod/connections.php:106 +msgid "All" msgstr "" -#: ../../include/nav.php:168 ../../include/apps.php:141 -msgid "Directory" +#: ../../include/widgets.php:452 +msgid "Refresh" msgstr "" -#: ../../include/nav.php:168 -msgid "Channel Directory" +#: ../../include/widgets.php:487 +msgid "Account settings" msgstr "" -#: ../../include/nav.php:180 ../../include/apps.php:133 -msgid "Matrix" +#: ../../include/widgets.php:493 +msgid "Channel settings" msgstr "" -#: ../../include/nav.php:180 -msgid "Your matrix" +#: ../../include/widgets.php:499 +msgid "Additional features" msgstr "" -#: ../../include/nav.php:181 -msgid "Mark all matrix notifications seen" +#: ../../include/widgets.php:505 +msgid "Feature/Addon settings" msgstr "" -#: ../../include/nav.php:183 ../../include/apps.php:137 -msgid "Channel Home" +#: ../../include/widgets.php:511 +msgid "Display settings" msgstr "" -#: ../../include/nav.php:183 -msgid "Channel home" +#: ../../include/widgets.php:517 +msgid "Connected apps" msgstr "" -#: ../../include/nav.php:184 -msgid "Mark all channel notifications seen" +#: ../../include/widgets.php:523 +msgid "Export channel" msgstr "" -#: ../../include/nav.php:187 ../../mod/connections.php:267 -msgid "Connections" +#: ../../include/widgets.php:532 ../../mod/connedit.php:674 +msgid "Connection Default Permissions" msgstr "" -#: ../../include/nav.php:190 -msgid "Notices" +#: ../../include/widgets.php:540 +msgid "Premium Channel Settings" msgstr "" -#: ../../include/nav.php:190 -msgid "Notifications" +#: ../../include/widgets.php:548 ../../include/features.php:59 +#: ../../mod/sources.php:88 +msgid "Channel Sources" msgstr "" -#: ../../include/nav.php:191 -msgid "See all notifications" +#: ../../include/widgets.php:569 ../../mod/mail.php:128 +#: ../../mod/message.php:31 +msgid "Messages" msgstr "" -#: ../../include/nav.php:192 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" +#: ../../include/widgets.php:572 +msgid "Check Mail" msgstr "" -#: ../../include/nav.php:194 ../../include/apps.php:143 -msgid "Mail" +#: ../../include/widgets.php:577 ../../include/nav.php:199 +msgid "New Message" msgstr "" -#: ../../include/nav.php:194 -msgid "Private mail" +#: ../../include/widgets.php:652 +msgid "Chat Rooms" msgstr "" -#: ../../include/nav.php:195 -msgid "See all private messages" +#: ../../include/widgets.php:672 +msgid "Bookmarked Chatrooms" msgstr "" -#: ../../include/nav.php:196 -msgid "Mark all private messages seen" +#: ../../include/widgets.php:692 +msgid "Suggested Chatrooms" msgstr "" -#: ../../include/nav.php:197 -msgid "Inbox" +#: ../../include/widgets.php:819 ../../include/widgets.php:877 +msgid "photo/image" msgstr "" -#: ../../include/nav.php:198 -msgid "Outbox" +#: ../../include/widgets.php:972 ../../include/widgets.php:974 +msgid "Rate Me" msgstr "" -#: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:503 -msgid "Events" +#: ../../include/widgets.php:978 +msgid "View Ratings" msgstr "" -#: ../../include/nav.php:202 -msgid "Event Calendar" +#: ../../include/widgets.php:989 +msgid "Public Hubs" msgstr "" -#: ../../include/nav.php:203 -msgid "See all events" +#: ../../include/auth.php:131 +msgid "Logged out." msgstr "" -#: ../../include/nav.php:204 -msgid "Mark all events seen" +#: ../../include/auth.php:272 +msgid "Failed authentication" msgstr "" -#: ../../include/nav.php:206 ../../include/apps.php:132 -#: ../../mod/manage.php:166 -msgid "Channel Manager" +#: ../../include/auth.php:286 ../../mod/openid.php:190 +msgid "Login failed." msgstr "" -#: ../../include/nav.php:206 -msgid "Manage Your Channels" +#: ../../include/features.php:38 +msgid "General Features" msgstr "" -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" +#: ../../include/features.php:40 +msgid "Content Expiration" msgstr "" -#: ../../include/nav.php:216 ../../mod/admin.php:120 -msgid "Admin" +#: ../../include/features.php:40 +msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" +#: ../../include/features.php:41 +msgid "Multiple Profiles" msgstr "" -#: ../../include/nav.php:247 ../../include/conversation.php:861 -msgid "Loading..." +#: ../../include/features.php:41 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/nav.php:252 -msgid "@name, #tag, content" +#: ../../include/features.php:42 +msgid "Advanced Profiles" msgstr "" -#: ../../include/nav.php:253 -msgid "Please wait..." +#: ../../include/features.php:42 +msgid "Additional profile sections and selections" msgstr "" -#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 -msgid "Tags" +#: ../../include/features.php:43 +msgid "Profile Import/Export" msgstr "" -#: ../../include/taxonomy.php:287 -msgid "Keywords" +#: ../../include/features.php:43 +msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../include/taxonomy.php:308 -msgid "have" +#: ../../include/features.php:44 +msgid "Web Pages" msgstr "" -#: ../../include/taxonomy.php:308 -msgid "has" +#: ../../include/features.php:44 +msgid "Provide managed web pages on your channel" msgstr "" -#: ../../include/taxonomy.php:309 -msgid "want" +#: ../../include/features.php:45 +msgid "Private Notes" msgstr "" -#: ../../include/taxonomy.php:309 -msgid "wants" +#: ../../include/features.php:45 +msgid "Enables a tool to store notes and reminders" msgstr "" -#: ../../include/taxonomy.php:310 -msgid "likes" +#: ../../include/features.php:46 +msgid "Navigation Channel Select" msgstr "" -#: ../../include/taxonomy.php:311 -msgid "dislikes" +#: ../../include/features.php:46 +msgid "Change channels directly from within the navigation dropdown menu" msgstr "" -#: ../../include/activities.php:39 -msgid " and " +#: ../../include/features.php:47 +msgid "Photo Location" msgstr "" -#: ../../include/activities.php:47 -msgid "public profile" +#: ../../include/features.php:47 +msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../include/features.php:49 +msgid "Expert Mode" msgstr "" -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" +#: ../../include/features.php:49 +msgid "Enable Expert Mode to provide advanced configuration options" msgstr "" -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../include/features.php:50 +msgid "Premium Channel" msgstr "" -#: ../../include/security.php:349 +#: ../../include/features.php:50 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 "" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "" - -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "" - -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "" - -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "" - -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "" - -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "" - -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "" - -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "" - -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "" - -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "" - -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "" - -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "" - -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "" - -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "" - -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "" - -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "" - -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" +"Allows you to set restrictions and terms on those that connect with your " +"channel" msgstr "" -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" +#: ../../include/features.php:55 +msgid "Post Composition Features" msgstr "" -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/features.php:57 +msgid "Use Markdown" msgstr "" -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" +#: ../../include/features.php:57 +msgid "Allow use of \"Markdown\" to format posts" msgstr "" -#: ../../include/permissions.php:48 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/features.php:58 +msgid "Large Photos" msgstr "" -#: ../../include/permissions.php:893 -msgid "Social Networking" +#: ../../include/features.php:58 +msgid "" +"Include large (640px) photo thumbnails in posts. If not enabled, use small " +"(320px) photo thumbnails" msgstr "" -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Mostly Public" +#: ../../include/features.php:59 +msgid "Automatically import channel content from other channels or feeds" msgstr "" -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Restricted" +#: ../../include/features.php:60 +msgid "Even More Encryption" msgstr "" -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -msgid "Private" +#: ../../include/features.php:60 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -#: ../../include/permissions.php:894 -msgid "Community Forum" +#: ../../include/features.php:61 +msgid "Enable voting tools" msgstr "" -#: ../../include/permissions.php:895 -msgid "Feed Republish" +#: ../../include/features.php:61 +msgid "Provide a class of post which others can vote on" msgstr "" -#: ../../include/permissions.php:896 -msgid "Special Purpose" +#: ../../include/features.php:67 +msgid "Network and Stream Filtering" msgstr "" -#: ../../include/permissions.php:896 -msgid "Celebrity/Soapbox" +#: ../../include/features.php:68 +msgid "Search by Date" msgstr "" -#: ../../include/permissions.php:896 -msgid "Group Repository" +#: ../../include/features.php:68 +msgid "Ability to select posts by date ranges" msgstr "" -#: ../../include/permissions.php:897 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" +#: ../../include/features.php:69 +msgid "Collections Filter" msgstr "" -#: ../../include/permissions.php:897 -msgid "Custom/Expert Mode" +#: ../../include/features.php:69 +msgid "Enable widget to display Network posts only from selected collections" msgstr "" -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" +#: ../../include/features.php:70 +msgid "Save search terms for re-use" msgstr "" -#: ../../include/conversation.php:167 ../../mod/like.php:399 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../include/features.php:71 +msgid "Network Personal Tab" msgstr "" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" +#: ../../include/features.php:71 +msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" +#: ../../include/features.php:72 +msgid "Network New Tab" msgstr "" -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +#: ../../include/features.php:72 +msgid "Enable tab to display all new Network activity" msgstr "" -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Likes" +#: ../../include/features.php:73 +msgid "Affinity Tool" msgstr "" -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Dislikes" +#: ../../include/features.php:73 +msgid "Filter stream activity by depth of relationships" msgstr "" -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Agree" +#: ../../include/features.php:74 +msgid "Connection Filtering" msgstr "" -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Disagree" +#: ../../include/features.php:74 +msgid "Filter incoming posts from connections based on keywords/content" msgstr "" -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Abstain" +#: ../../include/features.php:75 +msgid "Suggest Channels" msgstr "" -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Attending" +#: ../../include/features.php:75 +msgid "Show channel suggestions" msgstr "" -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Not attending" +#: ../../include/features.php:80 +msgid "Post/Comment Tools" msgstr "" -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Might attend" +#: ../../include/features.php:81 +msgid "Tagging" msgstr "" -#: ../../include/conversation.php:703 -#, php-format -msgid "View %s's profile @ %s" +#: ../../include/features.php:81 +msgid "Ability to tag existing posts" msgstr "" -#: ../../include/conversation.php:718 -msgid "Categories:" +#: ../../include/features.php:82 +msgid "Post Categories" msgstr "" -#: ../../include/conversation.php:719 -msgid "Filed under:" +#: ../../include/features.php:82 +msgid "Add categories to your posts" msgstr "" -#: ../../include/conversation.php:746 -msgid "View in context" +#: ../../include/features.php:83 +msgid "Ability to file posts under folders" msgstr "" -#: ../../include/conversation.php:857 -msgid "remove" +#: ../../include/features.php:84 +msgid "Dislike Posts" msgstr "" -#: ../../include/conversation.php:862 -msgid "Delete Selected Items" +#: ../../include/features.php:84 +msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/conversation.php:950 -msgid "View Source" +#: ../../include/features.php:85 +msgid "Star Posts" msgstr "" -#: ../../include/conversation.php:951 -msgid "Follow Thread" +#: ../../include/features.php:85 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/conversation.php:952 -msgid "View Status" +#: ../../include/features.php:86 +msgid "Tag Cloud" msgstr "" -#: ../../include/conversation.php:954 -msgid "View Photos" +#: ../../include/features.php:86 +msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/conversation.php:955 -msgid "Matrix Activity" +#: ../../include/text.php:391 +msgid "prev" msgstr "" -#: ../../include/conversation.php:957 -msgid "Edit Contact" +#: ../../include/text.php:393 +msgid "first" msgstr "" -#: ../../include/conversation.php:958 -msgid "Send PM" +#: ../../include/text.php:422 +msgid "last" msgstr "" -#: ../../include/conversation.php:959 ../../include/apps.php:145 -msgid "Poke" +#: ../../include/text.php:425 +msgid "next" msgstr "" -#: ../../include/conversation.php:1073 -#, php-format -msgid "%s likes this." +#: ../../include/text.php:435 +msgid "older" msgstr "" -#: ../../include/conversation.php:1073 -#, php-format -msgid "%s doesn't like this." +#: ../../include/text.php:437 +msgid "newer" msgstr "" -#: ../../include/conversation.php:1077 -#, php-format -msgid "<span %1$s>%2$d people</span> like this." -msgid_plural "<span %1$s>%2$d people</span> like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1079 -#, php-format -msgid "<span %1$s>%2$d people</span> don't like this." -msgid_plural "<span %1$s>%2$d people</span> don't like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1085 -msgid "and" +#: ../../include/text.php:830 +msgid "No connections" msgstr "" -#: ../../include/conversation.php:1088 +#: ../../include/text.php:844 #, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" +msgid "%d Connection" +msgid_plural "%d Connections" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1089 -#, php-format -msgid "%s like this." +#: ../../include/text.php:857 ../../mod/viewconnections.php:104 +msgid "View Connections" msgstr "" -#: ../../include/conversation.php:1089 -#, php-format -msgid "%s don't like this." +#: ../../include/text.php:990 +msgid "poke" msgstr "" -#: ../../include/conversation.php:1151 -msgid "Visible to <strong>everybody</strong>" +#: ../../include/text.php:991 +msgid "ping" msgstr "" -#: ../../include/conversation.php:1152 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" +#: ../../include/text.php:991 +msgid "pinged" msgstr "" -#: ../../include/conversation.php:1153 -msgid "Please enter a video link/URL:" +#: ../../include/text.php:992 +msgid "prod" msgstr "" -#: ../../include/conversation.php:1154 -msgid "Please enter an audio link/URL:" +#: ../../include/text.php:992 +msgid "prodded" msgstr "" -#: ../../include/conversation.php:1155 -msgid "Tag term:" +#: ../../include/text.php:993 +msgid "slap" msgstr "" -#: ../../include/conversation.php:1156 ../../mod/filer.php:49 -msgid "Save to Folder:" +#: ../../include/text.php:993 +msgid "slapped" msgstr "" -#: ../../include/conversation.php:1157 -msgid "Where are you right now?" +#: ../../include/text.php:994 +msgid "finger" msgstr "" -#: ../../include/conversation.php:1158 ../../mod/editpost.php:47 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" +#: ../../include/text.php:994 +msgid "fingered" msgstr "" -#: ../../include/conversation.php:1185 ../../mod/webpages.php:182 -#: ../../mod/blocks.php:154 ../../mod/photos.php:961 ../../mod/layouts.php:184 -msgid "Share" +#: ../../include/text.php:995 +msgid "rebuff" msgstr "" -#: ../../include/conversation.php:1187 -msgid "Page link name" +#: ../../include/text.php:995 +msgid "rebuffed" msgstr "" -#: ../../include/conversation.php:1190 -msgid "Post as" +#: ../../include/text.php:1005 +msgid "happy" msgstr "" -#: ../../include/conversation.php:1197 ../../mod/editpost.php:112 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:184 -#: ../../mod/editblock.php:141 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Upload photo" +#: ../../include/text.php:1006 +msgid "sad" msgstr "" -#: ../../include/conversation.php:1198 -msgid "upload photo" +#: ../../include/text.php:1007 +msgid "mellow" msgstr "" -#: ../../include/conversation.php:1199 ../../mod/editpost.php:113 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:185 -#: ../../mod/editblock.php:142 ../../mod/mail.php:239 ../../mod/mail.php:353 -msgid "Attach file" +#: ../../include/text.php:1008 +msgid "tired" msgstr "" -#: ../../include/conversation.php:1200 -msgid "attach file" +#: ../../include/text.php:1009 +msgid "perky" msgstr "" -#: ../../include/conversation.php:1201 ../../mod/editpost.php:114 -#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:186 -#: ../../mod/editblock.php:143 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Insert web link" +#: ../../include/text.php:1010 +msgid "angry" msgstr "" -#: ../../include/conversation.php:1202 -msgid "web link" +#: ../../include/text.php:1011 +msgid "stupified" msgstr "" -#: ../../include/conversation.php:1203 -msgid "Insert video link" +#: ../../include/text.php:1012 +msgid "puzzled" msgstr "" -#: ../../include/conversation.php:1204 -msgid "video link" +#: ../../include/text.php:1013 +msgid "interested" msgstr "" -#: ../../include/conversation.php:1205 -msgid "Insert audio link" +#: ../../include/text.php:1014 +msgid "bitter" msgstr "" -#: ../../include/conversation.php:1206 -msgid "audio link" +#: ../../include/text.php:1015 +msgid "cheerful" msgstr "" -#: ../../include/conversation.php:1207 ../../mod/editpost.php:118 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:190 -#: ../../mod/editblock.php:147 -msgid "Set your location" +#: ../../include/text.php:1016 +msgid "alive" msgstr "" -#: ../../include/conversation.php:1208 -msgid "set location" +#: ../../include/text.php:1017 +msgid "annoyed" msgstr "" -#: ../../include/conversation.php:1209 ../../mod/editpost.php:120 -msgid "Toggle voting" +#: ../../include/text.php:1018 +msgid "anxious" msgstr "" -#: ../../include/conversation.php:1212 ../../mod/editpost.php:119 -#: ../../mod/editlayout.php:146 ../../mod/editwebpage.php:191 -#: ../../mod/editblock.php:148 -msgid "Clear browser location" +#: ../../include/text.php:1019 +msgid "cranky" msgstr "" -#: ../../include/conversation.php:1213 -msgid "clear location" +#: ../../include/text.php:1020 +msgid "disturbed" msgstr "" -#: ../../include/conversation.php:1215 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:207 ../../mod/editblock.php:161 -msgid "Title (optional)" +#: ../../include/text.php:1021 +msgid "frustrated" msgstr "" -#: ../../include/conversation.php:1219 ../../mod/editpost.php:137 -#: ../../mod/editlayout.php:162 ../../mod/editwebpage.php:209 -#: ../../mod/editblock.php:164 -msgid "Categories (optional, comma-separated list)" +#: ../../include/text.php:1022 +msgid "depressed" msgstr "" -#: ../../include/conversation.php:1221 ../../mod/editpost.php:124 -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:193 -#: ../../mod/editblock.php:150 -msgid "Permission settings" +#: ../../include/text.php:1023 +msgid "motivated" msgstr "" -#: ../../include/conversation.php:1222 -msgid "permissions" +#: ../../include/text.php:1024 +msgid "relaxed" msgstr "" -#: ../../include/conversation.php:1230 ../../mod/editpost.php:132 -#: ../../mod/editlayout.php:155 ../../mod/editwebpage.php:202 -#: ../../mod/editblock.php:158 -msgid "Public post" +#: ../../include/text.php:1025 +msgid "surprised" msgstr "" -#: ../../include/conversation.php:1232 ../../mod/editpost.php:138 -#: ../../mod/editlayout.php:163 ../../mod/editwebpage.php:210 -#: ../../mod/editblock.php:165 -msgid "Example: bob@example.com, mary@example.com" +#: ../../include/text.php:1197 +msgid "Monday" msgstr "" -#: ../../include/conversation.php:1245 ../../mod/editpost.php:149 -#: ../../mod/editlayout.php:172 ../../mod/editwebpage.php:219 -#: ../../mod/editblock.php:175 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" +#: ../../include/text.php:1197 +msgid "Tuesday" msgstr "" -#: ../../include/conversation.php:1249 ../../mod/events.php:674 -#: ../../mod/editpost.php:153 -msgid "OK" +#: ../../include/text.php:1197 +msgid "Wednesday" msgstr "" -#: ../../include/conversation.php:1250 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:134 ../../mod/events.php:673 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:154 -#: ../../mod/settings.php:589 ../../mod/settings.php:615 -msgid "Cancel" +#: ../../include/text.php:1197 +msgid "Thursday" msgstr "" -#: ../../include/conversation.php:1492 -msgid "Discover" +#: ../../include/text.php:1197 +msgid "Friday" msgstr "" -#: ../../include/conversation.php:1495 -msgid "Imported public streams" +#: ../../include/text.php:1197 +msgid "Saturday" msgstr "" -#: ../../include/conversation.php:1500 -msgid "Commented Order" +#: ../../include/text.php:1197 +msgid "Sunday" msgstr "" -#: ../../include/conversation.php:1503 -msgid "Sort by Comment Date" +#: ../../include/text.php:1201 +msgid "January" msgstr "" -#: ../../include/conversation.php:1507 -msgid "Posted Order" +#: ../../include/text.php:1201 +msgid "February" msgstr "" -#: ../../include/conversation.php:1510 -msgid "Sort by Post Date" +#: ../../include/text.php:1201 +msgid "March" msgstr "" -#: ../../include/conversation.php:1518 -msgid "Posts that mention or involve you" +#: ../../include/text.php:1201 +msgid "April" msgstr "" -#: ../../include/conversation.php:1524 ../../mod/connections.php:72 -#: ../../mod/connections.php:85 ../../mod/menu.php:110 -msgid "New" +#: ../../include/text.php:1201 ../../mod/uexport.php:58 +#: ../../mod/uexport.php:59 +msgid "May" msgstr "" -#: ../../include/conversation.php:1527 -msgid "Activity Stream - by date" +#: ../../include/text.php:1201 +msgid "June" msgstr "" -#: ../../include/conversation.php:1533 -msgid "Starred" +#: ../../include/text.php:1201 +msgid "July" msgstr "" -#: ../../include/conversation.php:1536 -msgid "Favourite Posts" +#: ../../include/text.php:1201 +msgid "August" msgstr "" -#: ../../include/conversation.php:1543 -msgid "Spam" +#: ../../include/text.php:1201 +msgid "September" msgstr "" -#: ../../include/conversation.php:1546 -msgid "Posts flagged as SPAM" +#: ../../include/text.php:1201 +msgid "October" msgstr "" -#: ../../include/conversation.php:1590 ../../mod/admin.php:993 -msgid "Channel" +#: ../../include/text.php:1201 +msgid "November" msgstr "" -#: ../../include/conversation.php:1593 -msgid "Status Messages and Posts" +#: ../../include/text.php:1201 +msgid "December" msgstr "" -#: ../../include/conversation.php:1602 -msgid "About" +#: ../../include/text.php:1306 +msgid "unknown.???" msgstr "" -#: ../../include/conversation.php:1605 -msgid "Profile Details" +#: ../../include/text.php:1307 +msgid "bytes" msgstr "" -#: ../../include/conversation.php:1614 ../../include/photos.php:359 -msgid "Photo Albums" +#: ../../include/text.php:1343 +msgid "remove category" msgstr "" -#: ../../include/conversation.php:1623 -msgid "Files and Storage" +#: ../../include/text.php:1418 +msgid "remove from file" msgstr "" -#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 -msgid "Chatrooms" +#: ../../include/text.php:1494 ../../include/text.php:1505 +msgid "Click to open/close" msgstr "" -#: ../../include/conversation.php:1649 -msgid "Saved Bookmarks" +#: ../../include/text.php:1661 ../../mod/events.php:474 +msgid "Link to Source" msgstr "" -#: ../../include/conversation.php:1659 -msgid "Manage Webpages" +#: ../../include/text.php:1682 ../../include/text.php:1753 +msgid "default" msgstr "" -#: ../../include/conversation.php:1718 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1721 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1724 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1727 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1730 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1733 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/items.php:413 ../../mod/like.php:273 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 -#: ../../mod/bulksetclose.php:11 ../../index.php:392 -msgid "Permission denied" +#: ../../include/text.php:1690 +msgid "Page layout" msgstr "" -#: ../../include/items.php:1101 ../../include/items.php:1147 -msgid "(Unknown)" +#: ../../include/text.php:1690 +msgid "You can create your own with the layouts tool" msgstr "" -#: ../../include/items.php:1373 -msgid "Visible to anybody on the internet." +#: ../../include/text.php:1731 +msgid "Page content type" msgstr "" -#: ../../include/items.php:1375 -msgid "Visible to you only." +#: ../../include/text.php:1765 +msgid "Select an alternate language" msgstr "" -#: ../../include/items.php:1377 -msgid "Visible to anybody in this network." +#: ../../include/text.php:1897 +msgid "activity" msgstr "" -#: ../../include/items.php:1379 -msgid "Visible to anybody authenticated." +#: ../../include/text.php:2192 +msgid "Design Tools" msgstr "" -#: ../../include/items.php:1381 -#, php-format -msgid "Visible to anybody on %s." +#: ../../include/text.php:2195 ../../mod/blocks.php:147 +msgid "Blocks" msgstr "" -#: ../../include/items.php:1383 -msgid "Visible to all connections." +#: ../../include/text.php:2196 ../../mod/menu.php:101 +msgid "Menus" msgstr "" -#: ../../include/items.php:1385 -msgid "Visible to approved connections." +#: ../../include/text.php:2197 ../../mod/layouts.php:174 +msgid "Layouts" msgstr "" -#: ../../include/items.php:1387 -msgid "Visible to specific connections." +#: ../../include/text.php:2198 +msgid "Pages" msgstr "" -#: ../../include/items.php:4286 ../../mod/thing.php:74 -#: ../../mod/filestorage.php:27 ../../mod/viewsrc.php:20 -#: ../../mod/admin.php:167 ../../mod/admin.php:1025 ../../mod/admin.php:1225 -#: ../../mod/display.php:36 -msgid "Item not found." +#: ../../include/text.php:2549 ../../include/RedDAV/RedBrowser.php:131 +msgid "Collection" msgstr "" -#: ../../include/items.php:4359 ../../include/attach.php:137 -#: ../../include/attach.php:184 ../../include/attach.php:247 -#: ../../include/attach.php:261 ../../include/attach.php:305 -#: ../../include/attach.php:319 ../../include/attach.php:350 -#: ../../include/attach.php:546 ../../include/attach.php:618 -#: ../../include/chat.php:131 ../../include/photos.php:26 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/achievements.php:30 ../../mod/manage.php:6 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/webpages.php:69 ../../mod/thing.php:269 -#: ../../mod/thing.php:284 ../../mod/thing.php:318 -#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 -#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 -#: ../../mod/events.php:249 ../../mod/group.php:9 ../../mod/item.php:206 -#: ../../mod/item.php:214 ../../mod/item.php:1005 ../../mod/network.php:12 -#: ../../mod/common.php:35 ../../mod/connections.php:29 -#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/editpost.php:13 -#: ../../mod/photos.php:69 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 -#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 -#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/mitem.php:111 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/rate.php:110 ../../mod/editblock.php:65 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66 -#: ../../mod/menu.php:72 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88 -#: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78 -#: ../../mod/poke.php:128 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 ../../mod/setup.php:223 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/register.php:72 ../../mod/settings.php:570 ../../mod/id.php:71 -#: ../../mod/message.php:16 ../../mod/mood.php:111 ../../mod/connedit.php:348 -#: ../../mod/mail.php:114 ../../mod/notifications.php:66 -#: ../../mod/regmod.php:17 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/appman.php:66 -#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 -#: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/bookmarks.php:46 -#: ../../mod/channel.php:100 ../../mod/channel.php:219 -#: ../../mod/channel.php:262 ../../mod/suggest.php:26 -#: ../../mod/service_limits.php:7 ../../mod/sharedwithme.php:7 -#: ../../index.php:182 ../../index.php:393 -msgid "Permission denied." +#: ../../include/enotify.php:58 ../../include/network.php:1585 +msgid "$Projectname Notification" msgstr "" -#: ../../include/items.php:4763 ../../mod/group.php:38 ../../mod/group.php:140 -#: ../../mod/bulksetclose.php:51 -msgid "Collection not found." +#: ../../include/enotify.php:59 ../../include/diaspora.php:2522 +#: ../../include/diaspora.php:2533 ../../include/network.php:1586 +#: ../../mod/p.php:46 +msgid "$projectname" msgstr "" -#: ../../include/items.php:4779 -msgid "Collection is empty." +#: ../../include/enotify.php:61 ../../include/network.php:1588 +msgid "Thank You," msgstr "" -#: ../../include/items.php:4786 +#: ../../include/enotify.php:63 ../../include/network.php:1590 #, php-format -msgid "Collection: %s" +msgid "%s Administrator" msgstr "" -#: ../../include/items.php:4796 ../../mod/connedit.php:674 +#: ../../include/enotify.php:96 #, php-format -msgid "Connection: %s" -msgstr "" - -#: ../../include/items.php:4798 -msgid "Connection not found." -msgstr "" - -#: ../../include/zot.php:684 -msgid "Invalid data packet" +msgid "%s <!item_type!>" msgstr "" -#: ../../include/zot.php:700 -msgid "Unable to verify channel signature" +#: ../../include/enotify.php:100 +#, php-format +msgid "[Red:Notify] New mail received at %s" msgstr "" -#: ../../include/zot.php:2208 +#: ../../include/enotify.php:102 #, php-format -msgid "Unable to verify site signature for %s" +msgid "%1$s, %2$s sent you a new private message at %3$s." msgstr "" -#: ../../include/oembed.php:183 -msgid "Embedded content" +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." msgstr "" -#: ../../include/oembed.php:192 -msgid "Embedding disabled" +#: ../../include/enotify.php:103 +msgid "a private message" msgstr "" -#: ../../include/auth.php:131 -msgid "Logged out." +#: ../../include/enotify.php:104 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../include/auth.php:272 -msgid "Failed authentication" +#: ../../include/enotify.php:158 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" msgstr "" -#: ../../include/auth.php:286 ../../mod/openid.php:190 -msgid "Login failed." +#: ../../include/enotify.php:166 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "" -#: ../../include/contact_widgets.php:14 +#: ../../include/enotify.php:175 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:457 -msgid "Advanced" +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" msgstr "" -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" +#: ../../include/enotify.php:186 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "" -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" +#: ../../include/enotify.php:190 ../../include/enotify.php:205 +#: ../../include/enotify.php:231 ../../include/enotify.php:249 +#: ../../include/enotify.php:263 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" +#: ../../include/enotify.php:196 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" msgstr "" -#: ../../include/contact_widgets.php:26 ../../mod/directory.php:379 -#: ../../mod/directory.php:384 ../../mod/connections.php:273 -msgid "Find" +#: ../../include/enotify.php:198 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "" -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 -#: ../../mod/suggest.php:60 -msgid "Channel Suggestions" +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "" -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" +#: ../../include/enotify.php:224 +#, php-format +msgid "[Red:Notify] %s tagged you" msgstr "" -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" +#: ../../include/enotify.php:225 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" msgstr "" -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "" -#: ../../include/contact_widgets.php:125 +#: ../../include/enotify.php:238 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:130 -msgid "show more" +msgid "[Red:Notify] %1$s poked you" msgstr "" -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" +#: ../../include/enotify.php:239 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" msgstr "" -#: ../../include/acl_selectors.php:241 -msgid "Show" +#: ../../include/enotify.php:240 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "" -#: ../../include/acl_selectors.php:242 -msgid "Don't show" +#: ../../include/enotify.php:256 +#, php-format +msgid "[Red:Notify] %s tagged your post" msgstr "" -#: ../../include/acl_selectors.php:248 ../../mod/events.php:691 -#: ../../mod/photos.php:571 ../../mod/photos.php:934 ../../mod/chat.php:209 -#: ../../mod/filestorage.php:147 -msgid "Permissions" +#: ../../include/enotify.php:257 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" msgstr "" -#: ../../include/attach.php:242 ../../include/attach.php:300 -msgid "Item was not found." +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "" -#: ../../include/attach.php:363 -msgid "No source file." +#: ../../include/enotify.php:270 +msgid "[Red:Notify] Introduction received" msgstr "" -#: ../../include/attach.php:381 -msgid "Cannot locate file to replace" +#: ../../include/enotify.php:271 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "" -#: ../../include/attach.php:399 -msgid "Cannot locate file to revise/update" +#: ../../include/enotify.php:272 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." msgstr "" -#: ../../include/attach.php:410 +#: ../../include/enotify.php:276 ../../include/enotify.php:295 #, php-format -msgid "File exceeds size limit of %d" +msgid "You may visit their profile at %s" msgstr "" -#: ../../include/attach.php:422 +#: ../../include/enotify.php:278 #, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgid "Please visit %s to approve or reject the connection request." msgstr "" -#: ../../include/attach.php:505 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/enotify.php:285 +msgid "[Red:Notify] Friend suggestion received" msgstr "" -#: ../../include/attach.php:517 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/enotify.php:286 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" msgstr "" -#: ../../include/attach.php:561 ../../include/attach.php:578 -msgid "Path not available." +#: ../../include/enotify.php:287 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." msgstr "" -#: ../../include/attach.php:623 -msgid "Empty pathname" +#: ../../include/enotify.php:293 +msgid "Name:" msgstr "" -#: ../../include/attach.php:639 -msgid "duplicate filename or path" +#: ../../include/enotify.php:294 +msgid "Photo:" msgstr "" -#: ../../include/attach.php:663 -msgid "Path not found." +#: ../../include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/attach.php:714 -msgid "mkdir failed." +#: ../../include/enotify.php:508 +msgid "[Red:Notify]" msgstr "" -#: ../../include/attach.php:718 -msgid "database storage failed." +#: ../../include/event.php:549 +msgid "This event has been added to your calendar." msgstr "" #: ../../include/identity.php:33 @@ -3303,7 +2625,7 @@ msgstr "" msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/identity.php:217 ../../include/dimport.php:34 +#: ../../include/identity.php:217 msgid "" "Nickname has unsupported characters or is already being used on this site." msgstr "" @@ -3320,12 +2642,12 @@ msgstr "" msgid "Requested channel is not available." msgstr "" -#: ../../include/identity.php:783 ../../mod/profile.php:16 -#: ../../mod/achievements.php:11 ../../mod/webpages.php:29 -#: ../../mod/connect.php:13 ../../mod/hcard.php:8 ../../mod/blocks.php:29 +#: ../../include/identity.php:783 ../../mod/hcard.php:8 +#: ../../mod/layouts.php:29 ../../mod/editblock.php:29 +#: ../../mod/profile.php:16 ../../mod/achievements.php:11 #: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 -#: ../../mod/editblock.php:29 ../../mod/filestorage.php:54 -#: ../../mod/layouts.php:29 +#: ../../mod/filestorage.php:54 ../../mod/connect.php:13 +#: ../../mod/blocks.php:29 ../../mod/webpages.php:29 msgid "Requested profile is not available." msgstr "" @@ -3345,6 +2667,10 @@ msgstr "" msgid "Create New Profile" msgstr "" +#: ../../include/identity.php:956 ../../include/nav.php:95 +msgid "Edit Profile" +msgstr "" + #: ../../include/identity.php:968 ../../mod/profiles.php:786 msgid "Profile Image" msgstr "" @@ -3408,11 +2734,6 @@ msgstr "" msgid "Events this week:" msgstr "" -#: ../../include/identity.php:1217 ../../include/identity.php:1334 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "" - #: ../../include/identity.php:1225 ../../mod/settings.php:1056 msgid "Full Name:" msgstr "" @@ -3570,6 +2891,13 @@ msgid "Non-specific" msgstr "" #: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 ../../include/permissions.php:897 +msgid "Other" +msgstr "" + +#: ../../include/profile_selectors.php:6 msgid "Undecided" msgstr "" @@ -3755,1321 +3083,984 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "" - -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "" - -#: ../../include/apps.php:144 ../../mod/mood.php:130 -msgid "Mood" -msgstr "" - -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "" - -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "" - -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "" - -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "" - -#: ../../include/apps.php:152 -msgid "Features" -msgstr "" - -#: ../../include/apps.php:153 ../../mod/id.php:28 -msgid "Language" -msgstr "" - -#: ../../include/apps.php:154 -msgid "Post" -msgstr "" - -#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 -#: ../../mod/id.php:19 -msgid "Profile Photo" -msgstr "" - -#: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:614 -msgid "Update" -msgstr "" - -#: ../../include/apps.php:247 -msgid "Install" -msgstr "" - -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "" - -#: ../../include/bbcode.php:122 ../../include/bbcode.php:768 -#: ../../include/bbcode.php:771 ../../include/bbcode.php:776 -#: ../../include/bbcode.php:779 ../../include/bbcode.php:782 -#: ../../include/bbcode.php:785 ../../include/bbcode.php:790 -#: ../../include/bbcode.php:793 ../../include/bbcode.php:798 -#: ../../include/bbcode.php:801 ../../include/bbcode.php:804 -#: ../../include/bbcode.php:807 -msgid "Image/photo" -msgstr "" - -#: ../../include/bbcode.php:161 ../../include/bbcode.php:818 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "" - -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "" - -#: ../../include/bbcode.php:192 ../../mod/impel.php:37 -msgid "webpage" -msgstr "" - -#: ../../include/bbcode.php:195 ../../mod/impel.php:47 -msgid "layout" -msgstr "" - -#: ../../include/bbcode.php:198 ../../mod/impel.php:42 -msgid "block" -msgstr "" - -#: ../../include/bbcode.php:201 ../../mod/impel.php:54 -msgid "menu" -msgstr "" - -#: ../../include/bbcode.php:215 -msgid "QR code" -msgstr "" - -#: ../../include/bbcode.php:266 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:268 ../../mod/tagger.php:51 -msgid "post" -msgstr "" - -#: ../../include/bbcode.php:518 -msgid "Different viewers will see this text differently" -msgstr "" - -#: ../../include/bbcode.php:729 -msgid "$1 spoiler" -msgstr "" - -#: ../../include/bbcode.php:756 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/chat.php:23 -msgid "Missing room name" -msgstr "" - -#: ../../include/chat.php:32 -msgid "Duplicate room name" +#: ../../include/page_widgets.php:6 +msgid "New Page" msgstr "" -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." +#: ../../include/page_widgets.php:39 ../../mod/layouts.php:188 +#: ../../mod/blocks.php:159 ../../mod/webpages.php:187 +msgid "View" msgstr "" -#: ../../include/chat.php:120 -msgid "Room not found." +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 +msgid "Actions" msgstr "" -#: ../../include/chat.php:141 -msgid "Room is full" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 +msgid "Page Link" msgstr "" -#: ../../include/photos.php:94 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" +#: ../../include/page_widgets.php:43 +msgid "Title" msgstr "" -#: ../../include/photos.php:101 -msgid "Image file is empty." +#: ../../include/page_widgets.php:44 ../../mod/menu.php:108 +#: ../../mod/layouts.php:181 ../../mod/blocks.php:150 +#: ../../mod/webpages.php:192 +msgid "Created" msgstr "" -#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 -msgid "Unable to process image" +#: ../../include/page_widgets.php:45 ../../mod/menu.php:109 +#: ../../mod/layouts.php:182 ../../mod/blocks.php:151 +#: ../../mod/webpages.php:193 +msgid "Edited" msgstr "" -#: ../../include/photos.php:199 -msgid "Photo storage failed." +#: ../../include/message.php:18 +msgid "No recipient provided." msgstr "" -#: ../../include/photos.php:363 -msgid "Upload New Photos" +#: ../../include/message.php:23 +msgid "[no subject]" msgstr "" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" +#: ../../include/message.php:45 +msgid "Unable to determine sender." msgstr "" -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +#: ../../include/message.php:200 +msgid "Stored post could not be verified." msgstr "" -#: ../../mod/manage.php:144 -msgid "Create a new channel" +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../mod/manage.php:167 -msgid "Current Channel" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" msgstr "" -#: ../../mod/manage.php:169 -msgid "Switch to one of your channels by selecting it." +#: ../../include/permissions.php:28 +msgid "Can view my photo albums" msgstr "" -#: ../../mod/manage.php:170 -msgid "Default Channel" +#: ../../include/permissions.php:29 +msgid "Can view my connections" msgstr "" -#: ../../mod/manage.php:171 -msgid "Make Default" +#: ../../include/permissions.php:30 +msgid "Can view my file storage" msgstr "" -#: ../../mod/manage.php:174 -#, php-format -msgid "%d new messages" +#: ../../include/permissions.php:31 +msgid "Can view my webpages" msgstr "" -#: ../../mod/manage.php:175 -#, php-format -msgid "%d new introductions" +#: ../../include/permissions.php:34 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../mod/manage.php:177 -msgid "Delegated Channels" +#: ../../include/permissions.php:35 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../mod/directory.php:59 ../../mod/photos.php:441 ../../mod/search.php:13 -#: ../../mod/ratings.php:82 ../../mod/viewconnections.php:17 -#: ../../mod/display.php:13 -msgid "Public access denied." +#: ../../include/permissions.php:36 +msgid "Can comment on or like my posts" msgstr "" -#: ../../mod/directory.php:234 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/directory.php:245 -msgid "Gender: " +#: ../../include/permissions.php:37 +msgid "Can send me private mail messages" msgstr "" -#: ../../mod/directory.php:247 -msgid "Status: " +#: ../../include/permissions.php:38 +msgid "Can post photos to my photo albums" msgstr "" -#: ../../mod/directory.php:249 -msgid "Homepage: " +#: ../../include/permissions.php:39 +msgid "Can like/dislike stuff" msgstr "" -#: ../../mod/directory.php:308 ../../mod/events.php:682 -msgid "Description:" +#: ../../include/permissions.php:39 +msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../mod/directory.php:317 -msgid "Public Forum:" +#: ../../include/permissions.php:41 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../mod/directory.php:320 -msgid "Keywords: " +#: ../../include/permissions.php:41 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../mod/directory.php:323 -msgid "Don't suggest" +#: ../../include/permissions.php:42 +msgid "Can chat with me (when available)" msgstr "" -#: ../../mod/directory.php:325 -msgid "Common connections:" +#: ../../include/permissions.php:43 +msgid "Can write to my file storage" msgstr "" -#: ../../mod/directory.php:374 -msgid "Global Directory" +#: ../../include/permissions.php:44 +msgid "Can edit my webpages" msgstr "" -#: ../../mod/directory.php:374 -msgid "Local Directory" +#: ../../include/permissions.php:46 +msgid "Can source my public posts in derived channels" msgstr "" -#: ../../mod/directory.php:380 -msgid "Finding:" +#: ../../include/permissions.php:46 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../mod/directory.php:385 -msgid "next page" +#: ../../include/permissions.php:48 +msgid "Can administer my channel resources" msgstr "" -#: ../../mod/directory.php:385 -msgid "previous page" +#: ../../include/permissions.php:48 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../mod/directory.php:386 -msgid "Sort options" +#: ../../include/permissions.php:893 +msgid "Social Networking" msgstr "" -#: ../../mod/directory.php:387 -msgid "Alphabetic" +#: ../../include/permissions.php:893 ../../include/permissions.php:894 +#: ../../include/permissions.php:895 +msgid "Mostly Public" msgstr "" -#: ../../mod/directory.php:388 -msgid "Reverse Alphabetic" +#: ../../include/permissions.php:893 ../../include/permissions.php:894 +#: ../../include/permissions.php:895 +msgid "Restricted" msgstr "" -#: ../../mod/directory.php:389 -msgid "Newest to Oldest" +#: ../../include/permissions.php:893 ../../include/permissions.php:894 +msgid "Private" msgstr "" -#: ../../mod/directory.php:390 -msgid "Oldest to Newest" +#: ../../include/permissions.php:894 +msgid "Community Forum" msgstr "" -#: ../../mod/directory.php:407 -msgid "No entries (some entries may be hidden)." +#: ../../include/permissions.php:895 +msgid "Feed Republish" msgstr "" -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" +#: ../../include/permissions.php:896 +msgid "Special Purpose" msgstr "" -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " +#: ../../include/permissions.php:896 +msgid "Celebrity/Soapbox" msgstr "" -#: ../../mod/xchan.php:37 ../../mod/mitem.php:116 ../../mod/menu.php:160 -msgid "Not found." +#: ../../include/permissions.php:896 +msgid "Group Repository" msgstr "" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" +#: ../../include/permissions.php:897 +msgid "Custom/Expert Mode" msgstr "" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" +#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549 +msgid "Logout" msgstr "" -#: ../../mod/api.php:89 -msgid "Please login to continue." +#: ../../include/nav.php:87 ../../include/nav.php:120 +msgid "End this session" msgstr "" -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +#: ../../include/nav.php:90 ../../include/nav.php:151 +msgid "Home" msgstr "" -#: ../../mod/webpages.php:191 -msgid "Page Title" +#: ../../include/nav.php:90 +msgid "Your posts and conversations" msgstr "" -#: ../../mod/follow.php:25 -msgid "Channel added." +#: ../../include/nav.php:91 +msgid "Your profile page" msgstr "" -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" +#: ../../include/nav.php:93 +msgid "Edit Profiles" msgstr "" -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" +#: ../../include/nav.php:93 +msgid "Manage/Edit profiles" msgstr "" -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " +#: ../../include/nav.php:95 +msgid "Edit your profile" msgstr "" -#: ../../mod/tagrm.php:133 ../../mod/photos.php:887 -msgid "Remove" +#: ../../include/nav.php:97 +msgid "Your photos" msgstr "" -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" +#: ../../include/nav.php:98 +msgid "Your files" msgstr "" -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" +#: ../../include/nav.php:103 +msgid "Your chatrooms" msgstr "" -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" +#: ../../include/nav.php:109 +msgid "Your bookmarks" msgstr "" -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../include/nav.php:113 +msgid "Your webpages" msgstr "" -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +#: ../../include/nav.php:117 +msgid "Sign in" msgstr "" -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../include/nav.php:134 +#, php-format +msgid "%s - click to logout" msgstr "" -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +#: ../../include/nav.php:137 +msgid "Remote authentication" msgstr "" -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../include/nav.php:137 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" +#: ../../include/nav.php:151 +msgid "Home Page" msgstr "" -#: ../../mod/thing.php:94 -msgid "Thing updated" +#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526 +msgid "Register" msgstr "" -#: ../../mod/thing.php:167 -msgid "Object store: failed" +#: ../../include/nav.php:155 +msgid "Create an account" msgstr "" -#: ../../mod/thing.php:171 -msgid "Thing added" +#: ../../include/nav.php:160 +msgid "Help and documentation" msgstr "" -#: ../../mod/thing.php:203 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" msgstr "" -#: ../../mod/thing.php:254 -msgid "Show Thing" +#: ../../include/nav.php:165 +msgid "Search site content" msgstr "" -#: ../../mod/thing.php:261 -msgid "item not found." +#: ../../include/nav.php:168 +msgid "Channel Directory" msgstr "" -#: ../../mod/thing.php:289 -msgid "Edit Thing" +#: ../../include/nav.php:180 +msgid "Your matrix" msgstr "" -#: ../../mod/thing.php:291 ../../mod/thing.php:338 -msgid "Select a profile" +#: ../../include/nav.php:181 +msgid "Mark all matrix notifications seen" msgstr "" -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Post an activity" +#: ../../include/nav.php:183 +msgid "Channel home" msgstr "" -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Only sends to viewers of the applicable profile" +#: ../../include/nav.php:184 +msgid "Mark all channel notifications seen" msgstr "" -#: ../../mod/thing.php:297 ../../mod/thing.php:343 -msgid "Name of thing e.g. something" +#: ../../include/nav.php:187 ../../mod/connections.php:267 +msgid "Connections" msgstr "" -#: ../../mod/thing.php:299 ../../mod/thing.php:344 -msgid "URL of thing (optional)" +#: ../../include/nav.php:190 +msgid "Notices" msgstr "" -#: ../../mod/thing.php:301 ../../mod/thing.php:345 -msgid "URL for photo of thing (optional)" +#: ../../include/nav.php:190 +msgid "Notifications" msgstr "" -#: ../../mod/thing.php:336 -msgid "Add Thing to your Profile" +#: ../../include/nav.php:191 +msgid "See all notifications" msgstr "" -#: ../../mod/attach.php:9 -msgid "Item not available." +#: ../../include/nav.php:192 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" msgstr "" -#: ../../mod/probe.php:24 ../../mod/probe.php:30 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../include/nav.php:194 +msgid "Private mail" msgstr "" -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." +#: ../../include/nav.php:195 +msgid "See all private messages" msgstr "" -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." +#: ../../include/nav.php:196 +msgid "Mark all private messages seen" msgstr "" -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +#: ../../include/nav.php:197 +msgid "Inbox" msgstr "" -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" +#: ../../include/nav.php:198 +msgid "Outbox" msgstr "" -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." +#: ../../include/nav.php:202 +msgid "Event Calendar" msgstr "" -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." +#: ../../include/nav.php:203 +msgid "See all events" msgstr "" -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" +#: ../../include/nav.php:204 +msgid "Mark all events seen" msgstr "" -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" +#: ../../include/nav.php:206 +msgid "Manage Your Channels" msgstr "" -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" msgstr "" -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:995 -msgid "or" +#: ../../include/nav.php:216 ../../mod/admin.php:120 +msgid "Admin" msgstr "" -#: ../../mod/profile_photo.php:366 -msgid "skip this step" +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" msgstr "" -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" +#: ../../include/nav.php:252 +msgid "@name, #tag, content" msgstr "" -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" +#: ../../include/nav.php:253 +msgid "Please wait..." msgstr "" -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../include/diaspora.php:2494 +msgid "Please choose" msgstr "" -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" +#: ../../include/diaspora.php:2496 +msgid "Agree" msgstr "" -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." +#: ../../include/diaspora.php:2498 +msgid "Disagree" msgstr "" -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." +#: ../../include/diaspora.php:2500 +msgid "Abstain" msgstr "" -#: ../../mod/profile_photo.php:439 +#: ../../include/photos.php:94 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "" - -#: ../../mod/block.php:27 ../../mod/page.php:36 -msgid "Invalid item." +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:52 -msgid "Channel not found." +#: ../../include/photos.php:101 +msgid "Image file is empty." msgstr "" -#: ../../mod/block.php:75 ../../mod/display.php:110 ../../mod/help.php:79 -#: ../../mod/page.php:89 ../../index.php:241 -msgid "Page not found." +#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 +msgid "Unable to process image" msgstr "" -#: ../../mod/like.php:15 -msgid "Like/Dislike" +#: ../../include/photos.php:199 +msgid "Photo storage failed." msgstr "" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." +#: ../../include/photos.php:363 +msgid "Upload New Photos" msgstr "" -#: ../../mod/like.php:21 -msgid "" -"Please <a href=\"rmagic\">login with your $Projectname ID</a> or <a href=" -"\"register\">register as a new $Projectname member</a> to continue." +#: ../../include/network.php:635 +msgid "view full size" msgstr "" -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." +#: ../../include/network.php:1646 +msgid "No Subject" msgstr "" -#: ../../mod/like.php:143 -msgid "thing" +#: ../../include/comanche.php:34 ../../mod/admin.php:390 +msgid "Default" msgstr "" -#: ../../mod/like.php:189 -msgid "Channel unavailable." +#: ../../include/RedDAV/RedBrowser.php:107 +#: ../../include/RedDAV/RedBrowser.php:265 +msgid "parent" msgstr "" -#: ../../mod/like.php:231 -msgid "Previous action reversed." +#: ../../include/RedDAV/RedBrowser.php:134 +msgid "Principal" msgstr "" -#: ../../mod/like.php:401 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" +#: ../../include/RedDAV/RedBrowser.php:137 +msgid "Addressbook" msgstr "" -#: ../../mod/like.php:403 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" +#: ../../include/RedDAV/RedBrowser.php:140 +msgid "Calendar" msgstr "" -#: ../../mod/like.php:405 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" +#: ../../include/RedDAV/RedBrowser.php:143 +msgid "Schedule Inbox" msgstr "" -#: ../../mod/like.php:407 -#, php-format -msgid "%1$s is attending %2$s's %3$s" +#: ../../include/RedDAV/RedBrowser.php:146 +msgid "Schedule Outbox" msgstr "" -#: ../../mod/like.php:409 +#: ../../include/RedDAV/RedBrowser.php:227 #, php-format -msgid "%1$s is not attending %2$s's %3$s" +msgid "%1$s used" msgstr "" -#: ../../mod/like.php:411 +#: ../../include/RedDAV/RedBrowser.php:232 #, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:507 -msgid "Action completed." -msgstr "" - -#: ../../mod/like.php:508 -msgid "Thank you." -msgstr "" - -#: ../../mod/events.php:21 -msgid "Calendar entries imported." -msgstr "" - -#: ../../mod/events.php:23 -msgid "No calendar entries found." -msgstr "" - -#: ../../mod/events.php:101 -msgid "Event can not end before it has started." -msgstr "" - -#: ../../mod/events.php:103 ../../mod/events.php:112 ../../mod/events.php:130 -msgid "Unable to generate preview." -msgstr "" - -#: ../../mod/events.php:110 -msgid "Event title and start time are required." -msgstr "" - -#: ../../mod/events.php:128 -msgid "Event not found." -msgstr "" - -#: ../../mod/events.php:426 -msgid "l, F j" -msgstr "" - -#: ../../mod/events.php:448 -msgid "Edit event" -msgstr "" - -#: ../../mod/events.php:449 -msgid "Delete event" -msgstr "" - -#: ../../mod/events.php:483 -msgid "calendar" -msgstr "" - -#: ../../mod/events.php:504 -msgid "Create New Event" -msgstr "" - -#: ../../mod/events.php:505 ../../mod/photos.php:839 -msgid "Previous" -msgstr "" - -#: ../../mod/events.php:506 ../../mod/photos.php:848 ../../mod/setup.php:281 -msgid "Next" -msgstr "" - -#: ../../mod/events.php:507 -msgid "Export" +msgid "%1$s used of %2$s (%3$s%)" msgstr "" -#: ../../mod/events.php:510 -msgid "Import" +#: ../../include/RedDAV/RedBrowser.php:253 +msgid "Total" msgstr "" -#: ../../mod/events.php:541 -msgid "Event removed" +#: ../../include/RedDAV/RedBrowser.php:255 +msgid "Shared" msgstr "" -#: ../../mod/events.php:544 -msgid "Failed to remove event" +#: ../../include/RedDAV/RedBrowser.php:256 +#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/menu.php:112 +#: ../../mod/layouts.php:175 ../../mod/new_channel.php:121 +#: ../../mod/blocks.php:152 ../../mod/webpages.php:180 +msgid "Create" msgstr "" -#: ../../mod/events.php:664 -msgid "Event details" +#: ../../include/RedDAV/RedBrowser.php:257 +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 +#: ../../mod/photos.php:718 ../../mod/photos.php:1248 +msgid "Upload" msgstr "" -#: ../../mod/events.php:665 -msgid "Starting date and Title are required." +#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:994 +#: ../../mod/sharedwithme.php:95 ../../mod/settings.php:590 +#: ../../mod/settings.php:616 +msgid "Name" msgstr "" -#: ../../mod/events.php:667 -msgid "Categories (comma-separated list)" +#: ../../include/RedDAV/RedBrowser.php:262 +msgid "Type" msgstr "" -#: ../../mod/events.php:669 -msgid "Event Starts:" +#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 +msgid "Size" msgstr "" -#: ../../mod/events.php:676 -msgid "Finish date/time is not known or not relevant" +#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 +msgid "Last Modified" msgstr "" -#: ../../mod/events.php:678 -msgid "Event Finishes:" +#: ../../include/RedDAV/RedBrowser.php:302 +msgid "Create new folder" msgstr "" -#: ../../mod/events.php:680 ../../mod/events.php:681 -msgid "Adjust for viewer timezone" +#: ../../include/RedDAV/RedBrowser.php:304 +msgid "Upload file" msgstr "" -#: ../../mod/events.php:680 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." +#: ../../include/oembed.php:183 +msgid "Embedded content" msgstr "" -#: ../../mod/events.php:686 -msgid "Title:" +#: ../../include/oembed.php:192 +msgid "Embedding disabled" msgstr "" -#: ../../mod/events.php:688 -msgid "Share this event" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" msgstr "" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 +#: ../../mod/photos.php:980 ../../mod/photos.php:1098 +msgid "Comment" msgstr "" -#: ../../mod/pubsites.php:16 -msgid "Public Sites" +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 +msgid "[+] show all" msgstr "" -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration for the $Projectname network. All " -"sites in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some sites may require subscription or " -"provide tiered service plans. The provider links <strong>may</strong> " -"provide additional details." +#: ../../include/js_strings.php:8 +msgid "[-] show less" msgstr "" -#: ../../mod/pubsites.php:25 -msgid "Rate this hub" +#: ../../include/js_strings.php:9 +msgid "[+] expand" msgstr "" -#: ../../mod/pubsites.php:26 -msgid "Site URL" +#: ../../include/js_strings.php:10 +msgid "[-] collapse" msgstr "" -#: ../../mod/pubsites.php:26 -msgid "Access Type" +#: ../../include/js_strings.php:11 +msgid "Password too short" msgstr "" -#: ../../mod/pubsites.php:26 -msgid "Registration Policy" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" msgstr "" -#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 -msgid "Location" +#: ../../include/js_strings.php:13 ../../mod/photos.php:40 +msgid "everybody" msgstr "" -#: ../../mod/pubsites.php:26 -msgid "View hub ratings" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" msgstr "" -#: ../../mod/pubsites.php:30 -msgid "Rate" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" msgstr "" -#: ../../mod/pubsites.php:31 -msgid "View ratings" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "" -#: ../../mod/rpost.php:131 ../../mod/editpost.php:158 -msgid "Edit post" +#: ../../include/js_strings.php:17 +msgid "close all" msgstr "" -#: ../../mod/dav.php:121 -msgid "$Projectname channel" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" msgstr "" -#: ../../mod/group.php:20 -msgid "Collection created." +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" msgstr "" -#: ../../mod/group.php:26 -msgid "Could not create collection." +#: ../../include/js_strings.php:20 ../../mod/connedit.php:683 +#: ../../mod/rate.php:156 +msgid "Rating" msgstr "" -#: ../../mod/group.php:54 -msgid "Collection updated." +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" msgstr "" -#: ../../mod/group.php:86 -msgid "Create a collection of channels." +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 +#: ../../view/theme/redbasic/php/config.php:99 ../../mod/import.php:592 +#: ../../mod/mitem.php:235 ../../mod/locs.php:105 ../../mod/poke.php:166 +#: ../../mod/pdledit.php:58 ../../mod/invite.php:142 ../../mod/appman.php:99 +#: ../../mod/mood.php:134 ../../mod/chat.php:177 ../../mod/chat.php:211 +#: ../../mod/mail.php:355 ../../mod/group.php:81 ../../mod/admin.php:453 +#: ../../mod/admin.php:819 ../../mod/admin.php:986 ../../mod/admin.php:1118 +#: ../../mod/admin.php:1312 ../../mod/admin.php:1397 +#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108 +#: ../../mod/events.php:511 ../../mod/events.php:693 ../../mod/pconfig.php:108 +#: ../../mod/xchan.php:11 ../../mod/connect.php:93 ../../mod/connedit.php:704 +#: ../../mod/thing.php:303 ../../mod/thing.php:346 ../../mod/rate.php:167 +#: ../../mod/settings.php:588 ../../mod/settings.php:692 +#: ../../mod/settings.php:718 ../../mod/settings.php:746 +#: ../../mod/settings.php:769 ../../mod/settings.php:854 +#: ../../mod/settings.php:1050 ../../mod/setup.php:327 ../../mod/setup.php:367 +#: ../../mod/photos.php:577 ../../mod/photos.php:654 ../../mod/photos.php:941 +#: ../../mod/photos.php:981 ../../mod/photos.php:1099 +#: ../../mod/profiles.php:667 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 +msgid "Submit" msgstr "" -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" msgstr "" -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "" -#: ../../mod/group.php:107 -msgid "Collection removed." +#: ../../include/js_strings.php:26 +msgid "timeago.prefixAgo" msgstr "" -#: ../../mod/group.php:109 -msgid "Unable to remove collection." +#: ../../include/js_strings.php:27 +msgid "timeago.prefixFromNow" msgstr "" -#: ../../mod/group.php:182 -msgid "Collection Editor" +#: ../../include/js_strings.php:28 +msgid "ago" msgstr "" -#: ../../mod/group.php:196 ../../mod/bulksetclose.php:89 -msgid "Members" +#: ../../include/js_strings.php:29 +msgid "from now" msgstr "" -#: ../../mod/group.php:198 ../../mod/bulksetclose.php:91 -msgid "All Connected Channels" +#: ../../include/js_strings.php:30 +msgid "less than a minute" msgstr "" -#: ../../mod/group.php:233 ../../mod/bulksetclose.php:126 -msgid "Click on a channel to add or remove." +#: ../../include/js_strings.php:31 +msgid "about a minute" msgstr "" -#: ../../mod/siteinfo.php:112 +#: ../../include/js_strings.php:32 #, php-format -msgid "Version %s" -msgstr "" - -#: ../../mod/siteinfo.php:133 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: ../../mod/siteinfo.php:146 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: ../../mod/siteinfo.php:155 ../../mod/home.php:58 ../../mod/home.php:64 -msgid "$Projectname" -msgstr "" - -#: ../../mod/siteinfo.php:156 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "" - -#: ../../mod/siteinfo.php:158 -msgid "Tag: " -msgstr "" - -#: ../../mod/siteinfo.php:160 -msgid "Last background fetch: " -msgstr "" - -#: ../../mod/siteinfo.php:163 -msgid "Running at web location" -msgstr "" - -#: ../../mod/siteinfo.php:164 -msgid "" -"Please visit <a href=\"https://redmatrix.me\">redmatrix.me</a> to learn more " -"about $Projectname." -msgstr "" - -#: ../../mod/siteinfo.php:165 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../mod/siteinfo.php:167 -msgid "$projectname issues" -msgstr "" - -#: ../../mod/siteinfo.php:168 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" -msgstr "" - -#: ../../mod/siteinfo.php:170 -msgid "Site Administrators" -msgstr "" - -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "" - -#: ../../mod/item.php:440 -msgid "Empty post discarded." -msgstr "" - -#: ../../mod/item.php:480 -msgid "Executable content type not permitted to this channel." -msgstr "" - -#: ../../mod/item.php:914 -msgid "System error. Post not saved." -msgstr "" - -#: ../../mod/item.php:1146 -msgid "Unable to obtain post information from database." +msgid "%d minutes" msgstr "" -#: ../../mod/item.php:1153 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." +#: ../../include/js_strings.php:33 +msgid "about an hour" msgstr "" -#: ../../mod/item.php:1160 +#: ../../include/js_strings.php:34 #, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "" - -#: ../../mod/network.php:91 -msgid "No such group" -msgstr "" - -#: ../../mod/network.php:129 -msgid "No such channel" +msgid "about %d hours" msgstr "" -#: ../../mod/network.php:143 -msgid "Search Results For:" +#: ../../include/js_strings.php:35 +msgid "a day" msgstr "" -#: ../../mod/network.php:198 -msgid "Collection is empty" +#: ../../include/js_strings.php:36 +#, php-format +msgid "%d days" msgstr "" -#: ../../mod/network.php:207 -msgid "Collection: " +#: ../../include/js_strings.php:37 +msgid "about a month" msgstr "" -#: ../../mod/network.php:226 -msgid "Connection: " +#: ../../include/js_strings.php:38 +#, php-format +msgid "%d months" msgstr "" -#: ../../mod/network.php:233 -msgid "Invalid connection." +#: ../../include/js_strings.php:39 +msgid "about a year" msgstr "" -#: ../../mod/common.php:10 -msgid "No channel." +#: ../../include/js_strings.php:40 +#, php-format +msgid "%d years" msgstr "" -#: ../../mod/common.php:39 -msgid "Common connections" +#: ../../include/js_strings.php:41 +msgid " " msgstr "" -#: ../../mod/common.php:44 -msgid "No connections in common." +#: ../../include/js_strings.php:42 +msgid "timeago.numbers" msgstr "" -#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" msgstr "" -#: ../../mod/connections.php:52 ../../mod/connections.php:153 -msgid "Blocked" +#: ../../include/ItemObject.php:151 +msgid "I will attend" msgstr "" -#: ../../mod/connections.php:57 ../../mod/connections.php:160 -msgid "Ignored" +#: ../../include/ItemObject.php:151 +msgid "I will not attend" msgstr "" -#: ../../mod/connections.php:62 ../../mod/connections.php:174 -msgid "Hidden" +#: ../../include/ItemObject.php:151 +msgid "I might attend" msgstr "" -#: ../../mod/connections.php:67 ../../mod/connections.php:167 -msgid "Archived" +#: ../../include/ItemObject.php:161 +msgid "I agree" msgstr "" -#: ../../mod/connections.php:131 -msgid "Suggest new connections" +#: ../../include/ItemObject.php:161 +msgid "I disagree" msgstr "" -#: ../../mod/connections.php:134 -msgid "New Connections" +#: ../../include/ItemObject.php:161 +msgid "I abstain" msgstr "" -#: ../../mod/connections.php:137 -msgid "Show pending (new) connections" +#: ../../include/ItemObject.php:212 +msgid "Add Star" msgstr "" -#: ../../mod/connections.php:140 ../../mod/profperm.php:139 -msgid "All Connections" +#: ../../include/ItemObject.php:213 +msgid "Remove Star" msgstr "" -#: ../../mod/connections.php:143 -msgid "Show all connections" +#: ../../include/ItemObject.php:214 +msgid "Toggle Star Status" msgstr "" -#: ../../mod/connections.php:146 -msgid "Unblocked" +#: ../../include/ItemObject.php:218 +msgid "starred" msgstr "" -#: ../../mod/connections.php:149 -msgid "Only show unblocked connections" +#: ../../include/ItemObject.php:236 +msgid "Add Tag" msgstr "" -#: ../../mod/connections.php:156 -msgid "Only show blocked connections" +#: ../../include/ItemObject.php:254 ../../mod/photos.php:959 +msgid "I like this (toggle)" msgstr "" -#: ../../mod/connections.php:163 -msgid "Only show ignored connections" +#: ../../include/ItemObject.php:255 ../../mod/photos.php:960 +msgid "I don't like this (toggle)" msgstr "" -#: ../../mod/connections.php:170 -msgid "Only show archived connections" +#: ../../include/ItemObject.php:259 +msgid "Share This" msgstr "" -#: ../../mod/connections.php:177 -msgid "Only show hidden connections" +#: ../../include/ItemObject.php:259 +msgid "share" msgstr "" -#: ../../mod/connections.php:232 +#: ../../include/ItemObject.php:276 #, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../mod/connections.php:233 -msgid "Edit connection" -msgstr "" - -#: ../../mod/connections.php:271 -msgid "Search your connections" -msgstr "" - -#: ../../mod/connections.php:272 -msgid "Finding: " -msgstr "" - -#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 -msgid "Block Name" -msgstr "" - -#: ../../mod/blocks.php:149 -msgid "Block Title" -msgstr "" - -#: ../../mod/editpost.php:20 ../../mod/editlayout.php:76 -#: ../../mod/editwebpage.php:77 ../../mod/editblock.php:78 -#: ../../mod/editblock.php:94 -msgid "Item not found" -msgstr "" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "" - -#: ../../mod/editpost.php:48 -msgid "Delete item?" -msgstr "" - -#: ../../mod/editpost.php:115 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:187 ../../mod/editblock.php:144 -msgid "Insert YouTube video" -msgstr "" - -#: ../../mod/editpost.php:116 ../../mod/editlayout.php:143 -#: ../../mod/editwebpage.php:188 ../../mod/editblock.php:145 -msgid "Insert Vorbis [.ogg] video" -msgstr "" - -#: ../../mod/editpost.php:117 ../../mod/editlayout.php:144 -#: ../../mod/editwebpage.php:189 ../../mod/editblock.php:146 -msgid "Insert Vorbis [.ogg] audio" -msgstr "" - -#: ../../mod/cloud.php:120 -msgid "$Projectname - Guests: Username: {your email address}, Password: +++" -msgstr "" - -#: ../../mod/photos.php:78 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../mod/photos.php:98 -msgid "Album not found." -msgstr "" +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" -#: ../../mod/photos.php:120 ../../mod/photos.php:655 -msgid "Delete Album" +#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 +#, php-format +msgid "View %s's profile - %s" msgstr "" -#: ../../mod/photos.php:160 ../../mod/photos.php:942 -msgid "Delete Photo" +#: ../../include/ItemObject.php:298 +msgid "to" msgstr "" -#: ../../mod/photos.php:452 -msgid "No photos selected" +#: ../../include/ItemObject.php:299 +msgid "via" msgstr "" -#: ../../mod/photos.php:496 -msgid "Access to this item is restricted." +#: ../../include/ItemObject.php:300 +msgid "Wall-to-Wall" msgstr "" -#: ../../mod/photos.php:535 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." +#: ../../include/ItemObject.php:301 +msgid "via Wall-To-Wall:" msgstr "" -#: ../../mod/photos.php:538 -#, php-format -msgid "%1$.2f MB photo storage used." +#: ../../include/ItemObject.php:337 +msgid "Save Bookmarks" msgstr "" -#: ../../mod/photos.php:562 -msgid "Upload Photos" +#: ../../include/ItemObject.php:338 +msgid "Add to Calendar" msgstr "" -#: ../../mod/photos.php:566 ../../mod/photos.php:648 ../../mod/photos.php:927 -msgid "Enter a new album name" +#: ../../include/ItemObject.php:347 +msgid "Mark all seen" msgstr "" -#: ../../mod/photos.php:567 ../../mod/photos.php:649 ../../mod/photos.php:928 -msgid "or select an existing one (doubleclick)" +#: ../../include/ItemObject.php:353 ../../mod/photos.php:1145 +msgctxt "noun" +msgid "Likes" msgstr "" -#: ../../mod/photos.php:568 -msgid "Create a status post for this upload" +#: ../../include/ItemObject.php:354 ../../mod/photos.php:1146 +msgctxt "noun" +msgid "Dislikes" msgstr "" -#: ../../mod/photos.php:596 -msgid "Album name could not be decoded" +#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 +#: ../../mod/photos.php:1151 +msgid "Close" msgstr "" -#: ../../mod/photos.php:637 ../../mod/photos.php:1169 -#: ../../mod/photos.php:1185 -msgid "Contact Photos" +#: ../../include/ItemObject.php:665 ../../mod/photos.php:978 +#: ../../mod/photos.php:1096 +msgid "This is you" msgstr "" -#: ../../mod/photos.php:661 -msgid "Show Newest First" +#: ../../include/ItemObject.php:674 +msgid "Image" msgstr "" -#: ../../mod/photos.php:663 -msgid "Show Oldest First" +#: ../../include/ItemObject.php:675 +msgid "Insert Link" msgstr "" -#: ../../mod/photos.php:687 ../../mod/photos.php:1217 -msgid "View Photo" +#: ../../include/ItemObject.php:676 +msgid "Video" msgstr "" -#: ../../mod/photos.php:716 -msgid "Edit Album" +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" msgstr "" -#: ../../mod/photos.php:761 -msgid "Permission denied. Access to this item may be restricted." +#: ../../include/acl_selectors.php:241 +msgid "Show" msgstr "" -#: ../../mod/photos.php:763 -msgid "Photo not available" +#: ../../include/acl_selectors.php:242 +msgid "Don't show" msgstr "" -#: ../../mod/photos.php:821 -msgid "Use as profile photo" +#: ../../include/acl_selectors.php:248 ../../mod/chat.php:209 +#: ../../mod/filestorage.php:147 ../../mod/events.php:691 +#: ../../mod/photos.php:571 ../../mod/photos.php:934 +msgid "Permissions" msgstr "" -#: ../../mod/photos.php:828 -msgid "Private Photo" +#: ../../index.php:238 ../../mod/help.php:76 +msgid "Not Found" msgstr "" -#: ../../mod/photos.php:843 -msgid "View Full Size" +#: ../../index.php:241 ../../mod/page.php:89 ../../mod/block.php:75 +#: ../../mod/display.php:110 ../../mod/help.php:79 +msgid "Page not found." msgstr "" -#: ../../mod/photos.php:921 -msgid "Edit photo" +#: ../../view/theme/redbasic/php/config.php:82 +msgid "Light (Red Matrix default)" msgstr "" -#: ../../mod/photos.php:923 -msgid "Rotate CW (right)" +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Theme settings" msgstr "" -#: ../../mod/photos.php:924 -msgid "Rotate CCW (left)" +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Select scheme" msgstr "" -#: ../../mod/photos.php:931 -msgid "Caption" +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Narrow navbar" msgstr "" -#: ../../mod/photos.php:933 -msgid "Add a Tag" +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Navigation bar background color" msgstr "" -#: ../../mod/photos.php:937 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Navigation bar gradient top color" msgstr "" -#: ../../mod/photos.php:940 -msgid "Flag as adult in album view" +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Navigation bar gradient bottom color" msgstr "" -#: ../../mod/photos.php:1132 -msgid "In This Photo:" +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Navigation active button gradient top color" msgstr "" -#: ../../mod/photos.php:1137 -msgid "Map" +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Navigation active button gradient bottom color" msgstr "" -#: ../../mod/photos.php:1223 -msgid "View Album" +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Navigation bar border color " msgstr "" -#: ../../mod/photos.php:1246 -msgid "Recent Photos" +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Navigation bar icon color " msgstr "" -#: ../../mod/search.php:206 -#, php-format -msgid "Items tagged with: %s" +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Navigation bar active icon color " msgstr "" -#: ../../mod/search.php:208 -#, php-format -msgid "Search results for: %s" +#: ../../view/theme/redbasic/php/config.php:113 +msgid "link color" msgstr "" -#: ../../mod/match.php:22 -msgid "Profile Match" +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set font-color for banner" msgstr "" -#: ../../mod/match.php:31 -msgid "No keywords to match. Please add keywords to your default profile." +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Set the background color" msgstr "" -#: ../../mod/match.php:63 -msgid "is interested in:" +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Set the background image" msgstr "" -#: ../../mod/match.php:70 -msgid "No matches" +#: ../../view/theme/redbasic/php/config.php:117 +msgid "Set the background color of items" msgstr "" -#: ../../mod/chatsvc.php:111 -msgid "Away" +#: ../../view/theme/redbasic/php/config.php:118 +msgid "Set the background color of comments" msgstr "" -#: ../../mod/chatsvc.php:115 -msgid "Online" +#: ../../view/theme/redbasic/php/config.php:119 +msgid "Set the border color of comments" msgstr "" -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" +#: ../../view/theme/redbasic/php/config.php:120 +msgid "Set the indent for comments" msgstr "" -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" +#: ../../view/theme/redbasic/php/config.php:121 +msgid "Set the basic color for item icons" msgstr "" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" +#: ../../view/theme/redbasic/php/config.php:122 +msgid "Set the hover color for item icons" msgstr "" -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Set font-size for the entire application" msgstr "" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Example: 14px" msgstr "" -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" msgstr "" -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" +#: ../../view/theme/redbasic/php/config.php:125 +msgid "Set font-color for posts and comments" msgstr "" -#: ../../mod/acl.php:231 -msgid "network" +#: ../../view/theme/redbasic/php/config.php:126 +msgid "Set radius of corners" msgstr "" -#: ../../mod/acl.php:241 -msgid "RSS" +#: ../../view/theme/redbasic/php/config.php:127 +msgid "Set shadow depth of photos" msgstr "" -#: ../../mod/pdledit.php:13 -msgid "Layout updated." +#: ../../view/theme/redbasic/php/config.php:128 +msgid "Set maximum width of content region in pixel" msgstr "" -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" +#: ../../view/theme/redbasic/php/config.php:128 +msgid "Leave empty for default width" msgstr "" -#: ../../mod/pdledit.php:48 -msgid "Layout not found." +#: ../../view/theme/redbasic/php/config.php:129 +msgid "Center page content" msgstr "" -#: ../../mod/pdledit.php:54 -msgid "Module Name:" +#: ../../view/theme/redbasic/php/config.php:130 +msgid "Set minimum opacity of nav bar - to hide it" msgstr "" -#: ../../mod/pdledit.php:55 -msgid "Layout Help" +#: ../../view/theme/redbasic/php/config.php:131 +msgid "Set size of conversation author photo" msgstr "" -#: ../../mod/filer.php:49 -msgid "- select -" +#: ../../view/theme/redbasic/php/config.php:132 +msgid "Set size of followup author photos" msgstr "" #: ../../mod/import.php:25 @@ -5169,62 +4160,42 @@ msgid "" "only once and leave this page open until finished." msgstr "" -#: ../../mod/editlayout.php:111 -msgid "Delete layout?" -msgstr "" - -#: ../../mod/editlayout.php:158 ../../mod/layouts.php:124 -msgid "Layout Description (Optional)" -msgstr "" - -#: ../../mod/editlayout.php:160 ../../mod/layouts.php:121 -#: ../../mod/layouts.php:179 -msgid "Layout Name" -msgstr "" - -#: ../../mod/editlayout.php:177 -msgid "Edit Layout" -msgstr "" - -#: ../../mod/chat.php:19 ../../mod/channel.php:25 -msgid "You must be logged in to see this page." -msgstr "" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "" - -#: ../../mod/chat.php:178 -msgid "Leave Room" +#: ../../mod/search.php:13 ../../mod/ratings.php:82 ../../mod/display.php:13 +#: ../../mod/viewconnections.php:17 ../../mod/directory.php:59 +#: ../../mod/photos.php:441 +msgid "Public access denied." msgstr "" -#: ../../mod/chat.php:179 -msgid "Delete This Room" +#: ../../mod/search.php:206 +#, php-format +msgid "Items tagged with: %s" msgstr "" -#: ../../mod/chat.php:180 -msgid "I am away right now" +#: ../../mod/search.php:208 +#, php-format +msgid "Search results for: %s" msgstr "" -#: ../../mod/chat.php:181 -msgid "I am online" +#: ../../mod/acl.php:231 +msgid "network" msgstr "" -#: ../../mod/chat.php:183 -msgid "Bookmark this room" +#: ../../mod/acl.php:241 +msgid "RSS" msgstr "" -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" +#: ../../mod/update_network.php:23 ../../mod/update_display.php:25 +#: ../../mod/update_channel.php:43 ../../mod/update_home.php:21 +#: ../../mod/update_public.php:21 ../../mod/update_search.php:46 +msgid "[Embedded content - reload page to view]" msgstr "" -#: ../../mod/chat.php:208 -msgid "Chatroom Name" +#: ../../mod/chatsvc.php:111 +msgid "Away" msgstr "" -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" +#: ../../mod/chatsvc.php:115 +msgid "Online" msgstr "" #: ../../mod/mitem.php:24 ../../mod/menu.php:138 @@ -5243,6 +4214,10 @@ msgstr "" msgid "Unable to add menu element." msgstr "" +#: ../../mod/mitem.php:116 ../../mod/menu.php:160 ../../mod/xchan.php:37 +msgid "Not found." +msgstr "" + #: ../../mod/mitem.php:154 ../../mod/mitem.php:226 msgid "Menu Item Permissions" msgstr "" @@ -5347,187 +4322,122 @@ msgstr "" msgid "Link text" msgstr "" -#: ../../mod/editwebpage.php:152 -msgid "Delete webpage?" -msgstr "" - -#: ../../mod/editwebpage.php:173 -msgid "Page link title" -msgstr "" - -#: ../../mod/editwebpage.php:224 -msgid "Edit Webpage" -msgstr "" - -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "" - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 -#, php-format -msgid "Site Member (%s)" +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../mod/lostpass.php:40 +#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:287 #, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: ../../mod/lostpass.php:86 ../../boot.php:1558 -msgid "Password Reset" -msgstr "" - -#: ../../mod/lostpass.php:87 -msgid "Your password has been reset as requested." -msgstr "" - -#: ../../mod/lostpass.php:88 -msgid "Your new password is" -msgstr "" - -#: ../../mod/lostpass.php:89 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../mod/lostpass.php:90 -msgid "click here to login" +msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../mod/lostpass.php:91 -msgid "" -"Your password may be changed from the <em>Settings</em> page after " -"successful login." +#: ../../mod/rpost.php:131 ../../mod/editpost.php:158 +msgid "Edit post" msgstr "" -#: ../../mod/lostpass.php:108 -#, php-format -msgid "Your password has changed at %s" +#: ../../mod/page.php:36 ../../mod/block.php:27 +msgid "Invalid item." msgstr "" -#: ../../mod/lostpass.php:123 -msgid "Forgot your Password?" +#: ../../mod/page.php:52 ../../mod/wall_upload.php:29 ../../mod/block.php:39 +msgid "Channel not found." msgstr "" -#: ../../mod/lostpass.php:124 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../mod/page.php:126 +msgid "Lorem Ipsum" msgstr "" -#: ../../mod/lostpass.php:125 -msgid "Email Address" +#: ../../mod/menu.php:45 +msgid "Unable to update menu." msgstr "" -#: ../../mod/lostpass.php:126 -msgid "Reset" +#: ../../mod/menu.php:56 +msgid "Unable to create menu." msgstr "" -#: ../../mod/rate.php:157 -msgid "Website:" +#: ../../mod/menu.php:92 ../../mod/menu.php:104 +msgid "Menu Name" msgstr "" -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" +#: ../../mod/menu.php:92 +msgid "Unique name (not visible on webpage) - required" msgstr "" -#: ../../mod/rate.php:161 -msgid "Rating (this information is public)" +#: ../../mod/menu.php:93 ../../mod/menu.php:105 +msgid "Menu Title" msgstr "" -#: ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" +#: ../../mod/menu.php:93 +msgid "Visible on webpage - leave empty for no title" msgstr "" -#: ../../mod/editblock.php:117 -msgid "Delete block?" +#: ../../mod/menu.php:94 +msgid "Allow Bookmarks" msgstr "" -#: ../../mod/editblock.php:179 -msgid "Edit Block" +#: ../../mod/menu.php:94 ../../mod/menu.php:151 +msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." +#: ../../mod/menu.php:95 ../../mod/menu.php:153 +msgid "Submit and proceed" msgstr "" -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." +#: ../../mod/menu.php:107 +msgid "Drop" msgstr "" -#: ../../mod/invite.php:76 -msgid "Please join us on Red" +#: ../../mod/menu.php:111 +msgid "Bookmarks allowed" msgstr "" -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." +#: ../../mod/menu.php:113 +msgid "Delete this menu" msgstr "" -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." +#: ../../mod/menu.php:114 ../../mod/menu.php:148 +msgid "Edit menu contents" msgstr "" -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" +#: ../../mod/menu.php:115 +msgid "Edit this menu" msgstr "" -#: ../../mod/invite.php:129 -msgid "Send invitations" +#: ../../mod/menu.php:130 +msgid "Menu could not be deleted." msgstr "" -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" +#: ../../mod/menu.php:143 +msgid "Edit Menu" msgstr "" -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" +#: ../../mod/menu.php:147 +msgid "Add or remove entries to this menu" msgstr "" -#: ../../mod/invite.php:132 -msgid "Please join my community on $Projectname." +#: ../../mod/menu.php:149 +msgid "Menu name" msgstr "" -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " +#: ../../mod/menu.php:149 +msgid "Must be unique, only seen by you" msgstr "" -#: ../../mod/invite.php:135 -msgid "1. Register at any $Projectname location (they are all inter-connected)" +#: ../../mod/menu.php:150 +msgid "Menu title" msgstr "" -#: ../../mod/invite.php:137 -msgid "2. Enter my $Projectname network address into the site searchbar." +#: ../../mod/menu.php:150 +msgid "Menu title as seen by others" msgstr "" -#: ../../mod/invite.php:138 -msgid "or visit " +#: ../../mod/menu.php:151 +msgid "Allow bookmarks" msgstr "" -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" +#: ../../mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" #: ../../mod/locs.php:21 ../../mod/locs.php:52 @@ -5558,1004 +4468,960 @@ msgstr "" msgid "Drop location" msgstr "" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "" - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "" - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "" - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." +#: ../../mod/poke.php:159 +msgid "Poke/Prod" msgstr "" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" msgstr "" -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +#: ../../mod/poke.php:161 +msgid "Recipient" msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" +#: ../../mod/poke.php:165 +msgid "Make this post private" msgstr "" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" +#: ../../mod/layouts.php:121 ../../mod/layouts.php:179 +#: ../../mod/editlayout.php:160 +msgid "Layout Name" msgstr "" -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." +#: ../../mod/layouts.php:124 ../../mod/editlayout.php:158 +msgid "Layout Description (Optional)" msgstr "" -#: ../../mod/sources.php:130 -msgid "Edit Source" +#: ../../mod/layouts.php:176 +msgid "Comanche page description language help" msgstr "" -#: ../../mod/sources.php:131 -msgid "Delete Source" +#: ../../mod/layouts.php:180 +msgid "Layout Description" msgstr "" -#: ../../mod/sources.php:158 -msgid "Source removed" +#: ../../mod/layouts.php:185 +msgid "Download PDL file" msgstr "" -#: ../../mod/sources.php:160 -msgid "Unable to remove source." +#: ../../mod/lostpass.php:15 +msgid "No valid account found." msgstr "" -#: ../../mod/menu.php:45 -msgid "Unable to update menu." +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../mod/menu.php:56 -msgid "Unable to create menu." +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 +#, php-format +msgid "Site Member (%s)" msgstr "" -#: ../../mod/menu.php:92 ../../mod/menu.php:104 -msgid "Menu Name" +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" msgstr "" -#: ../../mod/menu.php:92 -msgid "Unique name (not visible on webpage) - required" +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../mod/menu.php:93 ../../mod/menu.php:105 -msgid "Menu Title" +#: ../../mod/lostpass.php:86 ../../boot.php:1558 +msgid "Password Reset" msgstr "" -#: ../../mod/menu.php:93 -msgid "Visible on webpage - leave empty for no title" +#: ../../mod/lostpass.php:87 +msgid "Your password has been reset as requested." msgstr "" -#: ../../mod/menu.php:94 -msgid "Allow Bookmarks" +#: ../../mod/lostpass.php:88 +msgid "Your new password is" msgstr "" -#: ../../mod/menu.php:94 ../../mod/menu.php:151 -msgid "Menu may be used to store saved bookmarks" +#: ../../mod/lostpass.php:89 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../mod/menu.php:95 ../../mod/menu.php:153 -msgid "Submit and proceed" +#: ../../mod/lostpass.php:90 +msgid "click here to login" msgstr "" -#: ../../mod/menu.php:107 -msgid "Drop" +#: ../../mod/lostpass.php:91 +msgid "" +"Your password may be changed from the <em>Settings</em> page after " +"successful login." msgstr "" -#: ../../mod/menu.php:111 -msgid "Bookmarks allowed" +#: ../../mod/lostpass.php:108 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../mod/menu.php:113 -msgid "Delete this menu" +#: ../../mod/lostpass.php:123 +msgid "Forgot your Password?" msgstr "" -#: ../../mod/menu.php:114 ../../mod/menu.php:148 -msgid "Edit menu contents" +#: ../../mod/lostpass.php:124 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../mod/menu.php:115 -msgid "Edit this menu" +#: ../../mod/lostpass.php:125 +msgid "Email Address" msgstr "" -#: ../../mod/menu.php:130 -msgid "Menu could not be deleted." +#: ../../mod/lostpass.php:126 +msgid "Reset" msgstr "" -#: ../../mod/menu.php:143 -msgid "Edit Menu" +#: ../../mod/pdledit.php:13 +msgid "Layout updated." msgstr "" -#: ../../mod/menu.php:147 -msgid "Add or remove entries to this menu" +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" msgstr "" -#: ../../mod/menu.php:149 -msgid "Menu name" +#: ../../mod/pdledit.php:48 +msgid "Layout not found." msgstr "" -#: ../../mod/menu.php:149 -msgid "Must be unique, only seen by you" +#: ../../mod/pdledit.php:54 +msgid "Module Name:" msgstr "" -#: ../../mod/menu.php:150 -msgid "Menu title" +#: ../../mod/pdledit.php:55 +msgid "Layout Help" msgstr "" -#: ../../mod/menu.php:150 -msgid "Menu title as seen by others" +#: ../../mod/removeaccount.php:30 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../mod/menu.php:151 -msgid "Allow bookmarks" +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" msgstr "" -#: ../../mod/filestorage.php:82 -msgid "Permission Denied." +#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 +msgid "WARNING: " msgstr "" -#: ../../mod/filestorage.php:98 -msgid "File not found." +#: ../../mod/removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " msgstr "" -#: ../../mod/filestorage.php:141 -msgid "Edit file permissions" +#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 +msgid "This action is permanent and can not be undone!" msgstr "" -#: ../../mod/filestorage.php:150 -msgid "Set/edit permissions" +#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 +msgid "Please enter your password for verification:" msgstr "" -#: ../../mod/filestorage.php:151 -msgid "Include all files and sub folders" +#: ../../mod/removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" msgstr "" -#: ../../mod/filestorage.php:152 -msgid "Return to file list" +#: ../../mod/removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" msgstr "" -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this code to attach file to a post" +#: ../../mod/removeaccount.php:61 ../../mod/settings.php:720 +msgid "Remove Account" msgstr "" -#: ../../mod/filestorage.php:155 -msgid "Copy/paste this URL to link file from a web page" +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." msgstr "" -#: ../../mod/filestorage.php:157 -msgid "Share this file" +#: ../../mod/channel.php:97 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../mod/filestorage.php:158 -msgid "Show URL to this file" +#: ../../mod/editblock.php:78 ../../mod/editblock.php:94 +#: ../../mod/editlayout.php:76 ../../mod/editpost.php:20 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" msgstr "" -#: ../../mod/filestorage.php:159 -msgid "Notify your contacts about this file" +#: ../../mod/editblock.php:117 +msgid "Delete block?" msgstr "" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." +#: ../../mod/editblock.php:144 ../../mod/editlayout.php:142 +#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:187 +msgid "Insert YouTube video" msgstr "" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." +#: ../../mod/editblock.php:145 ../../mod/editlayout.php:143 +#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:188 +msgid "Insert Vorbis [.ogg] video" msgstr "" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" +#: ../../mod/editblock.php:146 ../../mod/editlayout.php:144 +#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:189 +msgid "Insert Vorbis [.ogg] audio" msgstr "" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" +#: ../../mod/editblock.php:179 +msgid "Edit Block" msgstr "" #: ../../mod/magic.php:69 msgid "Hub not found." msgstr "" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" +#: ../../mod/attach.php:9 +msgid "Item not available." msgstr "" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." msgstr "" -#: ../../mod/poke.php:161 -msgid "Recipient" +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." msgstr "" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" +#: ../../mod/invite.php:76 +msgid "Please join us on Red" msgstr "" -#: ../../mod/poke.php:165 -msgid "Make this post private" +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." msgstr "" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "" +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" msgstr "" -#: ../../mod/profperm.php:123 -msgid "Visible To" +#: ../../mod/invite.php:129 +msgid "Send invitations" msgstr "" -#: ../../mod/impel.php:191 -#, php-format -msgid "%s element installed" +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../mod/impel.php:194 -#, php-format -msgid "%s element installation failed" +#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 +msgid "Your message:" msgstr "" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." +#: ../../mod/invite.php:132 +msgid "Please join my community on $Projectname." msgstr "" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " msgstr "" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" +#: ../../mod/invite.php:135 +msgid "1. Register at any $Projectname location (they are all inter-connected)" msgstr "" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." +#: ../../mod/invite.php:137 +msgid "2. Enter my $Projectname network address into the site searchbar." msgstr "" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." +#: ../../mod/invite.php:138 +msgid "or visit " msgstr "" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" msgstr "" -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." +#: ../../mod/ratings.php:69 +msgid "No ratings" msgstr "" -#: ../../mod/profiles.php:404 -msgid "Marital Status" +#: ../../mod/ratings.php:99 +msgid "Ratings" msgstr "" -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" +#: ../../mod/ratings.php:100 +msgid "Rating: " msgstr "" -#: ../../mod/profiles.php:412 -msgid "Likes" +#: ../../mod/ratings.php:101 +msgid "Website: " msgstr "" -#: ../../mod/profiles.php:416 -msgid "Dislikes" +#: ../../mod/ratings.php:103 +msgid "Description: " msgstr "" -#: ../../mod/profiles.php:420 -msgid "Work/Employment" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." msgstr "" -#: ../../mod/profiles.php:423 -msgid "Religion" +#: ../../mod/notifications.php:35 +msgid "Discard" msgstr "" -#: ../../mod/profiles.php:427 -msgid "Political Views" +#: ../../mod/notifications.php:51 ../../mod/connedit.php:539 +msgid "Ignore" msgstr "" -#: ../../mod/profiles.php:431 ../../mod/id.php:33 -msgid "Gender" +#: ../../mod/notifications.php:94 ../../mod/notify.php:53 +msgid "No more system notifications." msgstr "" -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" +#: ../../mod/notifications.php:98 ../../mod/notify.php:57 +msgid "System Notifications" msgstr "" -#: ../../mod/profiles.php:439 -msgid "Homepage" +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." msgstr "" -#: ../../mod/profiles.php:443 -msgid "Interests" +#: ../../mod/appman.php:37 +msgid "Malformed app." msgstr "" -#: ../../mod/profiles.php:447 ../../mod/admin.php:994 -msgid "Address" +#: ../../mod/appman.php:80 +msgid "Embed code" msgstr "" -#: ../../mod/profiles.php:537 -msgid "Profile updated." +#: ../../mod/appman.php:86 +msgid "Edit App" msgstr "" -#: ../../mod/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" +#: ../../mod/appman.php:86 +msgid "Create App" msgstr "" -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" +#: ../../mod/appman.php:91 +msgid "Name of app" msgstr "" -#: ../../mod/profiles.php:668 -msgid "View this profile" +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" msgstr "" -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" +#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 +msgid "Description" msgstr "" -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" +#: ../../mod/appman.php:94 +msgid "Photo icon URL" msgstr "" -#: ../../mod/profiles.php:672 -msgid "Clone this profile" +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" msgstr "" -#: ../../mod/profiles.php:673 -msgid "Delete this profile" +#: ../../mod/appman.php:95 +msgid "Version ID" msgstr "" -#: ../../mod/profiles.php:675 -msgid "Import profile from file" +#: ../../mod/appman.php:96 +msgid "Price of app" msgstr "" -#: ../../mod/profiles.php:676 -msgid "Export profile to file" +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" msgstr "" -#: ../../mod/profiles.php:677 -msgid "Profile Name:" +#: ../../mod/viewsrc.php:38 +msgid "Source of Item" msgstr "" -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" +#: ../../mod/post.php:236 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." msgstr "" -#: ../../mod/profiles.php:679 -msgid "Title/Description:" +#: ../../mod/match.php:22 +msgid "Profile Match" msgstr "" -#: ../../mod/profiles.php:680 -msgid "Your Gender:" +#: ../../mod/match.php:31 +msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: ../../mod/profiles.php:681 -msgid "Birthday :" +#: ../../mod/match.php:63 +msgid "is interested in:" msgstr "" -#: ../../mod/profiles.php:682 -msgid "Street Address:" +#: ../../mod/match.php:70 +msgid "No matches" msgstr "" -#: ../../mod/profiles.php:683 -msgid "Locality/City:" +#: ../../mod/lockview.php:37 +msgid "Remote privacy information not available." msgstr "" -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" +#: ../../mod/lockview.php:58 +msgid "Visible to:" msgstr "" -#: ../../mod/profiles.php:685 -msgid "Country:" +#: ../../mod/mood.php:131 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../mod/profiles.php:686 -msgid "Region/State:" +#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 +msgid "Help:" msgstr "" -#: ../../mod/profiles.php:687 -msgid "<span class=\"heart\">♥</span> Marital Status:" +#: ../../mod/help.php:100 +msgid "$Projectname Documentation" msgstr "" -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" +#: ../../mod/manage.php:136 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/manage.php:144 +msgid "Create a new channel" msgstr "" -#: ../../mod/profiles.php:690 -msgid "Since [date]:" +#: ../../mod/manage.php:167 +msgid "Current Channel" msgstr "" -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" +#: ../../mod/manage.php:169 +msgid "Switch to one of your channels by selecting it." msgstr "" -#: ../../mod/profiles.php:695 -msgid "Religious Views:" +#: ../../mod/manage.php:170 +msgid "Default Channel" msgstr "" -#: ../../mod/profiles.php:696 -msgid "Keywords:" +#: ../../mod/manage.php:171 +msgid "Make Default" msgstr "" -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" +#: ../../mod/manage.php:174 +#, php-format +msgid "%d new messages" msgstr "" -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" +#: ../../mod/manage.php:175 +#, php-format +msgid "%d new introductions" msgstr "" -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." +#: ../../mod/manage.php:177 +msgid "Delegated Channels" msgstr "" -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" +#: ../../mod/regmod.php:11 +msgid "Please login." msgstr "" -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" +#: ../../mod/id.php:11 +msgid "First Name" msgstr "" -#: ../../mod/profiles.php:704 -msgid "My other channels" +#: ../../mod/id.php:12 +msgid "Last Name" msgstr "" -#: ../../mod/profiles.php:705 -msgid "Musical interests" +#: ../../mod/id.php:13 +msgid "Nickname" msgstr "" -#: ../../mod/profiles.php:706 -msgid "Books, literature" +#: ../../mod/id.php:14 +msgid "Full Name" msgstr "" -#: ../../mod/profiles.php:707 -msgid "Television" +#: ../../mod/id.php:20 +msgid "Profile Photo 16px" msgstr "" -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" +#: ../../mod/id.php:21 +msgid "Profile Photo 32px" msgstr "" -#: ../../mod/profiles.php:709 -msgid "Love/romance" +#: ../../mod/id.php:22 +msgid "Profile Photo 48px" msgstr "" -#: ../../mod/profiles.php:710 -msgid "Work/employment" +#: ../../mod/id.php:23 +msgid "Profile Photo 64px" msgstr "" -#: ../../mod/profiles.php:711 -msgid "School/education" +#: ../../mod/id.php:24 +msgid "Profile Photo 80px" msgstr "" -#: ../../mod/profiles.php:717 -msgid "This is your default profile." +#: ../../mod/id.php:25 +msgid "Profile Photo 128px" msgstr "" -#: ../../mod/profiles.php:728 -msgid "Age: " +#: ../../mod/id.php:26 +msgid "Timezone" msgstr "" -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" +#: ../../mod/id.php:27 +msgid "Homepage URL" msgstr "" -#: ../../mod/profiles.php:772 -msgid "Add profile things" +#: ../../mod/id.php:29 +msgid "Birth Year" msgstr "" -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" +#: ../../mod/id.php:30 +msgid "Birth Month" msgstr "" -#: ../../mod/ratings.php:69 -msgid "No ratings" +#: ../../mod/id.php:31 +msgid "Birth Day" msgstr "" -#: ../../mod/ratings.php:99 -msgid "Ratings" +#: ../../mod/id.php:32 +msgid "Birthdate" msgstr "" -#: ../../mod/ratings.php:100 -msgid "Rating: " +#: ../../mod/id.php:33 ../../mod/profiles.php:431 +msgid "Gender" msgstr "" -#: ../../mod/ratings.php:101 -msgid "Website: " +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" msgstr "" -#: ../../mod/ratings.php:103 -msgid "Description: " +#: ../../mod/new_channel.php:110 +msgid "" +"A channel is your own collection of related web pages. A channel can be used " +"to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." msgstr "" -#: ../../mod/viewsrc.php:38 -msgid "Source of Item" +#: ../../mod/new_channel.php:112 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" msgstr "" -#: ../../mod/setup.php:187 -msgid "$Projectname Server - Setup" +#: ../../mod/new_channel.php:113 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\" " msgstr "" -#: ../../mod/setup.php:191 -msgid "Could not connect to database." +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" msgstr "" -#: ../../mod/setup.php:195 +#: ../../mod/new_channel.php:115 msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "" - -#: ../../mod/setup.php:202 -msgid "Could not create table." +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." msgstr "" -#: ../../mod/setup.php:207 -msgid "Your site database has been installed." +#: ../../mod/new_channel.php:116 +msgid "" +"Or <a href=\"import\">import an existing channel</a> from another location" msgstr "" -#: ../../mod/setup.php:211 +#: ../../mod/new_channel.php:118 msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +"Please choose a channel type (such as social networking or community forum) " +"and privacy requirements so we can select the best permissions for you" msgstr "" -#: ../../mod/setup.php:212 ../../mod/setup.php:280 ../../mod/setup.php:730 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../mod/new_channel.php:119 +msgid "Channel Type" msgstr "" -#: ../../mod/setup.php:277 -msgid "System check" +#: ../../mod/new_channel.php:119 +msgid "Read more about roles" msgstr "" -#: ../../mod/setup.php:282 -msgid "Check again" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." msgstr "" -#: ../../mod/setup.php:304 -msgid "Database connection" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" msgstr "" -#: ../../mod/setup.php:305 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../mod/setup.php:306 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../mod/profperm.php:123 +msgid "Visible To" msgstr "" -#: ../../mod/setup.php:307 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../mod/profperm.php:139 ../../mod/connections.php:140 +msgid "All Connections" msgstr "" -#: ../../mod/setup.php:311 -msgid "Database Server Name" +#: ../../mod/cloud.php:120 +msgid "$Projectname - Guests: Username: {your email address}, Password: +++" msgstr "" -#: ../../mod/setup.php:311 -msgid "Default is localhost" +#: ../../mod/home.php:58 ../../mod/home.php:64 ../../mod/siteinfo.php:155 +msgid "$Projectname" msgstr "" -#: ../../mod/setup.php:312 -msgid "Database Port" +#: ../../mod/home.php:73 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../mod/setup.php:312 -msgid "Communication port number - use 0 for default" +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" msgstr "" -#: ../../mod/setup.php:313 -msgid "Database Login Name" +#: ../../mod/chat.php:167 +msgid "Room not found" msgstr "" -#: ../../mod/setup.php:314 -msgid "Database Login Password" +#: ../../mod/chat.php:178 +msgid "Leave Room" msgstr "" -#: ../../mod/setup.php:315 -msgid "Database Name" +#: ../../mod/chat.php:179 +msgid "Delete This Room" msgstr "" -#: ../../mod/setup.php:316 -msgid "Database Type" +#: ../../mod/chat.php:180 +msgid "I am away right now" msgstr "" -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "Site administrator email address" +#: ../../mod/chat.php:181 +msgid "I am online" msgstr "" -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +#: ../../mod/chat.php:183 +msgid "Bookmark this room" msgstr "" -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Website URL" +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" msgstr "" -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Please use SSL (https) URL if available." +#: ../../mod/chat.php:208 +msgid "Chatroom Name" msgstr "" -#: ../../mod/setup.php:321 ../../mod/setup.php:363 -msgid "Please select a default timezone for your website" +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" msgstr "" -#: ../../mod/setup.php:348 -msgid "Site settings" +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." msgstr "" -#: ../../mod/setup.php:413 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." msgstr "" -#: ../../mod/setup.php:414 -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." +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." msgstr "" -#: ../../mod/setup.php:418 -msgid "PHP executable path" +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." msgstr "" -#: ../../mod/setup.php:418 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: ../../mod/mail.php:139 +msgid "Message deleted." msgstr "" -#: ../../mod/setup.php:423 -msgid "Command line PHP" +#: ../../mod/mail.php:156 +msgid "Message recalled." msgstr "" -#: ../../mod/setup.php:432 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +#: ../../mod/mail.php:225 +msgid "Send Private Message" msgstr "" -#: ../../mod/setup.php:433 -msgid "This is required for message delivery to work." +#: ../../mod/mail.php:226 ../../mod/mail.php:343 +msgid "To:" msgstr "" -#: ../../mod/setup.php:436 -msgid "PHP register_argc_argv" +#: ../../mod/mail.php:231 ../../mod/mail.php:345 +msgid "Subject:" msgstr "" -#: ../../mod/setup.php:454 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." +#: ../../mod/mail.php:242 +msgid "Send" msgstr "" -#: ../../mod/setup.php:459 -msgid "You can adjust these settings in the servers php.ini." +#: ../../mod/mail.php:269 +msgid "Message not found." msgstr "" -#: ../../mod/setup.php:461 -msgid "PHP upload limits" +#: ../../mod/mail.php:312 +msgid "Delete message" msgstr "" -#: ../../mod/setup.php:484 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../mod/mail.php:313 +msgid "Recall message" msgstr "" -#: ../../mod/setup.php:485 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../mod/mail.php:315 +msgid "Message has been recalled." msgstr "" -#: ../../mod/setup.php:488 -msgid "Generate encryption keys" +#: ../../mod/mail.php:332 +msgid "Private Conversation" msgstr "" -#: ../../mod/setup.php:500 -msgid "libCurl PHP module" +#: ../../mod/mail.php:336 ../../mod/message.php:72 +msgid "Delete conversation" msgstr "" -#: ../../mod/setup.php:501 -msgid "GD graphics PHP module" +#: ../../mod/mail.php:338 +msgid "" +"No secure communications available. You <strong>may</strong> be able to " +"respond from the sender's profile page." msgstr "" -#: ../../mod/setup.php:502 -msgid "OpenSSL PHP module" +#: ../../mod/mail.php:342 +msgid "Send Reply" msgstr "" -#: ../../mod/setup.php:503 -msgid "mysqli or postgres PHP module" +#: ../../mod/group.php:20 +msgid "Collection created." msgstr "" -#: ../../mod/setup.php:504 -msgid "mb_string PHP module" +#: ../../mod/group.php:26 +msgid "Could not create collection." msgstr "" -#: ../../mod/setup.php:505 -msgid "mcrypt PHP module" +#: ../../mod/group.php:54 +msgid "Collection updated." msgstr "" -#: ../../mod/setup.php:506 -msgid "xml PHP module" +#: ../../mod/group.php:86 +msgid "Create a collection of channels." msgstr "" -#: ../../mod/setup.php:510 ../../mod/setup.php:512 -msgid "Apache mod_rewrite module" +#: ../../mod/group.php:87 ../../mod/group.php:183 +msgid "Collection Name: " msgstr "" -#: ../../mod/setup.php:510 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../mod/group.php:89 ../../mod/group.php:186 +msgid "Members are visible to other channels" msgstr "" -#: ../../mod/setup.php:516 ../../mod/setup.php:519 -msgid "proc_open" +#: ../../mod/group.php:107 +msgid "Collection removed." msgstr "" -#: ../../mod/setup.php:516 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" +#: ../../mod/group.php:109 +msgid "Unable to remove collection." msgstr "" -#: ../../mod/setup.php:524 -msgid "Error: libCURL PHP module required but not installed." +#: ../../mod/group.php:182 +msgid "Collection Editor" msgstr "" -#: ../../mod/setup.php:528 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../mod/group.php:196 +msgid "Members" msgstr "" -#: ../../mod/setup.php:532 -msgid "Error: openssl PHP module required but not installed." +#: ../../mod/group.php:198 +msgid "All Connected Channels" msgstr "" -#: ../../mod/setup.php:536 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." msgstr "" -#: ../../mod/setup.php:540 -msgid "Error: mb_string PHP module required but not installed." +#: ../../mod/editlayout.php:111 +msgid "Delete layout?" msgstr "" -#: ../../mod/setup.php:544 -msgid "Error: mcrypt PHP module required but not installed." +#: ../../mod/editlayout.php:177 +msgid "Edit Layout" msgstr "" -#: ../../mod/setup.php:548 -msgid "Error: xml PHP module required for DAV but not installed." +#: ../../mod/pubsites.php:16 +msgid "Public Sites" msgstr "" -#: ../../mod/setup.php:566 +#: ../../mod/pubsites.php:19 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." +"The listed sites allow public registration for the $Projectname network. All " +"sites in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some sites may require subscription or " +"provide tiered service plans. The provider links <strong>may</strong> " +"provide additional details." msgstr "" -#: ../../mod/setup.php:567 -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." +#: ../../mod/pubsites.php:25 +msgid "Rate this hub" msgstr "" -#: ../../mod/setup.php:568 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." +#: ../../mod/pubsites.php:26 +msgid "Site URL" msgstr "" -#: ../../mod/setup.php:569 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../mod/pubsites.php:26 +msgid "Access Type" msgstr "" -#: ../../mod/setup.php:572 -msgid ".htconfig.php is writable" +#: ../../mod/pubsites.php:26 +msgid "Registration Policy" msgstr "" -#: ../../mod/setup.php:586 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." +#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 +msgid "Location" msgstr "" -#: ../../mod/setup.php:587 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." +#: ../../mod/pubsites.php:26 +msgid "View hub ratings" msgstr "" -#: ../../mod/setup.php:588 ../../mod/setup.php:609 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: ../../mod/pubsites.php:30 +msgid "Rate" msgstr "" -#: ../../mod/setup.php:589 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." +#: ../../mod/pubsites.php:31 +msgid "View ratings" msgstr "" -#: ../../mod/setup.php:592 -#, php-format -msgid "%s is writable" +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" -#: ../../mod/setup.php:608 +#: ../../mod/register.php:50 msgid "" -"Red uses the store directory to save uploaded files. The web server needs to " -"have write access to the store directory under the Red top level folder" +"Please indicate acceptance of the Terms of Service. Registration failed." msgstr "" -#: ../../mod/setup.php:612 -msgid "store is writable" +#: ../../mod/register.php:84 +msgid "Passwords do not match." msgstr "" -#: ../../mod/setup.php:645 +#: ../../mod/register.php:117 msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +"Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../mod/setup.php:646 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../mod/setup.php:647 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." msgstr "" -#: ../../mod/setup.php:648 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." msgstr "" -#: ../../mod/setup.php:649 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +#: ../../mod/register.php:164 +msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>" msgstr "" -#: ../../mod/setup.php:650 +#: ../../mod/register.php:174 msgid "" -"Providers are available that issue free certificates which are browser-valid." +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." msgstr "" -#: ../../mod/setup.php:652 -msgid "SSL certificate validation" +#: ../../mod/register.php:185 +msgid "Terms of Service" msgstr "" -#: ../../mod/setup.php:658 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" msgstr "" -#: ../../mod/setup.php:661 -msgid "Url rewrite is working" +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" msgstr "" -#: ../../mod/setup.php:670 -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." +#: ../../mod/register.php:207 ../../mod/admin.php:454 +msgid "Registration" msgstr "" -#: ../../mod/setup.php:694 -msgid "Errors encountered creating database tables." +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." msgstr "" -#: ../../mod/setup.php:728 -msgid "<h1>What next</h1>" +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" msgstr "" -#: ../../mod/setup.php:729 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../mod/register.php:216 +msgid "Your email address" msgstr "" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." +#: ../../mod/register.php:217 +msgid "Choose a password" msgstr "" -#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:287 -#, php-format -msgid "Welcome %s. Remote authentication successful." +#: ../../mod/register.php:218 +msgid "Please re-enter your password" msgstr "" -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +#: ../../mod/common.php:10 +msgid "No channel." msgstr "" -#: ../../mod/uexport.php:45 ../../mod/uexport.php:46 -msgid "Export Channel" +#: ../../mod/common.php:39 +msgid "Common connections" msgstr "" -#: ../../mod/uexport.php:47 -msgid "" -"Export your basic channel information to a small file. This acts as a " -"backup of your connections, permissions, profile and basic data, which can " -"be used to import your data to a new hub, but\tdoes not contain your content." +#: ../../mod/common.php:44 +msgid "No connections in common." msgstr "" -#: ../../mod/uexport.php:48 -msgid "Export Content" +#: ../../mod/editpost.php:31 +msgid "Item is not editable" msgstr "" -#: ../../mod/uexport.php:49 -msgid "" -"Export your channel information and all the content to a JSON backup. This " -"backs up all of your connections, permissions, profile data and all of your " -"content, but is generally not suitable for importing a channel to a new hub " -"as this file may be VERY large. Please be patient - it may take several " -"minutes for this download to begin." +#: ../../mod/editpost.php:48 +msgid "Delete item?" msgstr "" -#: ../../mod/viewconnections.php:62 -msgid "No connections." +#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" msgstr "" -#: ../../mod/viewconnections.php:75 -#, php-format -msgid "Visit %s's profile [%s]" +#: ../../mod/editwebpage.php:152 +msgid "Delete webpage?" msgstr "" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" +#: ../../mod/editwebpage.php:173 +msgid "Page link title" +msgstr "" + +#: ../../mod/editwebpage.php:224 +msgid "Edit Webpage" msgstr "" #: ../../mod/admin.php:52 @@ -6705,10 +5571,6 @@ msgstr "" msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../mod/admin.php:454 ../../mod/register.php:207 -msgid "Registration" -msgstr "" - #: ../../mod/admin.php:455 msgid "File upload" msgstr "" @@ -7223,6 +6085,10 @@ msgstr "" msgid "UID" msgstr "" +#: ../../mod/admin.php:994 ../../mod/profiles.php:447 +msgid "Address" +msgstr "" + #: ../../mod/admin.php:996 msgid "" "Selected channels will be deleted!\\n\\nEverything that was posted in these " @@ -7346,156 +6212,974 @@ msgstr "" msgid "Edit Profile Field" msgstr "" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." +#: ../../mod/filestorage.php:82 +msgid "Permission Denied." msgstr "" -#: ../../mod/oexchange.php:37 -msgid "Post successful." +#: ../../mod/filestorage.php:98 +msgid "File not found." msgstr "" -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +#: ../../mod/filestorage.php:141 +msgid "Edit file permissions" msgstr "" -#: ../../mod/register.php:50 +#: ../../mod/filestorage.php:150 +msgid "Set/edit permissions" +msgstr "" + +#: ../../mod/filestorage.php:151 +msgid "Include all files and sub folders" +msgstr "" + +#: ../../mod/filestorage.php:152 +msgid "Return to file list" +msgstr "" + +#: ../../mod/filestorage.php:154 +msgid "Copy/paste this code to attach file to a post" +msgstr "" + +#: ../../mod/filestorage.php:155 +msgid "Copy/paste this URL to link file from a web page" +msgstr "" + +#: ../../mod/filestorage.php:157 +msgid "Share this file" +msgstr "" + +#: ../../mod/filestorage.php:158 +msgid "Show URL to this file" +msgstr "" + +#: ../../mod/filestorage.php:159 +msgid "Notify your contacts about this file" +msgstr "" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "" + +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "" + +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "" + +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../mod/probe.php:24 ../../mod/probe.php:30 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "" + +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "" + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "" + +#: ../../mod/viewconnections.php:62 +msgid "No connections." +msgstr "" + +#: ../../mod/viewconnections.php:75 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "" + +#: ../../mod/api.php:104 msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../mod/register.php:84 -msgid "Passwords do not match." +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../mod/register.php:117 +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "" + +#: ../../mod/removeme.php:58 +msgid "This channel will be completely removed from the network. " +msgstr "" + +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "" + +#: ../../mod/removeme.php:60 msgid "" -"Registration successful. Please check your email for validation instructions." +"By default only the instance of the channel located on this hub will be " +"removed from the network" msgstr "" -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." +#: ../../mod/removeme.php:61 ../../mod/settings.php:1137 +msgid "Remove Channel" msgstr "" -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." +#: ../../mod/events.php:21 +msgid "Calendar entries imported." msgstr "" -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." +#: ../../mod/events.php:23 +msgid "No calendar entries found." msgstr "" -#: ../../mod/register.php:164 -msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>" +#: ../../mod/events.php:101 +msgid "Event can not end before it has started." msgstr "" -#: ../../mod/register.php:174 +#: ../../mod/events.php:103 ../../mod/events.php:112 ../../mod/events.php:130 +msgid "Unable to generate preview." +msgstr "" + +#: ../../mod/events.php:110 +msgid "Event title and start time are required." +msgstr "" + +#: ../../mod/events.php:128 +msgid "Event not found." +msgstr "" + +#: ../../mod/events.php:426 +msgid "l, F j" +msgstr "" + +#: ../../mod/events.php:448 +msgid "Edit event" +msgstr "" + +#: ../../mod/events.php:449 +msgid "Delete event" +msgstr "" + +#: ../../mod/events.php:483 +msgid "calendar" +msgstr "" + +#: ../../mod/events.php:504 +msgid "Create New Event" +msgstr "" + +#: ../../mod/events.php:505 ../../mod/photos.php:839 +msgid "Previous" +msgstr "" + +#: ../../mod/events.php:506 ../../mod/setup.php:281 ../../mod/photos.php:848 +msgid "Next" +msgstr "" + +#: ../../mod/events.php:507 +msgid "Export" +msgstr "" + +#: ../../mod/events.php:510 +msgid "Import" +msgstr "" + +#: ../../mod/events.php:541 +msgid "Event removed" +msgstr "" + +#: ../../mod/events.php:544 +msgid "Failed to remove event" +msgstr "" + +#: ../../mod/events.php:664 +msgid "Event details" +msgstr "" + +#: ../../mod/events.php:665 +msgid "Starting date and Title are required." +msgstr "" + +#: ../../mod/events.php:667 +msgid "Categories (comma-separated list)" +msgstr "" + +#: ../../mod/events.php:669 +msgid "Event Starts:" +msgstr "" + +#: ../../mod/events.php:676 +msgid "Finish date/time is not known or not relevant" +msgstr "" + +#: ../../mod/events.php:678 +msgid "Event Finishes:" +msgstr "" + +#: ../../mod/events.php:680 ../../mod/events.php:681 +msgid "Adjust for viewer timezone" +msgstr "" + +#: ../../mod/events.php:680 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." +"Important for events that happen in a particular place. Not practical for " +"global holidays." msgstr "" -#: ../../mod/register.php:185 -msgid "Terms of Service" +#: ../../mod/events.php:682 ../../mod/directory.php:308 +msgid "Description:" msgstr "" -#: ../../mod/register.php:191 +#: ../../mod/events.php:686 +msgid "Title:" +msgstr "" + +#: ../../mod/events.php:688 +msgid "Share this event" +msgstr "" + +#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 +msgid "This setting requires special processing and editing has been blocked." +msgstr "" + +#: ../../mod/pconfig.php:49 +msgid "Configuration Editor" +msgstr "" + +#: ../../mod/pconfig.php:50 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." +msgstr "" + +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "" + +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "" + +#: ../../mod/uexport.php:50 ../../mod/uexport.php:51 +msgid "Export Channel" +msgstr "" + +#: ../../mod/uexport.php:52 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "" + +#: ../../mod/uexport.php:53 +msgid "Export Content" +msgstr "" + +#: ../../mod/uexport.php:54 +msgid "" +"Export your channel information and recent content to a JSON backup that can " +"be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for " +"this download to begin." +msgstr "" + +#: ../../mod/uexport.php:55 +msgid "Export your posts from a given year or month:" +msgstr "" + +#: ../../mod/uexport.php:57 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Click on one of the recent years or months below." +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Jan" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Feb" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Mar" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Apr" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Jun" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Jul" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Aug" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Sep" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Oct" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Nov" +msgstr "" + +#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 +msgid "Dec" +msgstr "" + +#: ../../mod/uexport.php:60 +msgid "" +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "" + +#: ../../mod/uexport.php:61 #, php-format -msgid "I accept the %s for this website" +msgid "" +"Or adjust the date in your browser location bar to select other dates. For " +"example the year 2013; <a href=\"%1$s/2013\">%1$s/2013</a> or the month " +"September 2013; <a href=\"%1$s/2013/9\">%1$s/2013/9</a>" msgstr "" -#: ../../mod/register.php:193 +#: ../../mod/uexport.php:62 +msgid "Please visit" +msgstr "" + +#: ../../mod/uexport.php:62 +msgid "on another hub to import the backup files(s)." +msgstr "" + +#: ../../mod/uexport.php:63 +msgid "" +"We advise you to clone the channel on the new hub first and than to import " +"the backup file(s) (from the same channel) in chronological order. Importing " +"the backup files into another channel will certainly give permission issues." +msgstr "" + +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "" + +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "" + +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "" + +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "" + +#: ../../mod/connect.php:90 ../../mod/connect.php:110 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "" + +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "" + +#: ../../mod/connect.php:92 ../../mod/connect.php:113 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." +msgstr "" + +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "" + +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "" + +#: ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "" + +#: ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "" + +#: ../../mod/connedit.php:219 +msgid "Connection updated." +msgstr "" + +#: ../../mod/connedit.php:221 +msgid "Failed to update connection record." +msgstr "" + +#: ../../mod/connedit.php:267 +msgid "is now connected to" +msgstr "" + +#: ../../mod/connedit.php:392 +msgid "Could not access address book record." +msgstr "" + +#: ../../mod/connedit.php:406 +msgid "Refresh failed - channel is currently unavailable." +msgstr "" + +#: ../../mod/connedit.php:418 ../../mod/connedit.php:430 +#: ../../mod/connedit.php:442 ../../mod/connedit.php:454 +#: ../../mod/connedit.php:470 +msgid "Unable to set address book parameters." +msgstr "" + +#: ../../mod/connedit.php:494 +msgid "Connection has been removed." +msgstr "" + +#: ../../mod/connedit.php:513 #, php-format -msgid "I am over 13 years of age and accept the %s for this website" +msgid "View %s's profile" msgstr "" -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." +#: ../../mod/connedit.php:517 +msgid "Refresh Permissions" msgstr "" -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" +#: ../../mod/connedit.php:520 +msgid "Fetch updated permissions" msgstr "" -#: ../../mod/register.php:216 -msgid "Your email address" +#: ../../mod/connedit.php:524 +msgid "Recent Activity" msgstr "" -#: ../../mod/register.php:217 -msgid "Choose a password" +#: ../../mod/connedit.php:527 +msgid "View recent posts and comments" msgstr "" -#: ../../mod/register.php:218 -msgid "Please re-enter your password" +#: ../../mod/connedit.php:534 +msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../mod/removeaccount.php:30 +#: ../../mod/connedit.php:535 +msgid "This connection is blocked!" +msgstr "" + +#: ../../mod/connedit.php:539 +msgid "Unignore" +msgstr "" + +#: ../../mod/connedit.php:542 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "" + +#: ../../mod/connedit.php:543 +msgid "This connection is ignored!" +msgstr "" + +#: ../../mod/connedit.php:547 +msgid "Unarchive" +msgstr "" + +#: ../../mod/connedit.php:547 +msgid "Archive" +msgstr "" + +#: ../../mod/connedit.php:550 msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." +"Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" +#: ../../mod/connedit.php:551 +msgid "This connection is archived!" msgstr "" -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " +#: ../../mod/connedit.php:555 +msgid "Unhide" msgstr "" -#: ../../mod/removeaccount.php:58 +#: ../../mod/connedit.php:555 +msgid "Hide" +msgstr "" + +#: ../../mod/connedit.php:558 +msgid "Hide or Unhide this connection from your other connections" +msgstr "" + +#: ../../mod/connedit.php:559 +msgid "This connection is hidden!" +msgstr "" + +#: ../../mod/connedit.php:566 +msgid "Delete this connection" +msgstr "" + +#: ../../mod/connedit.php:647 +msgid "Approve this connection" +msgstr "" + +#: ../../mod/connedit.php:647 +msgid "Accept connection to allow communication" +msgstr "" + +#: ../../mod/connedit.php:652 +msgid "Set Affinity" +msgstr "" + +#: ../../mod/connedit.php:655 +msgid "Set Profile" +msgstr "" + +#: ../../mod/connedit.php:658 +msgid "Set Affinity & Profile" +msgstr "" + +#: ../../mod/connedit.php:675 +msgid "Apply these permissions automatically" +msgstr "" + +#: ../../mod/connedit.php:677 +msgid "This connection's address is" +msgstr "" + +#: ../../mod/connedit.php:680 msgid "" -"This account and all its channels will be completely removed from the " -"network. " +"The permissions indicated on this page will be applied to all new " +"connections." msgstr "" -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" +#: ../../mod/connedit.php:682 +msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" +#: ../../mod/connedit.php:684 +msgid "Slide to adjust your rating" msgstr "" -#: ../../mod/removeaccount.php:60 +#: ../../mod/connedit.php:685 ../../mod/connedit.php:690 +msgid "Optionally explain your rating" +msgstr "" + +#: ../../mod/connedit.php:687 +msgid "Custom Filter" +msgstr "" + +#: ../../mod/connedit.php:688 +msgid "Only import posts with this text" +msgstr "" + +#: ../../mod/connedit.php:688 ../../mod/connedit.php:689 msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" +"words one per line or #tags or /patterns/, leave blank to import all posts" msgstr "" -#: ../../mod/removeaccount.php:60 +#: ../../mod/connedit.php:689 +msgid "Do not import posts with this text" +msgstr "" + +#: ../../mod/connedit.php:691 +msgid "This information is public!" +msgstr "" + +#: ../../mod/connedit.php:696 +msgid "Connection Pending Approval" +msgstr "" + +#: ../../mod/connedit.php:697 +msgid "Connection Request" +msgstr "" + +#: ../../mod/connedit.php:698 +#, php-format msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" +"(%s) would like to connect with you. Please approve this connection to allow " +"communication." msgstr "" -#: ../../mod/removeaccount.php:61 ../../mod/settings.php:720 -msgid "Remove Account" +#: ../../mod/connedit.php:700 +msgid "Approve Later" msgstr "" -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" +#: ../../mod/connedit.php:703 +msgid "inherited" msgstr "" -#: ../../mod/help.php:76 ../../index.php:238 -msgid "Not Found" +#: ../../mod/connedit.php:705 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../mod/help.php:100 -msgid "$Projectname Documentation" +#: ../../mod/connedit.php:707 +msgid "Their Settings" msgstr "" -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 ../../mod/update_public.php:21 -msgid "[Embedded content - reload page to view]" +#: ../../mod/connedit.php:708 +msgid "My Settings" msgstr "" -#: ../../mod/lockview.php:37 -msgid "Remote privacy information not available." +#: ../../mod/connedit.php:710 +msgid "Individual Permissions" msgstr "" -#: ../../mod/lockview.php:58 -msgid "Visible to:" +#: ../../mod/connedit.php:711 +msgid "" +"Some permissions may be inherited from your channel's <a href=\"settings" +"\"><strong>privacy settings</strong></a>, which have higher priority than " +"individual settings. You can <strong>not</strong> change those settings here." +msgstr "" + +#: ../../mod/connedit.php:712 +msgid "" +"Some permissions may be inherited from your channel's <a href=\"settings" +"\"><strong>privacy settings</strong></a>, which have higher priority than " +"individual settings. You can change those settings here but they wont have " +"any impact unless the inherited setting changes." +msgstr "" + +#: ../../mod/connedit.php:713 +msgid "Last update:" +msgstr "" + +#: ../../mod/profile_photo.php:108 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: ../../mod/profile_photo.php:162 +msgid "Image resize failed." +msgstr "" + +#: ../../mod/profile_photo.php:206 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: ../../mod/profile_photo.php:233 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "" + +#: ../../mod/profile_photo.php:242 +msgid "Unable to process image." +msgstr "" + +#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 +msgid "Photo not available." +msgstr "" + +#: ../../mod/profile_photo.php:359 +msgid "Upload File:" +msgstr "" + +#: ../../mod/profile_photo.php:360 +msgid "Select a profile:" +msgstr "" + +#: ../../mod/profile_photo.php:361 +msgid "Upload Profile Photo" +msgstr "" + +#: ../../mod/profile_photo.php:366 ../../mod/settings.php:995 +msgid "or" +msgstr "" + +#: ../../mod/profile_photo.php:366 +msgid "skip this step" +msgstr "" + +#: ../../mod/profile_photo.php:366 +msgid "select a photo from your photo albums" +msgstr "" + +#: ../../mod/profile_photo.php:382 +msgid "Crop Image" +msgstr "" + +#: ../../mod/profile_photo.php:383 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "" + +#: ../../mod/profile_photo.php:385 +msgid "Done Editing" +msgstr "" + +#: ../../mod/profile_photo.php:428 +msgid "Image uploaded successfully." +msgstr "" + +#: ../../mod/profile_photo.php:430 +msgid "Image upload failed." +msgstr "" + +#: ../../mod/profile_photo.php:439 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "" + +#: ../../mod/sharedwithme.php:94 +msgid "Files: shared with me" +msgstr "" + +#: ../../mod/sharedwithme.php:96 +msgid "NEW" +msgstr "" + +#: ../../mod/sharedwithme.php:99 +msgid "Remove all files" +msgstr "" + +#: ../../mod/sharedwithme.php:100 +msgid "Remove this file" +msgstr "" + +#: ../../mod/rmagic.php:40 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: ../../mod/rmagic.php:40 +msgid "The error message was:" +msgstr "" + +#: ../../mod/rmagic.php:44 +msgid "Authentication failed." +msgstr "" + +#: ../../mod/rmagic.php:84 +msgid "Remote Authentication" +msgstr "" + +#: ../../mod/rmagic.php:85 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "" + +#: ../../mod/rmagic.php:86 +msgid "Authenticate" +msgstr "" + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "" + +#: ../../mod/thing.php:94 +msgid "Thing updated" +msgstr "" + +#: ../../mod/thing.php:167 +msgid "Object store: failed" +msgstr "" + +#: ../../mod/thing.php:171 +msgid "Thing added" +msgstr "" + +#: ../../mod/thing.php:203 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "" + +#: ../../mod/thing.php:254 +msgid "Show Thing" +msgstr "" + +#: ../../mod/thing.php:261 +msgid "item not found." +msgstr "" + +#: ../../mod/thing.php:289 +msgid "Edit Thing" +msgstr "" + +#: ../../mod/thing.php:291 ../../mod/thing.php:338 +msgid "Select a profile" +msgstr "" + +#: ../../mod/thing.php:295 ../../mod/thing.php:341 +msgid "Post an activity" +msgstr "" + +#: ../../mod/thing.php:295 ../../mod/thing.php:341 +msgid "Only sends to viewers of the applicable profile" +msgstr "" + +#: ../../mod/thing.php:297 ../../mod/thing.php:343 +msgid "Name of thing e.g. something" +msgstr "" + +#: ../../mod/thing.php:299 ../../mod/thing.php:344 +msgid "URL of thing (optional)" +msgstr "" + +#: ../../mod/thing.php:301 ../../mod/thing.php:345 +msgid "URL for photo of thing (optional)" +msgstr "" + +#: ../../mod/thing.php:336 +msgid "Add Thing to your Profile" +msgstr "" + +#: ../../mod/connections.php:52 ../../mod/connections.php:153 +msgid "Blocked" +msgstr "" + +#: ../../mod/connections.php:57 ../../mod/connections.php:160 +msgid "Ignored" +msgstr "" + +#: ../../mod/connections.php:62 ../../mod/connections.php:174 +msgid "Hidden" +msgstr "" + +#: ../../mod/connections.php:67 ../../mod/connections.php:167 +msgid "Archived" +msgstr "" + +#: ../../mod/connections.php:131 +msgid "Suggest new connections" +msgstr "" + +#: ../../mod/connections.php:134 +msgid "New Connections" +msgstr "" + +#: ../../mod/connections.php:137 +msgid "Show pending (new) connections" +msgstr "" + +#: ../../mod/connections.php:143 +msgid "Show all connections" +msgstr "" + +#: ../../mod/connections.php:146 +msgid "Unblocked" +msgstr "" + +#: ../../mod/connections.php:149 +msgid "Only show unblocked connections" +msgstr "" + +#: ../../mod/connections.php:156 +msgid "Only show blocked connections" +msgstr "" + +#: ../../mod/connections.php:163 +msgid "Only show ignored connections" +msgstr "" + +#: ../../mod/connections.php:170 +msgid "Only show archived connections" +msgstr "" + +#: ../../mod/connections.php:177 +msgid "Only show hidden connections" +msgstr "" + +#: ../../mod/connections.php:232 +#, php-format +msgid "%1$s [%2$s]" +msgstr "" + +#: ../../mod/connections.php:233 +msgid "Edit connection" +msgstr "" + +#: ../../mod/connections.php:271 +msgid "Search your connections" +msgstr "" + +#: ../../mod/connections.php:272 +msgid "Finding: " +msgstr "" + +#: ../../mod/rate.php:157 +msgid "Website:" +msgstr "" + +#: ../../mod/rate.php:160 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "" + +#: ../../mod/rate.php:161 +msgid "Rating (this information is public)" +msgstr "" + +#: ../../mod/rate.php:162 +msgid "Optionally explain your rating (this information is public)" +msgstr "" + +#: ../../mod/service_limits.php:19 +msgid "No service class restrictions found." +msgstr "" + +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "" + +#: ../../mod/oexchange.php:37 +msgid "Post successful." msgstr "" #: ../../mod/settings.php:76 @@ -8067,76 +7751,82 @@ msgstr "" msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../mod/settings.php:1137 ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "" - #: ../../mod/settings.php:1138 msgid "Remove this channel." msgstr "" -#: ../../mod/id.php:11 -msgid "First Name" +#: ../../mod/filer.php:49 +msgid "- select -" msgstr "" -#: ../../mod/id.php:12 -msgid "Last Name" +#: ../../mod/siteinfo.php:112 +#, php-format +msgid "Version %s" msgstr "" -#: ../../mod/id.php:13 -msgid "Nickname" +#: ../../mod/siteinfo.php:133 +msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../mod/id.php:14 -msgid "Full Name" +#: ../../mod/siteinfo.php:146 +msgid "No installed plugins/addons/apps" msgstr "" -#: ../../mod/id.php:20 -msgid "Profile Photo 16px" +#: ../../mod/siteinfo.php:156 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." msgstr "" -#: ../../mod/id.php:21 -msgid "Profile Photo 32px" +#: ../../mod/siteinfo.php:158 +msgid "Tag: " msgstr "" -#: ../../mod/id.php:22 -msgid "Profile Photo 48px" +#: ../../mod/siteinfo.php:160 +msgid "Last background fetch: " msgstr "" -#: ../../mod/id.php:23 -msgid "Profile Photo 64px" +#: ../../mod/siteinfo.php:163 +msgid "Running at web location" msgstr "" -#: ../../mod/id.php:24 -msgid "Profile Photo 80px" +#: ../../mod/siteinfo.php:164 +msgid "" +"Please visit <a href=\"https://redmatrix.me\">redmatrix.me</a> to learn more " +"about $Projectname." msgstr "" -#: ../../mod/id.php:25 -msgid "Profile Photo 128px" +#: ../../mod/siteinfo.php:165 +msgid "Bug reports and issues: please visit" msgstr "" -#: ../../mod/id.php:26 -msgid "Timezone" +#: ../../mod/siteinfo.php:167 +msgid "$projectname issues" msgstr "" -#: ../../mod/id.php:27 -msgid "Homepage URL" +#: ../../mod/siteinfo.php:168 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" msgstr "" -#: ../../mod/id.php:29 -msgid "Birth Year" +#: ../../mod/siteinfo.php:170 +msgid "Site Administrators" msgstr "" -#: ../../mod/id.php:30 -msgid "Birth Month" +#: ../../mod/impel.php:191 +#, php-format +msgid "%s element installed" msgstr "" -#: ../../mod/id.php:31 -msgid "Birth Day" +#: ../../mod/impel.php:194 +#, php-format +msgid "%s element installation failed" msgstr "" -#: ../../mod/id.php:32 -msgid "Birthdate" +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" #: ../../mod/message.php:41 @@ -8147,874 +7837,1113 @@ msgstr "" msgid "No messages." msgstr "" -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "" - #: ../../mod/message.php:74 msgid "D, d M Y - g:i A" msgstr "" -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" +#: ../../mod/ping.php:263 +msgid "sent you a private message" msgstr "" -#: ../../mod/vote.php:97 -msgid "Total votes" +#: ../../mod/ping.php:314 +msgid "added your channel" msgstr "" -#: ../../mod/vote.php:98 -msgid "Average Rating" +#: ../../mod/ping.php:355 +msgid "posted an event" msgstr "" -#: ../../mod/removeme.php:29 +#: ../../mod/item.php:174 +msgid "Unable to locate original post." +msgstr "" + +#: ../../mod/item.php:440 +msgid "Empty post discarded." +msgstr "" + +#: ../../mod/item.php:480 +msgid "Executable content type not permitted to this channel." +msgstr "" + +#: ../../mod/item.php:914 +msgid "System error. Post not saved." +msgstr "" + +#: ../../mod/item.php:1146 +msgid "Unable to obtain post information from database." +msgstr "" + +#: ../../mod/item.php:1153 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "" + +#: ../../mod/item.php:1160 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "" + +#: ../../mod/setup.php:187 +msgid "$Projectname Server - Setup" +msgstr "" + +#: ../../mod/setup.php:191 +msgid "Could not connect to database." +msgstr "" + +#: ../../mod/setup.php:195 msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" +#: ../../mod/setup.php:202 +msgid "Could not create table." msgstr "" -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " +#: ../../mod/setup.php:207 +msgid "Your site database has been installed." msgstr "" -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" +#: ../../mod/setup.php:211 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../mod/removeme.php:60 +#: ../../mod/setup.php:212 ../../mod/setup.php:280 ../../mod/setup.php:730 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "" + +#: ../../mod/setup.php:277 +msgid "System check" +msgstr "" + +#: ../../mod/setup.php:282 +msgid "Check again" +msgstr "" + +#: ../../mod/setup.php:304 +msgid "Database connection" +msgstr "" + +#: ../../mod/setup.php:305 msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" +"In order to install $Projectname we need to know how to connect to your " +"database." msgstr "" -#: ../../mod/connedit.php:75 -msgid "Could not access contact record." +#: ../../mod/setup.php:306 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../mod/connedit.php:99 -msgid "Could not locate selected profile." +#: ../../mod/setup.php:307 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../mod/connedit.php:219 -msgid "Connection updated." +#: ../../mod/setup.php:311 +msgid "Database Server Name" msgstr "" -#: ../../mod/connedit.php:221 -msgid "Failed to update connection record." +#: ../../mod/setup.php:311 +msgid "Default is localhost" msgstr "" -#: ../../mod/connedit.php:267 -msgid "is now connected to" +#: ../../mod/setup.php:312 +msgid "Database Port" msgstr "" -#: ../../mod/connedit.php:392 -msgid "Could not access address book record." +#: ../../mod/setup.php:312 +msgid "Communication port number - use 0 for default" msgstr "" -#: ../../mod/connedit.php:406 -msgid "Refresh failed - channel is currently unavailable." +#: ../../mod/setup.php:313 +msgid "Database Login Name" msgstr "" -#: ../../mod/connedit.php:418 ../../mod/connedit.php:430 -#: ../../mod/connedit.php:442 ../../mod/connedit.php:454 -#: ../../mod/connedit.php:470 -msgid "Unable to set address book parameters." +#: ../../mod/setup.php:314 +msgid "Database Login Password" msgstr "" -#: ../../mod/connedit.php:494 -msgid "Connection has been removed." +#: ../../mod/setup.php:315 +msgid "Database Name" msgstr "" -#: ../../mod/connedit.php:513 -#, php-format -msgid "View %s's profile" +#: ../../mod/setup.php:316 +msgid "Database Type" msgstr "" -#: ../../mod/connedit.php:517 -msgid "Refresh Permissions" +#: ../../mod/setup.php:318 ../../mod/setup.php:359 +msgid "Site administrator email address" msgstr "" -#: ../../mod/connedit.php:520 -msgid "Fetch updated permissions" +#: ../../mod/setup.php:318 ../../mod/setup.php:359 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../mod/connedit.php:524 -msgid "Recent Activity" +#: ../../mod/setup.php:319 ../../mod/setup.php:361 +msgid "Website URL" msgstr "" -#: ../../mod/connedit.php:527 -msgid "View recent posts and comments" +#: ../../mod/setup.php:319 ../../mod/setup.php:361 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../mod/connedit.php:534 -msgid "Block (or Unblock) all communications with this connection" +#: ../../mod/setup.php:321 ../../mod/setup.php:363 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../mod/connedit.php:535 -msgid "This connection is blocked!" +#: ../../mod/setup.php:348 +msgid "Site settings" msgstr "" -#: ../../mod/connedit.php:539 -msgid "Unignore" +#: ../../mod/setup.php:413 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../mod/connedit.php:539 ../../mod/notifications.php:51 -msgid "Ignore" +#: ../../mod/setup.php:414 +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." msgstr "" -#: ../../mod/connedit.php:542 -msgid "Ignore (or Unignore) all inbound communications from this connection" +#: ../../mod/setup.php:418 +msgid "PHP executable path" msgstr "" -#: ../../mod/connedit.php:543 -msgid "This connection is ignored!" +#: ../../mod/setup.php:418 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../mod/connedit.php:547 -msgid "Unarchive" +#: ../../mod/setup.php:423 +msgid "Command line PHP" msgstr "" -#: ../../mod/connedit.php:547 -msgid "Archive" +#: ../../mod/setup.php:432 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../mod/connedit.php:550 +#: ../../mod/setup.php:433 +msgid "This is required for message delivery to work." +msgstr "" + +#: ../../mod/setup.php:436 +msgid "PHP register_argc_argv" +msgstr "" + +#: ../../mod/setup.php:454 +#, php-format msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." msgstr "" -#: ../../mod/connedit.php:551 -msgid "This connection is archived!" +#: ../../mod/setup.php:459 +msgid "You can adjust these settings in the servers php.ini." msgstr "" -#: ../../mod/connedit.php:555 -msgid "Unhide" +#: ../../mod/setup.php:461 +msgid "PHP upload limits" msgstr "" -#: ../../mod/connedit.php:555 -msgid "Hide" +#: ../../mod/setup.php:484 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../mod/connedit.php:558 -msgid "Hide or Unhide this connection from your other connections" +#: ../../mod/setup.php:485 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../mod/connedit.php:559 -msgid "This connection is hidden!" +#: ../../mod/setup.php:488 +msgid "Generate encryption keys" msgstr "" -#: ../../mod/connedit.php:566 -msgid "Delete this connection" +#: ../../mod/setup.php:500 +msgid "libCurl PHP module" msgstr "" -#: ../../mod/connedit.php:647 -msgid "Approve this connection" +#: ../../mod/setup.php:501 +msgid "GD graphics PHP module" msgstr "" -#: ../../mod/connedit.php:647 -msgid "Accept connection to allow communication" +#: ../../mod/setup.php:502 +msgid "OpenSSL PHP module" msgstr "" -#: ../../mod/connedit.php:652 -msgid "Set Affinity" +#: ../../mod/setup.php:503 +msgid "mysqli or postgres PHP module" msgstr "" -#: ../../mod/connedit.php:655 -msgid "Set Profile" +#: ../../mod/setup.php:504 +msgid "mb_string PHP module" msgstr "" -#: ../../mod/connedit.php:658 -msgid "Set Affinity & Profile" +#: ../../mod/setup.php:505 +msgid "mcrypt PHP module" msgstr "" -#: ../../mod/connedit.php:675 -msgid "Apply these permissions automatically" +#: ../../mod/setup.php:506 +msgid "xml PHP module" msgstr "" -#: ../../mod/connedit.php:677 -msgid "This connection's address is" +#: ../../mod/setup.php:510 ../../mod/setup.php:512 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../mod/connedit.php:680 +#: ../../mod/setup.php:510 msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../mod/connedit.php:682 -msgid "Slide to adjust your degree of friendship" +#: ../../mod/setup.php:516 ../../mod/setup.php:519 +msgid "proc_open" msgstr "" -#: ../../mod/connedit.php:684 -msgid "Slide to adjust your rating" +#: ../../mod/setup.php:516 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" msgstr "" -#: ../../mod/connedit.php:685 ../../mod/connedit.php:690 -msgid "Optionally explain your rating" +#: ../../mod/setup.php:524 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../mod/connedit.php:687 -msgid "Custom Filter" +#: ../../mod/setup.php:528 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: ../../mod/connedit.php:688 -msgid "Only import posts with this text" +#: ../../mod/setup.php:532 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../mod/connedit.php:688 ../../mod/connedit.php:689 +#: ../../mod/setup.php:536 msgid "" -"words one per line or #tags or /patterns/, leave blank to import all posts" +"Error: mysqli or postgres PHP module required but neither are installed." msgstr "" -#: ../../mod/connedit.php:689 -msgid "Do not import posts with this text" +#: ../../mod/setup.php:540 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../mod/connedit.php:691 -msgid "This information is public!" +#: ../../mod/setup.php:544 +msgid "Error: mcrypt PHP module required but not installed." msgstr "" -#: ../../mod/connedit.php:696 -msgid "Connection Pending Approval" +#: ../../mod/setup.php:548 +msgid "Error: xml PHP module required for DAV but not installed." msgstr "" -#: ../../mod/connedit.php:697 -msgid "Connection Request" +#: ../../mod/setup.php:566 +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 "" -#: ../../mod/connedit.php:698 +#: ../../mod/setup.php:567 +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 "" + +#: ../../mod/setup.php:568 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "" + +#: ../../mod/setup.php:569 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "" + +#: ../../mod/setup.php:572 +msgid ".htconfig.php is writable" +msgstr "" + +#: ../../mod/setup.php:586 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: ../../mod/setup.php:587 #, php-format msgid "" -"(%s) would like to connect with you. Please approve this connection to allow " -"communication." +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the Red top level folder." msgstr "" -#: ../../mod/connedit.php:700 -msgid "Approve Later" +#: ../../mod/setup.php:588 ../../mod/setup.php:609 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../mod/connedit.php:703 -msgid "inherited" +#: ../../mod/setup.php:589 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." msgstr "" -#: ../../mod/connedit.php:705 +#: ../../mod/setup.php:592 #, php-format +msgid "%s is writable" +msgstr "" + +#: ../../mod/setup.php:608 msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +"Red uses the store directory to save uploaded files. The web server needs to " +"have write access to the store directory under the Red top level folder" msgstr "" -#: ../../mod/connedit.php:707 -msgid "Their Settings" +#: ../../mod/setup.php:612 +msgid "store is writable" msgstr "" -#: ../../mod/connedit.php:708 -msgid "My Settings" +#: ../../mod/setup.php:645 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../mod/connedit.php:710 -msgid "Individual Permissions" +#: ../../mod/setup.php:646 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" msgstr "" -#: ../../mod/connedit.php:711 +#: ../../mod/setup.php:647 msgid "" -"Some permissions may be inherited from your channel's <a href=\"settings" -"\"><strong>privacy settings</strong></a>, which have higher priority than " -"individual settings. You can <strong>not</strong> change those settings here." +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." msgstr "" -#: ../../mod/connedit.php:712 +#: ../../mod/setup.php:648 msgid "" -"Some permissions may be inherited from your channel's <a href=\"settings" -"\"><strong>privacy settings</strong></a>, which have higher priority than " -"individual settings. You can change those settings here but they wont have " -"any impact unless the inherited setting changes." +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." msgstr "" -#: ../../mod/connedit.php:713 -msgid "Last update:" +#: ../../mod/setup.php:649 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." msgstr "" -#: ../../mod/rmagic.php:40 +#: ../../mod/setup.php:650 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." +"Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../mod/rmagic.php:40 -msgid "The error message was:" +#: ../../mod/setup.php:652 +msgid "SSL certificate validation" msgstr "" -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." +#: ../../mod/setup.php:658 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " msgstr "" -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" +#: ../../mod/setup.php:661 +msgid "Url rewrite is working" msgstr "" -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" +#: ../../mod/setup.php:670 +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 "" -#: ../../mod/rmagic.php:86 -msgid "Authenticate" +#: ../../mod/setup.php:694 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." +#: ../../mod/setup.php:728 +msgid "<h1>What next</h1>" msgstr "" -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." +#: ../../mod/setup.php:729 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." +#: ../../mod/dav.php:121 +msgid "$Projectname channel" msgstr "" -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." +#: ../../mod/directory.php:234 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/directory.php:245 +msgid "Gender: " msgstr "" -#: ../../mod/mail.php:139 -msgid "Message deleted." +#: ../../mod/directory.php:247 +msgid "Status: " msgstr "" -#: ../../mod/mail.php:156 -msgid "Message recalled." +#: ../../mod/directory.php:249 +msgid "Homepage: " msgstr "" -#: ../../mod/mail.php:225 -msgid "Send Private Message" +#: ../../mod/directory.php:317 +msgid "Public Forum:" msgstr "" -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" +#: ../../mod/directory.php:320 +msgid "Keywords: " msgstr "" -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" +#: ../../mod/directory.php:323 +msgid "Don't suggest" msgstr "" -#: ../../mod/mail.php:242 -msgid "Send" +#: ../../mod/directory.php:325 +msgid "Common connections:" msgstr "" -#: ../../mod/mail.php:269 -msgid "Message not found." +#: ../../mod/directory.php:374 +msgid "Global Directory" msgstr "" -#: ../../mod/mail.php:312 -msgid "Delete message" +#: ../../mod/directory.php:374 +msgid "Local Directory" msgstr "" -#: ../../mod/mail.php:313 -msgid "Recall message" +#: ../../mod/directory.php:380 +msgid "Finding:" msgstr "" -#: ../../mod/mail.php:315 -msgid "Message has been recalled." +#: ../../mod/directory.php:385 +msgid "next page" msgstr "" -#: ../../mod/mail.php:332 -msgid "Private Conversation" +#: ../../mod/directory.php:385 +msgid "previous page" msgstr "" -#: ../../mod/mail.php:338 -msgid "" -"No secure communications available. You <strong>may</strong> be able to " -"respond from the sender's profile page." +#: ../../mod/directory.php:386 +msgid "Sort options" msgstr "" -#: ../../mod/mail.php:342 -msgid "Send Reply" +#: ../../mod/directory.php:387 +msgid "Alphabetic" msgstr "" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." +#: ../../mod/directory.php:388 +msgid "Reverse Alphabetic" msgstr "" -#: ../../mod/notifications.php:35 -msgid "Discard" +#: ../../mod/directory.php:389 +msgid "Newest to Oldest" msgstr "" -#: ../../mod/regmod.php:11 -msgid "Please login." +#: ../../mod/directory.php:390 +msgid "Oldest to Newest" msgstr "" -#: ../../mod/post.php:236 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." +#: ../../mod/directory.php:407 +msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" +#: ../../mod/photos.php:78 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used " -"to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." +#: ../../mod/photos.php:98 +msgid "Album not found." msgstr "" -#: ../../mod/new_channel.php:113 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\" " +#: ../../mod/photos.php:120 ../../mod/photos.php:655 +msgid "Delete Album" msgstr "" -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" +#: ../../mod/photos.php:160 ../../mod/photos.php:942 +msgid "Delete Photo" msgstr "" -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." +#: ../../mod/photos.php:452 +msgid "No photos selected" msgstr "" -#: ../../mod/new_channel.php:116 -msgid "" -"Or <a href=\"import\">import an existing channel</a> from another location" +#: ../../mod/photos.php:496 +msgid "Access to this item is restricted." msgstr "" -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" +#: ../../mod/photos.php:535 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../mod/new_channel.php:119 -msgid "Channel Type" +#: ../../mod/photos.php:538 +#, php-format +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" +#: ../../mod/photos.php:562 +msgid "Upload Photos" msgstr "" -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." +#: ../../mod/photos.php:566 ../../mod/photos.php:648 ../../mod/photos.php:927 +msgid "Enter a new album name" msgstr "" -#: ../../mod/appman.php:37 -msgid "Malformed app." +#: ../../mod/photos.php:567 ../../mod/photos.php:649 ../../mod/photos.php:928 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../mod/appman.php:80 -msgid "Embed code" +#: ../../mod/photos.php:568 +msgid "Create a status post for this upload" msgstr "" -#: ../../mod/appman.php:86 -msgid "Edit App" +#: ../../mod/photos.php:596 +msgid "Album name could not be decoded" msgstr "" -#: ../../mod/appman.php:86 -msgid "Create App" +#: ../../mod/photos.php:637 ../../mod/photos.php:1169 +#: ../../mod/photos.php:1185 +msgid "Contact Photos" msgstr "" -#: ../../mod/appman.php:91 -msgid "Name of app" +#: ../../mod/photos.php:661 +msgid "Show Newest First" msgstr "" -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" +#: ../../mod/photos.php:663 +msgid "Show Oldest First" msgstr "" -#: ../../mod/appman.php:94 -msgid "Photo icon URL" +#: ../../mod/photos.php:687 ../../mod/photos.php:1217 +msgid "View Photo" msgstr "" -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" +#: ../../mod/photos.php:716 +msgid "Edit Album" msgstr "" -#: ../../mod/appman.php:95 -msgid "Version ID" +#: ../../mod/photos.php:761 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../mod/appman.php:96 -msgid "Price of app" +#: ../../mod/photos.php:763 +msgid "Photo not available" msgstr "" -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" +#: ../../mod/photos.php:821 +msgid "Use as profile photo" msgstr "" -#: ../../mod/ping.php:263 -msgid "sent you a private message" +#: ../../mod/photos.php:828 +msgid "Private Photo" msgstr "" -#: ../../mod/ping.php:314 -msgid "added your channel" +#: ../../mod/photos.php:843 +msgid "View Full Size" msgstr "" -#: ../../mod/ping.php:355 -msgid "posted an event" +#: ../../mod/photos.php:887 ../../mod/tagrm.php:133 +msgid "Remove" msgstr "" -#: ../../mod/layouts.php:176 -msgid "Comanche page description language help" +#: ../../mod/photos.php:921 +msgid "Edit photo" msgstr "" -#: ../../mod/layouts.php:180 -msgid "Layout Description" +#: ../../mod/photos.php:923 +msgid "Rotate CW (right)" msgstr "" -#: ../../mod/layouts.php:185 -msgid "Download PDL file" +#: ../../mod/photos.php:924 +msgid "Rotate CCW (left)" msgstr "" -#: ../../mod/home.php:73 -#, php-format -msgid "Welcome to %s" +#: ../../mod/photos.php:931 +msgid "Caption" msgstr "" -#: ../../mod/page.php:126 -msgid "Lorem Ipsum" +#: ../../mod/photos.php:933 +msgid "Add a Tag" msgstr "" -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" +#: ../../mod/photos.php:937 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" +#: ../../mod/photos.php:940 +msgid "Flag as adult in album view" msgstr "" -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" +#: ../../mod/photos.php:1132 +msgid "In This Photo:" msgstr "" -#: ../../mod/channel.php:97 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../mod/photos.php:1137 +msgid "Map" msgstr "" -#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 -msgid "This setting requires special processing and editing has been blocked." +#: ../../mod/photos.php:1223 +msgid "View Album" msgstr "" -#: ../../mod/pconfig.php:49 -msgid "Configuration Editor" +#: ../../mod/photos.php:1246 +msgid "Recent Photos" msgstr "" -#: ../../mod/pconfig.php:50 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how " -"to correctly use this feature." +#: ../../mod/network.php:91 +msgid "No such group" msgstr "" -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../mod/network.php:129 +msgid "No such channel" msgstr "" -#: ../../mod/poll.php:64 -msgid "Poll" +#: ../../mod/network.php:143 +msgid "Search Results For:" msgstr "" -#: ../../mod/poll.php:69 -msgid "View Results" +#: ../../mod/network.php:198 +msgid "Collection is empty" msgstr "" -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." +#: ../../mod/network.php:207 +msgid "Collection: " msgstr "" -#: ../../mod/sharedwithme.php:94 -msgid "Files: shared with me" +#: ../../mod/network.php:226 +msgid "Connection: " msgstr "" -#: ../../mod/sharedwithme.php:96 -msgid "NEW" +#: ../../mod/network.php:233 +msgid "Invalid connection." msgstr "" -#: ../../mod/sharedwithme.php:99 -msgid "Remove all files" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 +#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 +msgid "Profile not found." msgstr "" -#: ../../mod/sharedwithme.php:100 -msgid "Remove this file" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." msgstr "" -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" msgstr "" -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." msgstr "" -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." msgstr "" -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." msgstr "" -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" +#: ../../mod/profiles.php:241 +msgid "Profile Name is required." msgstr "" -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" +#: ../../mod/profiles.php:404 +msgid "Marital Status" msgstr "" -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" +#: ../../mod/profiles.php:408 +msgid "Romantic Partner" msgstr "" -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" +#: ../../mod/profiles.php:412 +msgid "Likes" msgstr "" -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" +#: ../../mod/profiles.php:416 +msgid "Dislikes" msgstr "" -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" +#: ../../mod/profiles.php:420 +msgid "Work/Employment" msgstr "" -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" +#: ../../mod/profiles.php:423 +msgid "Religion" msgstr "" -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" +#: ../../mod/profiles.php:427 +msgid "Political Views" msgstr "" -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" +#: ../../mod/profiles.php:435 +msgid "Sexual Preference" msgstr "" -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" +#: ../../mod/profiles.php:439 +msgid "Homepage" msgstr "" -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" +#: ../../mod/profiles.php:443 +msgid "Interests" msgstr "" -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" +#: ../../mod/profiles.php:537 +msgid "Profile updated." msgstr "" -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" +#: ../../mod/profiles.php:626 +msgid "Hide your contact/friend list from viewers of this profile?" msgstr "" -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" +#: ../../mod/profiles.php:666 +msgid "Edit Profile Details" msgstr "" -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" +#: ../../mod/profiles.php:668 +msgid "View this profile" msgstr "" -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" +#: ../../mod/profiles.php:670 +msgid "Change Profile Photo" msgstr "" -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" +#: ../../mod/profiles.php:671 +msgid "Create a new profile using these settings" msgstr "" -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" +#: ../../mod/profiles.php:672 +msgid "Clone this profile" msgstr "" -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" +#: ../../mod/profiles.php:673 +msgid "Delete this profile" msgstr "" -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" +#: ../../mod/profiles.php:675 +msgid "Import profile from file" msgstr "" -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" +#: ../../mod/profiles.php:676 +msgid "Export profile to file" msgstr "" -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" +#: ../../mod/profiles.php:677 +msgid "Profile Name:" msgstr "" -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" +#: ../../mod/profiles.php:678 +msgid "Your Full Name:" msgstr "" -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" +#: ../../mod/profiles.php:679 +msgid "Title/Description:" msgstr "" -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" +#: ../../mod/profiles.php:680 +msgid "Your Gender:" msgstr "" -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" +#: ../../mod/profiles.php:681 +msgid "Birthday :" msgstr "" -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" +#: ../../mod/profiles.php:682 +msgid "Street Address:" msgstr "" -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" +#: ../../mod/profiles.php:683 +msgid "Locality/City:" msgstr "" -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" +#: ../../mod/profiles.php:684 +msgid "Postal/Zip Code:" msgstr "" -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" +#: ../../mod/profiles.php:685 +msgid "Country:" msgstr "" -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" +#: ../../mod/profiles.php:686 +msgid "Region/State:" msgstr "" -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Light (Red Matrix default)" +#: ../../mod/profiles.php:687 +msgid "<span class=\"heart\">♥</span> Marital Status:" msgstr "" -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Select scheme" +#: ../../mod/profiles.php:688 +msgid "Who: (if applicable)" msgstr "" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Narrow navbar" +#: ../../mod/profiles.php:689 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar background color" +#: ../../mod/profiles.php:690 +msgid "Since [date]:" msgstr "" -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top color" +#: ../../mod/profiles.php:692 +msgid "Homepage URL:" msgstr "" -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom color" +#: ../../mod/profiles.php:695 +msgid "Religious Views:" msgstr "" -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top color" +#: ../../mod/profiles.php:696 +msgid "Keywords:" msgstr "" -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom color" +#: ../../mod/profiles.php:699 +msgid "Example: fishing photography software" msgstr "" -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border color " +#: ../../mod/profiles.php:700 +msgid "Used in directory listings" msgstr "" -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar icon color " +#: ../../mod/profiles.php:701 +msgid "Tell us about yourself..." msgstr "" -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar active icon color " +#: ../../mod/profiles.php:702 +msgid "Hobbies/Interests" msgstr "" -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link color" +#: ../../mod/profiles.php:703 +msgid "Contact information and Social Networks" msgstr "" -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set font-color for banner" +#: ../../mod/profiles.php:704 +msgid "My other channels" msgstr "" -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color" +#: ../../mod/profiles.php:705 +msgid "Musical interests" msgstr "" -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background image" +#: ../../mod/profiles.php:706 +msgid "Books, literature" msgstr "" -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background color of items" +#: ../../mod/profiles.php:707 +msgid "Television" msgstr "" -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of comments" +#: ../../mod/profiles.php:708 +msgid "Film/dance/culture/entertainment" msgstr "" -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border color of comments" +#: ../../mod/profiles.php:709 +msgid "Love/romance" msgstr "" -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" +#: ../../mod/profiles.php:710 +msgid "Work/employment" msgstr "" -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic color for item icons" +#: ../../mod/profiles.php:711 +msgid "School/education" msgstr "" -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover color for item icons" +#: ../../mod/profiles.php:717 +msgid "This is your default profile." msgstr "" -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-size for the entire application" +#: ../../mod/profiles.php:728 +msgid "Age: " msgstr "" -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Example: 14px" +#: ../../mod/profiles.php:771 +msgid "Edit/Manage Profiles" msgstr "" -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-color for posts and comments" +#: ../../mod/profiles.php:772 +msgid "Add profile things" msgstr "" -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" +#: ../../mod/profiles.php:773 +msgid "Include desirable objects in your profile" msgstr "" -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set shadow depth of photos" +#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 +msgid "Block Name" msgstr "" -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of content region in pixel" +#: ../../mod/blocks.php:149 +msgid "Block Title" msgstr "" -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Leave empty for default width" +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." msgstr "" -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center page content" +#: ../../mod/sources.php:45 +msgid "Source created." msgstr "" -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" +#: ../../mod/sources.php:57 +msgid "Source updated." msgstr "" -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" +#: ../../mod/sources.php:82 +msgid "*" msgstr "" -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of followup author photos" +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "" + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "" + +#: ../../mod/sources.php:101 ../../mod/sources.php:133 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "" + +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "" + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "" + +#: ../../mod/webpages.php:191 +msgid "Page Title" +msgstr "" + +#: ../../mod/dirsearch.php:29 +msgid "This directory server requires an access token" +msgstr "" + +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "" + +#: ../../mod/like.php:21 +msgid "" +"Please <a href=\"rmagic\">login with your $Projectname ID</a> or <a href=" +"\"register\">register as a new $Projectname member</a> to continue." +msgstr "" + +#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 +msgid "Invalid request." +msgstr "" + +#: ../../mod/like.php:143 +msgid "thing" +msgstr "" + +#: ../../mod/like.php:189 +msgid "Channel unavailable." +msgstr "" + +#: ../../mod/like.php:231 +msgid "Previous action reversed." +msgstr "" + +#: ../../mod/like.php:401 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "" + +#: ../../mod/like.php:403 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "" + +#: ../../mod/like.php:405 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "" + +#: ../../mod/like.php:407 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: ../../mod/like.php:409 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: ../../mod/like.php:411 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: ../../mod/like.php:507 +msgid "Action completed." +msgstr "" + +#: ../../mod/like.php:508 +msgid "Thank you." +msgstr "" + +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "" + +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "" + +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " msgstr "" #: ../../boot.php:1355 diff --git a/version.inc b/version.inc index 6eff764e2..b94d740a1 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-10-09.1180 +2015-10-14.1185 diff --git a/view/css/conversation.css b/view/css/conversation.css index e409cf4cf..9b659ea9f 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -83,15 +83,6 @@ code { margin-right: 10px; } -.wall-item-photo-wrapper { - margin-top: 0px; - margin-bottom: 20px; -} - -.comment .wall-item-photo-wrapper { - margin-bottom: 15px; -} - .wall-item-wrapper { margin-left:10px; } @@ -171,11 +162,6 @@ a.wall-item-name-link { margin-top: 10px; } -.wall-item-tools { - width: 100%; - margin-top: 10px; -} - .item-tool { cursor: pointer; } diff --git a/view/css/mod_directory.css b/view/css/mod_directory.css index 8e55ac3be..5a2b8d443 100644 --- a/view/css/mod_directory.css +++ b/view/css/mod_directory.css @@ -29,3 +29,6 @@ margin-top: -2px; } +.directory-collapse { + overflow: auto; +} diff --git a/view/es/hmessages.po b/view/es/hmessages.po index 0d3996b68..e65337cb1 100644 --- a/view/es/hmessages.po +++ b/view/es/hmessages.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-02 00:03-0700\n" -"PO-Revision-Date: 2015-10-04 08:23+0000\n" +"POT-Creation-Date: 2015-10-09 00:03-0700\n" +"PO-Revision-Date: 2015-10-12 20:30+0000\n" "Last-Translator: Manuel Jiménez Friaza <mjfriaza@openmailbox.org>\n" "Language-Team: Spanish (http://www.transifex.com/Friendica/red-matrix/language/es/)\n" "MIME-Version: 1.0\n" @@ -213,11 +213,11 @@ msgstr "Se puede charlar conmigo (cuando esté disponible)" #: ../../include/permissions.php:41 msgid "Can write to my file storage and photos" -msgstr "Pueden escribirse mis ficheros compartidos y fotos" +msgstr "Puede escribirse en mi repositorio de ficheros y fotos" #: ../../include/permissions.php:42 msgid "Can edit my webpages" -msgstr "Puede editar mis páginas web" +msgstr "Pueden editarse mis páginas web" #: ../../include/permissions.php:44 msgid "Can source my public posts in derived channels" @@ -326,14 +326,13 @@ msgstr "Sala no encontrada." #: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 #: ../../mod/pdledit.php:21 ../../mod/photos.php:70 ../../mod/events.php:256 #: ../../mod/profile_photo.php:338 ../../mod/profile_photo.php:351 -#: ../../mod/message.php:16 ../../mod/webpages.php:69 +#: ../../mod/mail.php:114 ../../mod/message.php:16 ../../mod/webpages.php:69 #: ../../mod/register.php:72 ../../mod/blocks.php:69 ../../mod/blocks.php:76 #: ../../mod/service_limits.php:7 ../../mod/sources.php:66 -#: ../../mod/regmod.php:17 ../../mod/mail.php:114 ../../mod/thing.php:271 -#: ../../mod/thing.php:291 ../../mod/thing.php:328 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/viewsrc.php:14 -#: ../../mod/settings.php:565 ../../mod/manage.php:6 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/connections.php:29 +#: ../../mod/regmod.php:17 ../../mod/thing.php:271 ../../mod/thing.php:291 +#: ../../mod/thing.php:328 ../../mod/invite.php:13 ../../mod/invite.php:104 +#: ../../mod/viewsrc.php:14 ../../mod/settings.php:565 ../../mod/manage.php:6 +#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/connections.php:29 #: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 #: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 #: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 @@ -780,16 +779,16 @@ msgstr "Describir (opcional)" #: ../../mod/admin.php:1266 ../../mod/admin.php:1351 ../../mod/appman.php:99 #: ../../mod/pdledit.php:58 ../../mod/photos.php:598 ../../mod/photos.php:969 #: ../../mod/photos.php:1009 ../../mod/photos.php:1127 -#: ../../mod/events.php:534 ../../mod/events.php:710 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/mail.php:380 ../../mod/import.php:511 -#: ../../mod/thing.php:313 ../../mod/thing.php:359 ../../mod/invite.php:142 -#: ../../mod/settings.php:583 ../../mod/settings.php:695 -#: ../../mod/settings.php:723 ../../mod/settings.php:746 -#: ../../mod/settings.php:831 ../../mod/settings.php:1020 -#: ../../mod/xchan.php:11 ../../mod/group.php:81 ../../mod/connect.php:93 -#: ../../mod/locs.php:108 ../../mod/setup.php:331 ../../mod/setup.php:371 -#: ../../mod/profiles.php:667 ../../mod/import_items.php:122 -#: ../../view/theme/redbasic/php/config.php:99 +#: ../../mod/events.php:534 ../../mod/events.php:710 ../../mod/mail.php:359 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/import.php:511 ../../mod/thing.php:313 ../../mod/thing.php:359 +#: ../../mod/invite.php:142 ../../mod/settings.php:583 +#: ../../mod/settings.php:695 ../../mod/settings.php:723 +#: ../../mod/settings.php:746 ../../mod/settings.php:831 +#: ../../mod/settings.php:1020 ../../mod/xchan.php:11 ../../mod/group.php:81 +#: ../../mod/connect.php:93 ../../mod/locs.php:108 ../../mod/setup.php:331 +#: ../../mod/setup.php:371 ../../mod/profiles.php:667 +#: ../../mod/import_items.php:122 ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "Enviar" @@ -1187,7 +1186,7 @@ msgstr "canal" #: ../../mod/like.php:361 ../../mod/subthread.php:72 #: ../../mod/subthread.php:172 msgid "status" -msgstr "estado" +msgstr "el mensaje de estado" #: ../../include/conversation.php:150 ../../include/text.php:1840 #: ../../mod/tagger.php:53 @@ -1212,7 +1211,7 @@ msgstr "%1$s ahora está conectado/a con %2$s" #: ../../include/conversation.php:239 #, php-format msgid "%1$s poked %2$s" -msgstr "%1$s dio un toque a %2$s" +msgstr "%1$s ha dado un toque a %2$s" #: ../../include/conversation.php:243 ../../include/text.php:933 msgid "poked" @@ -1252,12 +1251,12 @@ msgstr "Abstención" #: ../../include/conversation.php:576 ../../mod/photos.php:1026 msgctxt "title" msgid "Attending" -msgstr "Participar" +msgstr "Participando" #: ../../include/conversation.php:576 ../../mod/photos.php:1026 msgctxt "title" msgid "Not attending" -msgstr "No participar" +msgstr "No participando" #: ../../include/conversation.php:576 ../../mod/photos.php:1026 msgctxt "title" @@ -1314,9 +1313,8 @@ msgstr "Mostrar en su contexto" #: ../../include/conversation.php:739 ../../include/conversation.php:1212 #: ../../include/ItemObject.php:366 ../../mod/editpost.php:130 -#: ../../mod/editblock.php:150 ../../mod/photos.php:990 ../../mod/mail.php:249 -#: ../../mod/mail.php:381 ../../mod/editlayout.php:148 -#: ../../mod/editwebpage.php:190 +#: ../../mod/editblock.php:150 ../../mod/photos.php:990 +#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:190 msgid "Please wait" msgstr "Espere por favor" @@ -1342,7 +1340,7 @@ msgstr "Seguir el hilo" #: ../../include/conversation.php:943 msgid "View Status" -msgstr "Ver el mensaje de estado" +msgstr "Estado actual" #: ../../include/conversation.php:944 ../../include/nav.php:86 #: ../../mod/connedit.php:494 @@ -1367,7 +1365,7 @@ msgstr "Enviar un mensaje privado" #: ../../include/conversation.php:950 ../../include/apps.php:145 msgid "Poke" -msgstr "Dar un toque" +msgstr "Toque" #: ../../include/conversation.php:1064 #, php-format @@ -1419,7 +1417,7 @@ msgid "Visible to <strong>everybody</strong>" msgstr "Visible para <strong>cualquiera</strong>" #: ../../include/conversation.php:1144 ../../mod/mail.php:182 -#: ../../mod/mail.php:311 +#: ../../mod/mail.php:296 msgid "Please enter a link URL:" msgstr "Por favor, introduzca la dirección del enlace:" @@ -1444,7 +1442,7 @@ msgid "Where are you right now?" msgstr "¿Donde está ahora?" #: ../../include/conversation.php:1150 ../../mod/editpost.php:54 -#: ../../mod/mail.php:183 ../../mod/mail.php:312 +#: ../../mod/mail.php:183 ../../mod/mail.php:297 msgid "Expires YYYY-MM-DD HH:MM" msgstr "Caduca YYYY-MM-DD HH:MM" @@ -1501,8 +1499,8 @@ msgid "Code" msgstr "Código" #: ../../include/conversation.php:1189 ../../mod/editpost.php:119 -#: ../../mod/editblock.php:142 ../../mod/mail.php:246 ../../mod/mail.php:377 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:182 +#: ../../mod/editblock.php:142 ../../mod/editlayout.php:140 +#: ../../mod/editwebpage.php:182 msgid "Upload photo" msgstr "Subir foto" @@ -1511,7 +1509,7 @@ msgid "upload photo" msgstr "subir foto" #: ../../include/conversation.php:1191 ../../mod/editpost.php:120 -#: ../../mod/editblock.php:143 ../../mod/mail.php:247 ../../mod/mail.php:378 +#: ../../mod/editblock.php:143 ../../mod/mail.php:228 ../../mod/mail.php:357 #: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:183 msgid "Attach file" msgstr "Adjuntar fichero" @@ -1521,7 +1519,7 @@ msgid "attach file" msgstr "adjuntar fichero" #: ../../include/conversation.php:1193 ../../mod/editpost.php:121 -#: ../../mod/editblock.php:144 ../../mod/mail.php:248 ../../mod/mail.php:379 +#: ../../mod/editblock.php:144 ../../mod/mail.php:229 ../../mod/mail.php:358 #: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:184 msgid "Insert web link" msgstr "Insertar enlace web" @@ -1604,13 +1602,13 @@ msgid "Example: bob@example.com, mary@example.com" msgstr "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com" #: ../../include/conversation.php:1237 ../../mod/editpost.php:156 -#: ../../mod/editblock.php:176 ../../mod/mail.php:253 ../../mod/mail.php:384 +#: ../../mod/editblock.php:176 ../../mod/mail.php:233 ../../mod/mail.php:362 #: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:217 msgid "Set expiration date" msgstr "Configurar fecha de caducidad" #: ../../include/conversation.php:1239 ../../include/ItemObject.php:686 -#: ../../mod/editpost.php:158 ../../mod/mail.php:255 ../../mod/mail.php:386 +#: ../../mod/editpost.php:158 ../../mod/mail.php:235 ../../mod/mail.php:364 msgid "Encrypt text" msgstr "Cifrar texto" @@ -1761,15 +1759,15 @@ msgstr[1] "No me gusta" msgctxt "noun" msgid "Attending" msgid_plural "Attending" -msgstr[0] "Asistir" -msgstr[1] "Participar" +msgstr[0] "Participando" +msgstr[1] "Participando" #: ../../include/conversation.php:1712 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" -msgstr[0] "No asistir" -msgstr[1] "No participar" +msgstr[0] "No participando" +msgstr[1] "No participando" #: ../../include/conversation.php:1715 msgctxt "noun" @@ -1824,206 +1822,27 @@ msgstr "La foto no ha podido ser guardada." msgid "Upload New Photos" msgstr "Subir nuevas fotos" -#: ../../include/enotify.php:57 ../../include/network.php:1613 +#: ../../include/network.php:635 +msgid "view full size" +msgstr "Ver en el tamaño original" + +#: ../../include/network.php:1613 ../../include/enotify.php:57 msgid "$Projectname Notification" msgstr "Notificación de $Projectname" -#: ../../include/enotify.php:58 ../../include/network.php:1614 +#: ../../include/network.php:1614 ../../include/enotify.php:58 msgid "$projectname" msgstr "$projectname" -#: ../../include/enotify.php:60 ../../include/network.php:1616 +#: ../../include/network.php:1616 ../../include/enotify.php:60 msgid "Thank You," msgstr "Gracias," -#: ../../include/enotify.php:62 ../../include/network.php:1618 +#: ../../include/network.php:1618 ../../include/enotify.php:62 #, php-format msgid "%s Administrator" msgstr "%s Administrador" -#: ../../include/enotify.php:96 -#, php-format -msgid "%s <!item_type!>" -msgstr "%s <!item_type!>" - -#: ../../include/enotify.php:100 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Hubzilla:Aviso] Nuevo correo recibido en %s" - -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s le ha enviado un nuevo mensaje privado en %3$s." - -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s le envió %2$s." - -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "un mensaje privado" - -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Por favor visite %s para ver y/o responder a su mensaje privado." - -#: ../../include/enotify.php:158 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s comentó en [zrl=%3$s]%4$s[/zrl]" - -#: ../../include/enotify.php:166 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s comentó en [zrl=%3$s]%4$s de %5$s[/zrl]" - -#: ../../include/enotify.php:175 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s comentó en [zrl=%3$s]su %4$s[/zrl]" - -#: ../../include/enotify.php:186 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:Aviso] Nuevo comentario de %2$s en la conversación #%1$d" - -#: ../../include/enotify.php:187 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s comentó un elemento/conversación que ha estado siguiendo." - -#: ../../include/enotify.php:190 ../../include/enotify.php:205 -#: ../../include/enotify.php:231 ../../include/enotify.php:249 -#: ../../include/enotify.php:263 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Para ver o comentar la conversación, visite %s" - -#: ../../include/enotify.php:196 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:Aviso] %s escribió en su página del perfil" - -#: ../../include/enotify.php:198 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s publicó en su página del perfil en %3$s" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s publicó en [zrl=%3$s]su página del perfil[/zrl]" - -#: ../../include/enotify.php:224 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Hubzilla:Aviso] %s le etiquetó" - -#: ../../include/enotify.php:225 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s le etiquetó en %3$s" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]le etiquetó[/zrl]." - -#: ../../include/enotify.php:238 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Hubzilla:Aviso] %1$s le ha dado un toque" - -#: ../../include/enotify.php:239 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s le dio un toque en %3$s" - -#: ../../include/enotify.php:240 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]le dio un toque[/zrl]." - -#: ../../include/enotify.php:256 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Hubzilla:Aviso] %s etiquetó su entrada" - -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s etiquetó su publicación en %3$s" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s etiquetó [zrl=%3$s]su publicación[/zrl]" - -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" -msgstr "[Hubzilla:Aviso] Solicitud de conexión recibida" - -#: ../../include/enotify.php:271 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, ha recibido una nueva solicitud de conexión de '%2$s' en %3$s" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, ha recibido [zrl=%2$s]una nueva solicitud de conexión[/zrl] de %3$s." - -#: ../../include/enotify.php:276 ../../include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puede visitar su perfil en %s" - -#: ../../include/enotify.php:278 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Por favor, visite %s para permitir o rechazar la solicitad de conexión." - -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Hubzilla:Aviso] recibió una sugerencia de conexión" - -#: ../../include/enotify.php:286 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, ha recibido una sugerencia de conexión de '%2$s' en %3$s" - -#: ../../include/enotify.php:287 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, ha recibido [zrl=%2$s]una sugerencia de conexión[/zrl] para %3$s de %4$s." - -#: ../../include/enotify.php:293 -msgid "Name:" -msgstr "Nombre:" - -#: ../../include/enotify.php:294 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Por favor, visite %s para aprobar o rechazar la sugerencia." - -#: ../../include/enotify.php:511 -msgid "[Red:Notify]" -msgstr "[Hubzilla:Aviso]" - -#: ../../include/network.php:635 -msgid "view full size" -msgstr "Ver en el tamaño original" - #: ../../include/network.php:1660 ../../include/account.php:316 #: ../../include/account.php:343 ../../include/account.php:403 msgid "Administrator" @@ -2092,11 +1911,11 @@ msgstr "Guardar" #: ../../include/text.php:933 msgid "poke" -msgstr "dar un toque" +msgstr "un toque" #: ../../include/text.php:934 msgid "ping" -msgstr "avisar" +msgstr "un ping" #: ../../include/text.php:934 msgid "pinged" @@ -2104,35 +1923,35 @@ msgstr "avisado/a" #: ../../include/text.php:935 msgid "prod" -msgstr "incitar" +msgstr "una incitación" #: ../../include/text.php:935 msgid "prodded" -msgstr "incitado/a" +msgstr "ha recibido una incitación" #: ../../include/text.php:936 msgid "slap" -msgstr "abofetear" +msgstr "una bofetada" #: ../../include/text.php:936 msgid "slapped" -msgstr "abofeteado/a" +msgstr "ha recibido una bofetada" #: ../../include/text.php:937 msgid "finger" -msgstr "señalar" +msgstr "finger" #: ../../include/text.php:937 msgid "fingered" -msgstr "señalado/a" +msgstr "ha recibido un \"finger\"" #: ../../include/text.php:938 msgid "rebuff" -msgstr "desairar" +msgstr "rechazo" #: ../../include/text.php:938 msgid "rebuffed" -msgstr "desairado/a" +msgstr "ha sido rechazado/a" #: ../../include/text.php:948 msgid "happy" @@ -2486,7 +2305,7 @@ msgstr "No especificado" #: ../../include/profile_selectors.php:6 msgid "Undecided" -msgstr "Indeciso" +msgstr "Indeciso/a" #: ../../include/profile_selectors.php:42 #: ../../include/profile_selectors.php:61 @@ -2921,6 +2740,185 @@ msgstr "Conexión: %s" msgid "Connection not found." msgstr "Conexión no encontrada" +#: ../../include/enotify.php:96 +#, php-format +msgid "%s <!item_type!>" +msgstr "%s <!item_type!>" + +#: ../../include/enotify.php:100 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Aviso] Nuevo mensaje en %s" + +#: ../../include/enotify.php:102 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s le ha enviado un nuevo mensaje privado en %3$s." + +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s le envió %2$s." + +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "un mensaje privado" + +#: ../../include/enotify.php:104 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Por favor visite %s para ver y/o responder a su mensaje privado." + +#: ../../include/enotify.php:158 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s[/zrl]" + +#: ../../include/enotify.php:166 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%5$s de %4$s[/zrl] " + +#: ../../include/enotify.php:175 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s ha comentado [zrl=%3$s]su %4$s[/zrl]" + +#: ../../include/enotify.php:186 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla:Aviso] Nuevo comentario de %2$s a la conversación #%1$d" + +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s ha comentado un elemento/conversación que ha estado siguiendo." + +#: ../../include/enotify.php:190 ../../include/enotify.php:205 +#: ../../include/enotify.php:231 ../../include/enotify.php:249 +#: ../../include/enotify.php:263 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Para ver o comentar la conversación, visite %s" + +#: ../../include/enotify.php:196 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil" + +#: ../../include/enotify.php:198 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s publicó en su página del perfil en %3$s" + +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s publicó en [zrl=%3$s]su página del perfil[/zrl]" + +#: ../../include/enotify.php:224 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla:Aviso] %s le ha etiquetado" + +#: ../../include/enotify.php:225 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s le etiquetó en %3$s" + +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]le etiquetó[/zrl]." + +#: ../../include/enotify.php:238 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla:Aviso] %1$s le ha dado un toque" + +#: ../../include/enotify.php:239 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s le dio un toque en %3$s" + +#: ../../include/enotify.php:240 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]le dio un toque[/zrl]." + +#: ../../include/enotify.php:256 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla:Aviso] %s ha etiquetado su publicación" + +#: ../../include/enotify.php:257 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s etiquetó su publicación en %3$s" + +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s etiquetó [zrl=%3$s]su publicación[/zrl]" + +#: ../../include/enotify.php:270 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla:Aviso] Ha recibido una solicitud de conexión" + +#: ../../include/enotify.php:271 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, ha recibido una nueva solicitud de conexión de '%2$s' en %3$s" + +#: ../../include/enotify.php:272 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, ha recibido [zrl=%2$s]una nueva solicitud de conexión[/zrl] de %3$s." + +#: ../../include/enotify.php:276 ../../include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puede visitar su perfil en %s" + +#: ../../include/enotify.php:278 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Por favor, visite %s para permitir o rechazar la solicitad de conexión." + +#: ../../include/enotify.php:285 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad" + +#: ../../include/enotify.php:286 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, ha recibido una sugerencia de conexión de '%2$s' en %3$s" + +#: ../../include/enotify.php:287 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, ha recibido [zrl=%2$s]una sugerencia de conexión[/zrl] para %3$s de %4$s." + +#: ../../include/enotify.php:293 +msgid "Name:" +msgstr "Nombre:" + +#: ../../include/enotify.php:294 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Por favor, visite %s para aprobar o rechazar la sugerencia." + +#: ../../include/enotify.php:511 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Aviso]" + #: ../../include/bb2diaspora.php:373 msgid "Attachments:" msgstr "Ficheros adjuntos:" @@ -3778,153 +3776,149 @@ msgid "Private Mail Menu" msgstr "Menú de correo privado" #: ../../include/widgets.php:569 -msgid "Check Mail" -msgstr "Comprobar correo" - -#: ../../include/widgets.php:575 msgid "Combined View" msgstr "Vista combinada" -#: ../../include/widgets.php:580 ../../include/nav.php:191 +#: ../../include/widgets.php:574 ../../include/nav.php:191 msgid "Inbox" msgstr "Bandeja de entrada" -#: ../../include/widgets.php:585 ../../include/nav.php:192 +#: ../../include/widgets.php:579 ../../include/nav.php:192 msgid "Outbox" msgstr "Bandeja de salida" -#: ../../include/widgets.php:590 ../../include/nav.php:193 +#: ../../include/widgets.php:584 ../../include/nav.php:193 msgid "New Message" msgstr "Nuevo mensaje" -#: ../../include/widgets.php:609 ../../include/widgets.php:621 +#: ../../include/widgets.php:603 ../../include/widgets.php:615 msgid "Conversations" msgstr "Conversaciones" -#: ../../include/widgets.php:613 +#: ../../include/widgets.php:607 msgid "Received Messages" msgstr "Mensajes recibidos" -#: ../../include/widgets.php:617 +#: ../../include/widgets.php:611 msgid "Sent Messages" msgstr "Enviar mensajes" -#: ../../include/widgets.php:631 +#: ../../include/widgets.php:625 msgid "No messages." msgstr "Sin mensajes." -#: ../../include/widgets.php:649 +#: ../../include/widgets.php:643 msgid "Delete conversation" msgstr "Eliminar conversación" -#: ../../include/widgets.php:651 +#: ../../include/widgets.php:645 msgid "D, d M Y - g:i A" msgstr "D d M Y - G:i" -#: ../../include/widgets.php:740 +#: ../../include/widgets.php:734 msgid "Chat Rooms" msgstr "Salas de chat" -#: ../../include/widgets.php:760 +#: ../../include/widgets.php:754 msgid "Bookmarked Chatrooms" msgstr "Salas de chat preferidas" -#: ../../include/widgets.php:780 +#: ../../include/widgets.php:774 msgid "Suggested Chatrooms" msgstr "Salas de chat sugeridas" -#: ../../include/widgets.php:907 ../../include/widgets.php:965 +#: ../../include/widgets.php:901 ../../include/widgets.php:959 msgid "photo/image" msgstr "foto/imagen" -#: ../../include/widgets.php:1060 ../../include/widgets.php:1062 +#: ../../include/widgets.php:1054 ../../include/widgets.php:1056 msgid "Rate Me" msgstr "Valorar este canal" -#: ../../include/widgets.php:1066 +#: ../../include/widgets.php:1060 msgid "View Ratings" msgstr "Mostrar las valoraciones" -#: ../../include/widgets.php:1077 +#: ../../include/widgets.php:1071 msgid "Public Hubs" msgstr "Servidores públicos" -#: ../../include/widgets.php:1125 +#: ../../include/widgets.php:1119 msgid "Forums" msgstr "Foros" -#: ../../include/widgets.php:1152 +#: ../../include/widgets.php:1146 msgid "Tasks" msgstr "Tareas" -#: ../../include/widgets.php:1161 +#: ../../include/widgets.php:1155 msgid "Documentation" msgstr "Documentación" -#: ../../include/widgets.php:1163 +#: ../../include/widgets.php:1157 msgid "Project/Site Information" msgstr "Información sobre el proyecto o sitio" -#: ../../include/widgets.php:1164 +#: ../../include/widgets.php:1158 msgid "For Members" msgstr "Para los usuarios" -#: ../../include/widgets.php:1165 +#: ../../include/widgets.php:1159 msgid "For Administrators" msgstr "Para los administradores" -#: ../../include/widgets.php:1166 +#: ../../include/widgets.php:1160 msgid "For Developers" msgstr "Para los desarrolladores" -#: ../../include/widgets.php:1191 ../../mod/admin.php:410 +#: ../../include/widgets.php:1185 ../../mod/admin.php:410 msgid "Site" msgstr "Sitio" -#: ../../include/widgets.php:1192 +#: ../../include/widgets.php:1186 msgid "Accounts" msgstr "Cuentas" -#: ../../include/widgets.php:1193 ../../mod/admin.php:939 +#: ../../include/widgets.php:1187 ../../mod/admin.php:939 msgid "Channels" msgstr "Canales" -#: ../../include/widgets.php:1194 ../../mod/admin.php:1031 +#: ../../include/widgets.php:1188 ../../mod/admin.php:1031 #: ../../mod/admin.php:1071 msgid "Plugins" msgstr "Extensiones" -#: ../../include/widgets.php:1195 ../../mod/admin.php:1231 +#: ../../include/widgets.php:1189 ../../mod/admin.php:1231 #: ../../mod/admin.php:1265 msgid "Themes" msgstr "Temas" -#: ../../include/widgets.php:1196 +#: ../../include/widgets.php:1190 msgid "Inspect queue" msgstr "Examinar la cola" -#: ../../include/widgets.php:1197 +#: ../../include/widgets.php:1191 msgid "Profile Config" msgstr "Ajustes del perfil" -#: ../../include/widgets.php:1198 +#: ../../include/widgets.php:1192 msgid "DB updates" msgstr "Actualizaciones de la base de datos" -#: ../../include/widgets.php:1216 ../../include/widgets.php:1222 +#: ../../include/widgets.php:1210 ../../include/widgets.php:1216 #: ../../mod/admin.php:1350 msgid "Logs" msgstr "Informes" -#: ../../include/widgets.php:1220 ../../include/nav.php:210 +#: ../../include/widgets.php:1214 ../../include/nav.php:210 msgid "Admin" msgstr "Administrador" -#: ../../include/widgets.php:1221 +#: ../../include/widgets.php:1215 msgid "Plugin Features" msgstr "Ajustes de la extensión" -#: ../../include/widgets.php:1223 +#: ../../include/widgets.php:1217 msgid "User registrations waiting for confirmation" msgstr "Registros de usuarios pendientes de confirmación" @@ -4408,17 +4402,17 @@ msgstr "%1$s se abstiene en %3$s de %2$s" #: ../../mod/like.php:420 #, php-format msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s participará en el %3$s de %2$s" +msgstr "%3$s de %2$s: %1$s participa" #: ../../mod/like.php:422 #, php-format msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s no participará en el %3$s de %2$s" +msgstr "%3$s de %2$s: %1$s no participa" #: ../../mod/like.php:424 #, php-format msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s tal vez participe en el %3$s de %2$s" +msgstr "%3$s de %2$s: %1$s quizá participe" #: ../../mod/like.php:520 msgid "Action completed." @@ -4513,7 +4507,7 @@ msgstr "Ninguna conexión en común." #: ../../mod/ping.php:260 msgid "sent you a private message" -msgstr "enviarle un mensaje privado" +msgstr "le ha enviado un mensaje privado" #: ../../mod/ping.php:308 msgid "added your channel" @@ -4896,7 +4890,7 @@ msgstr "palabras, una por línea, o #etiquetas o /patrones/, dejar en blanco par #: ../../mod/connedit.php:673 msgid "Do not import posts with this text" -msgstr "No importar entradas que contienen este texto" +msgstr "No importar entradas que contengan este texto" #: ../../mod/connedit.php:675 msgid "This information is public!" @@ -5107,7 +5101,7 @@ msgstr "Descargar el fichero PDL" #: ../../mod/poke.php:164 msgid "Poke/Prod" -msgstr "Dar un toque/Incitar" +msgstr "Toque/Incitación" #: ../../mod/poke.php:165 msgid "poke, prod or do other things to somebody" @@ -5309,7 +5303,7 @@ msgstr "correo recuperado" #: ../../mod/dreport.php:106 msgid "duplicate mail received" -msgstr "se ha recibido correo duplicado" +msgstr "se ha recibido mensaje duplicado" #: ../../mod/dreport.php:109 msgid "mail delivered" @@ -6842,6 +6836,93 @@ msgstr "Sitio web:" msgid "Description: " msgstr "Descripción:" +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Imposible asociar a un destinatario." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Imposible comunicar con el canal solicitado." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "No se puede verificar el canal solicitado." + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." + +#: ../../mod/mail.php:128 +msgid "Messages" +msgstr "Mensajes" + +#: ../../mod/mail.php:155 +msgid "Message recalled." +msgstr "Mensaje recuperado." + +#: ../../mod/mail.php:168 +msgid "Conversation removed." +msgstr "Conversación eliminada." + +#: ../../mod/mail.php:211 +msgid "Requested channel is not in this network" +msgstr "El canal solicitado no existe en esta red" + +#: ../../mod/mail.php:219 +msgid "Send Private Message" +msgstr "Enviar un mensaje privado" + +#: ../../mod/mail.php:220 ../../mod/mail.php:349 +msgid "To:" +msgstr "Para:" + +#: ../../mod/mail.php:223 ../../mod/mail.php:351 +msgid "Subject:" +msgstr "Asunto:" + +#: ../../mod/mail.php:226 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "Su mensaje:" + +#: ../../mod/mail.php:230 +msgid "Send" +msgstr "Enviar" + +#: ../../mod/mail.php:321 +msgid "Delete message" +msgstr "Borrar mensaje" + +#: ../../mod/mail.php:322 +msgid "Delivery report" +msgstr "Informe de transmisión" + +#: ../../mod/mail.php:323 +msgid "Recall message" +msgstr "Recuperar el mensaje" + +#: ../../mod/mail.php:325 +msgid "Message has been recalled." +msgstr "El mensaje ha sido recuperado." + +#: ../../mod/mail.php:342 +msgid "Delete Conversation" +msgstr "Eliminar Conversación" + +#: ../../mod/mail.php:344 +msgid "" +"No secure communications available. You <strong>may</strong> be able to " +"respond from the sender's profile page." +msgstr "Comunicación segura no disponible. Pero <strong>puede</strong> responder desde la página del perfil del remitente." + +#: ../../mod/mail.php:348 +msgid "Send Reply" +msgstr "Responder" + +#: ../../mod/mail.php:353 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Su mensaje para %s (%s):" + #: ../../mod/webpages.php:191 msgid "Page Title" msgstr "Título de página" @@ -7077,84 +7158,6 @@ msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" msgid "Authenticate" msgstr "Acceder" -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Imposible asociar a un destinatario." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Imposible comunicar con el canal solicitado." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "No se puede verificar el canal solicitado." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." - -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Mensajes" - -#: ../../mod/mail.php:155 -msgid "Message recalled." -msgstr "Mensaje recuperado." - -#: ../../mod/mail.php:168 -msgid "Conversation removed." -msgstr "Conversación eliminada." - -#: ../../mod/mail.php:233 -msgid "Send Private Message" -msgstr "Enviar un mensaje privado" - -#: ../../mod/mail.php:234 ../../mod/mail.php:368 -msgid "To:" -msgstr "Para:" - -#: ../../mod/mail.php:239 ../../mod/mail.php:370 -msgid "Subject:" -msgstr "Asunto:" - -#: ../../mod/mail.php:243 ../../mod/mail.php:373 ../../mod/invite.php:131 -msgid "Your message:" -msgstr "Su mensaje:" - -#: ../../mod/mail.php:250 -msgid "Send" -msgstr "Enviar" - -#: ../../mod/mail.php:336 -msgid "Delete message" -msgstr "Borrar mensaje" - -#: ../../mod/mail.php:337 -msgid "Delivery report" -msgstr "Informe de transmisión" - -#: ../../mod/mail.php:338 -msgid "Recall message" -msgstr "Recuperar el mensaje" - -#: ../../mod/mail.php:340 -msgid "Message has been recalled." -msgstr "El mensaje ha sido recuperado." - -#: ../../mod/mail.php:361 -msgid "Delete Conversation" -msgstr "Eliminar Conversación" - -#: ../../mod/mail.php:363 -msgid "" -"No secure communications available. You <strong>may</strong> be able to " -"respond from the sender's profile page." -msgstr "Comunicación segura no disponible. Pero <strong>puede</strong> responder desde la página del perfil del remitente." - -#: ../../mod/mail.php:367 -msgid "Send Reply" -msgstr "Responder" - #: ../../mod/siteinfo.php:111 #, php-format msgid "Version %s" @@ -7376,7 +7379,7 @@ msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administ #: ../../mod/invite.php:92 #, php-format msgid "%s : Message delivery failed." -msgstr "%s : Falló la entrega del mensaje." +msgstr "%s : Falló el envío del mensaje." #: ../../mod/invite.php:96 #, php-format @@ -7884,7 +7887,7 @@ msgstr "Usted sea etiquetado en una publicación" #: ../../mod/settings.php:1079 msgid "You are poked/prodded/etc. in a post" -msgstr "Recibir un toque o incitación en una publicación" +msgstr "Reciba un toque o incitación en una entrada" #: ../../mod/settings.php:1082 msgid "Show visual notifications including:" @@ -9009,7 +9012,7 @@ msgstr "Importación completada" #: ../../mod/import_items.php:119 msgid "Import Items" -msgstr "Importar Artículos" +msgstr "Importar elementos" #: ../../mod/import_items.php:120 msgid "" diff --git a/view/es/hstrings.php b/view/es/hstrings.php index 838f50fd4..afa899fb9 100644 --- a/view/es/hstrings.php +++ b/view/es/hstrings.php @@ -45,8 +45,8 @@ $a->strings["Profiles and things other than posts/comments"] = "Perfiles y otras $a->strings["Can forward to all my channel contacts via post @mentions"] = "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención"; $a->strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foros de discusión o grupos"; $a->strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)"; -$a->strings["Can write to my file storage and photos"] = "Pueden escribirse mis ficheros compartidos y fotos"; -$a->strings["Can edit my webpages"] = "Puede editar mis páginas web"; +$a->strings["Can write to my file storage and photos"] = "Puede escribirse en mi repositorio de ficheros y fotos"; +$a->strings["Can edit my webpages"] = "Pueden editarse mis páginas web"; $a->strings["Can source my public posts in derived channels"] = "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados"; $a->strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas"; $a->strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal"; @@ -262,12 +262,12 @@ $a->strings["Cannot locate DNS info for database server '%s'"] = "No se ha podid $a->strings["photo"] = "foto"; $a->strings["event"] = "evento"; $a->strings["channel"] = "canal"; -$a->strings["status"] = "estado"; +$a->strings["status"] = "el mensaje de estado"; $a->strings["comment"] = "comentario"; $a->strings["%1\$s likes %2\$s's %3\$s"] = "a %1\$s le gusta el %3\$s de %2\$s"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "a %1\$s no le gusta el %3\$s de %2\$s"; $a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s dio un toque a %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s"; $a->strings["poked"] = "ha recibido un toque"; $a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; $a->strings["__ctx:title__ Likes"] = "Me gusta"; @@ -275,8 +275,8 @@ $a->strings["__ctx:title__ Dislikes"] = "No me gusta"; $a->strings["__ctx:title__ Agree"] = "De acuerdo"; $a->strings["__ctx:title__ Disagree"] = "En desacuerdo"; $a->strings["__ctx:title__ Abstain"] = "Abstención"; -$a->strings["__ctx:title__ Attending"] = "Participar"; -$a->strings["__ctx:title__ Not attending"] = "No participar"; +$a->strings["__ctx:title__ Attending"] = "Participando"; +$a->strings["__ctx:title__ Not attending"] = "No participando"; $a->strings["__ctx:title__ Might attend"] = "Quizá participe"; $a->strings["Select"] = "Seleccionar"; $a->strings["Private Message"] = "Mensaje Privado"; @@ -295,13 +295,13 @@ $a->strings["Loading..."] = "Cargando..."; $a->strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; $a->strings["View Source"] = "Ver la fuente original de la entrada"; $a->strings["Follow Thread"] = "Seguir el hilo"; -$a->strings["View Status"] = "Ver el mensaje de estado"; +$a->strings["View Status"] = "Estado actual"; $a->strings["View Profile"] = "Ver el perfil"; $a->strings["View Photos"] = "Ver fotos"; $a->strings["Activity/Posts"] = "Actividad y entradas"; $a->strings["Edit Connection"] = "Editar conexión"; $a->strings["Send PM"] = "Enviar un mensaje privado"; -$a->strings["Poke"] = "Dar un toque"; +$a->strings["Poke"] = "Toque"; $a->strings["%s likes this."] = "a %s le gusta esto."; $a->strings["%s doesn't like this."] = "a %s no le gusta esto."; $a->strings["<span %1\$s>%2\$d people</span> like this."] = array( @@ -397,12 +397,12 @@ $a->strings["__ctx:noun__ Dislike"] = array( 1 => "No me gusta", ); $a->strings["__ctx:noun__ Attending"] = array( - 0 => "Asistir", - 1 => "Participar", + 0 => "Participando", + 1 => "Participando", ); $a->strings["__ctx:noun__ Not Attending"] = array( - 0 => "No asistir", - 1 => "No participar", + 0 => "No participando", + 1 => "No participando", ); $a->strings["__ctx:noun__ Undecided"] = array( 0 => "Indeciso/a", @@ -426,47 +426,11 @@ $a->strings["Image file is empty."] = "El fichero de imagen está vacío. "; $a->strings["Unable to process image"] = "No ha sido posible procesar la imagen"; $a->strings["Photo storage failed."] = "La foto no ha podido ser guardada."; $a->strings["Upload New Photos"] = "Subir nuevas fotos"; +$a->strings["view full size"] = "Ver en el tamaño original"; $a->strings["\$Projectname Notification"] = "Notificación de \$Projectname"; $a->strings["\$projectname"] = "\$projectname"; $a->strings["Thank You,"] = "Gracias,"; $a->strings["%s Administrator"] = "%s Administrador"; -$a->strings["%s <!item_type!>"] = "%s <!item_type!>"; -$a->strings["[Red:Notify] New mail received at %s"] = "[Hubzilla:Aviso] Nuevo correo recibido en %s"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s le envió %2\$s."; -$a->strings["a private message"] = "un mensaje privado"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s comentó en [zrl=%3\$s]%4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s comentó en [zrl=%3\$s]%4\$s de %5\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s comentó en [zrl=%3\$s]su %4\$s[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Aviso] Nuevo comentario de %2\$s en la conversación #%1\$d"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s comentó un elemento/conversación que ha estado siguiendo."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s"; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Hubzilla:Aviso] %s escribió en su página del perfil"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s publicó en su página del perfil en %3\$s"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s publicó en [zrl=%3\$s]su página del perfil[/zrl]"; -$a->strings["[Red:Notify] %s tagged you"] = "[Hubzilla:Aviso] %s le etiquetó"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le etiquetó en %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Hubzilla:Aviso] %1\$s le ha dado un toque"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le dio un toque en %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le dio un toque[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Hubzilla:Aviso] %s etiquetó su entrada"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s etiquetó su publicación en %3\$s"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s etiquetó [zrl=%3\$s]su publicación[/zrl]"; -$a->strings["[Red:Notify] Introduction received"] = "[Hubzilla:Aviso] Solicitud de conexión recibida"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s."; -$a->strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Hubzilla:Aviso] recibió una sugerencia de conexión"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una sugerencia de conexión de '%2\$s' en %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una sugerencia de conexión[/zrl] para %3\$s de %4\$s."; -$a->strings["Name:"] = "Nombre:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia."; -$a->strings["[Red:Notify]"] = "[Hubzilla:Aviso]"; -$a->strings["view full size"] = "Ver en el tamaño original"; $a->strings["Administrator"] = "Administrador"; $a->strings["No Subject"] = "Sin asunto"; $a->strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; @@ -484,17 +448,17 @@ $a->strings["%d Connection"] = array( $a->strings["View Connections"] = "Ver conexiones"; $a->strings["Search"] = "Buscar"; $a->strings["Save"] = "Guardar"; -$a->strings["poke"] = "dar un toque"; -$a->strings["ping"] = "avisar"; +$a->strings["poke"] = "un toque"; +$a->strings["ping"] = "un ping"; $a->strings["pinged"] = "avisado/a"; -$a->strings["prod"] = "incitar"; -$a->strings["prodded"] = "incitado/a"; -$a->strings["slap"] = "abofetear"; -$a->strings["slapped"] = "abofeteado/a"; -$a->strings["finger"] = "señalar"; -$a->strings["fingered"] = "señalado/a"; -$a->strings["rebuff"] = "desairar"; -$a->strings["rebuffed"] = "desairado/a"; +$a->strings["prod"] = "una incitación"; +$a->strings["prodded"] = "ha recibido una incitación"; +$a->strings["slap"] = "una bofetada"; +$a->strings["slapped"] = "ha recibido una bofetada"; +$a->strings["finger"] = "finger"; +$a->strings["fingered"] = "ha recibido un \"finger\""; +$a->strings["rebuff"] = "rechazo"; +$a->strings["rebuffed"] = "ha sido rechazado/a"; $a->strings["happy"] = "feliz"; $a->strings["sad"] = "triste"; $a->strings["mellow"] = "amable"; @@ -579,7 +543,7 @@ $a->strings["Transsexual"] = "Transexual"; $a->strings["Hermaphrodite"] = "Hermafrodita"; $a->strings["Neuter"] = "Neutral"; $a->strings["Non-specific"] = "No especificado"; -$a->strings["Undecided"] = "Indeciso"; +$a->strings["Undecided"] = "Indeciso/a"; $a->strings["Males"] = "Hombres"; $a->strings["Females"] = "Mujeres"; $a->strings["Gay"] = "Homosexual"; @@ -680,6 +644,42 @@ $a->strings["Collection is empty."] = "La colección está vacía."; $a->strings["Collection: %s"] = "Colección: %s"; $a->strings["Connection: %s"] = "Conexión: %s"; $a->strings["Connection not found."] = "Conexión no encontrada"; +$a->strings["%s <!item_type!>"] = "%s <!item_type!>"; +$a->strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Aviso] Nuevo mensaje en %s"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s le envió %2\$s."; +$a->strings["a private message"] = "un mensaje privado"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%5\$s de %4\$s[/zrl] "; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]su %4\$s[/zrl]"; +$a->strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Aviso] Nuevo comentario de %2\$s a la conversación #%1\$d"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha comentado un elemento/conversación que ha estado siguiendo."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s"; +$a->strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s publicó en su página del perfil en %3\$s"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s publicó en [zrl=%3\$s]su página del perfil[/zrl]"; +$a->strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Aviso] %s le ha etiquetado"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le etiquetó en %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl]."; +$a->strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Aviso] %1\$s le ha dado un toque"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le dio un toque en %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le dio un toque[/zrl]."; +$a->strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Aviso] %s ha etiquetado su publicación"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s etiquetó su publicación en %3\$s"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s etiquetó [zrl=%3\$s]su publicación[/zrl]"; +$a->strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Aviso] Ha recibido una solicitud de conexión"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s."; +$a->strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión."; +$a->strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una sugerencia de conexión de '%2\$s' en %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una sugerencia de conexión[/zrl] para %3\$s de %4\$s."; +$a->strings["Name:"] = "Nombre:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia."; +$a->strings["[Hubzilla:Notify]"] = "[Hubzilla:Aviso]"; $a->strings["Attachments:"] = "Ficheros adjuntos:"; $a->strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; $a->strings["Image/photo"] = "Imagen/foto"; @@ -890,7 +890,6 @@ $a->strings["Export channel"] = "Exportar canal"; $a->strings["Connection Default Permissions"] = "Permisos predeterminados de conexión"; $a->strings["Premium Channel Settings"] = "Configuración del canal premium"; $a->strings["Private Mail Menu"] = "Menú de correo privado"; -$a->strings["Check Mail"] = "Comprobar correo"; $a->strings["Combined View"] = "Vista combinada"; $a->strings["Inbox"] = "Bandeja de entrada"; $a->strings["Outbox"] = "Bandeja de salida"; @@ -1042,9 +1041,9 @@ $a->strings["Previous action reversed."] = "Acción anterior revocada."; $a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s está de acuerdo con %3\$s de %2\$s"; $a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s no está de acuerdo con %3\$s de %2\$s"; $a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s se abstiene en %3\$s de %2\$s"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participará en el %3\$s de %2\$s"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no participará en el %3\$s de %2\$s"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s tal vez participe en el %3\$s de %2\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s participa"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no participa"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; $a->strings["Action completed."] = "Acción completada."; $a->strings["Thank you."] = "Gracias."; $a->strings["Export Channel"] = "Exportar el canal"; @@ -1062,7 +1061,7 @@ $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado el % $a->strings["No channel."] = "Ningún canal."; $a->strings["Common connections"] = "Conexiones comunes"; $a->strings["No connections in common."] = "Ninguna conexión en común."; -$a->strings["sent you a private message"] = "enviarle un mensaje privado"; +$a->strings["sent you a private message"] = "le ha enviado un mensaje privado"; $a->strings["added your channel"] = "añadió este canal a sus conexiones"; $a->strings["posted an event"] = "publicó un evento"; $a->strings["Documentation Search"] = "Búsqueda de Documentación"; @@ -1155,7 +1154,7 @@ $a->strings["Optionally explain your rating"] = "Opcionalmente, puede explicar s $a->strings["Custom Filter"] = "Filtro personalizado"; $a->strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; $a->strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "palabras, una por línea, o #etiquetas o /patrones/, dejar en blanco para importar todas las entradas"; -$a->strings["Do not import posts with this text"] = "No importar entradas que contienen este texto"; +$a->strings["Do not import posts with this text"] = "No importar entradas que contengan este texto"; $a->strings["This information is public!"] = "¡Esta información es pública!"; $a->strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; $a->strings["Connection Request"] = "Solicitud de conexión"; @@ -1202,7 +1201,7 @@ $a->strings["Layout Description (Optional)"] = "Descripción del formato gráfic $a->strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; $a->strings["Layout Description"] = "Descripción del formato"; $a->strings["Download PDL file"] = "Descargar el fichero PDL"; -$a->strings["Poke/Prod"] = "Dar un toque/Incitar"; +$a->strings["Poke/Prod"] = "Toque/Incitación"; $a->strings["poke, prod or do other things to somebody"] = "dar un toque, incitar u otras cosas a alguien"; $a->strings["Recipient"] = "Destinatario"; $a->strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; @@ -1250,7 +1249,7 @@ $a->strings["update ignored"] = "actualización ignorada"; $a->strings["permission denied"] = "permiso denegado"; $a->strings["recipient not found"] = "destinatario no encontrado"; $a->strings["mail recalled"] = "correo recuperado"; -$a->strings["duplicate mail received"] = "se ha recibido correo duplicado"; +$a->strings["duplicate mail received"] = "se ha recibido mensaje duplicado"; $a->strings["mail delivered"] = "correo enviado"; $a->strings["Delete block?"] = "¿Borrar bloque?"; $a->strings["Edit Block"] = "Modificar este bloque"; @@ -1619,6 +1618,27 @@ $a->strings["Ratings"] = "Valoraciones"; $a->strings["Rating: "] = "Valoración:"; $a->strings["Website: "] = "Sitio web:"; $a->strings["Description: "] = "Descripción:"; +$a->strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; +$a->strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; +$a->strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; +$a->strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; +$a->strings["Messages"] = "Mensajes"; +$a->strings["Message recalled."] = "Mensaje recuperado."; +$a->strings["Conversation removed."] = "Conversación eliminada."; +$a->strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red"; +$a->strings["Send Private Message"] = "Enviar un mensaje privado"; +$a->strings["To:"] = "Para:"; +$a->strings["Subject:"] = "Asunto:"; +$a->strings["Your message:"] = "Su mensaje:"; +$a->strings["Send"] = "Enviar"; +$a->strings["Delete message"] = "Borrar mensaje"; +$a->strings["Delivery report"] = "Informe de transmisión"; +$a->strings["Recall message"] = "Recuperar el mensaje"; +$a->strings["Message has been recalled."] = "El mensaje ha sido recuperado."; +$a->strings["Delete Conversation"] = "Eliminar Conversación"; +$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero <strong>puede</strong> responder desde la página del perfil del remitente."; +$a->strings["Send Reply"] = "Responder"; +$a->strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; $a->strings["Page Title"] = "Título de página"; $a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana."; $a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado."; @@ -1673,25 +1693,6 @@ $a->strings["Authentication failed."] = "Falló la autenticación."; $a->strings["Remote Authentication"] = "Acceso desde su servidor"; $a->strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; $a->strings["Authenticate"] = "Acceder"; -$a->strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; -$a->strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; -$a->strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; -$a->strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; -$a->strings["Messages"] = "Mensajes"; -$a->strings["Message recalled."] = "Mensaje recuperado."; -$a->strings["Conversation removed."] = "Conversación eliminada."; -$a->strings["Send Private Message"] = "Enviar un mensaje privado"; -$a->strings["To:"] = "Para:"; -$a->strings["Subject:"] = "Asunto:"; -$a->strings["Your message:"] = "Su mensaje:"; -$a->strings["Send"] = "Enviar"; -$a->strings["Delete message"] = "Borrar mensaje"; -$a->strings["Delivery report"] = "Informe de transmisión"; -$a->strings["Recall message"] = "Recuperar el mensaje"; -$a->strings["Message has been recalled."] = "El mensaje ha sido recuperado."; -$a->strings["Delete Conversation"] = "Eliminar Conversación"; -$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero <strong>puede</strong> responder desde la página del perfil del remitente."; -$a->strings["Send Reply"] = "Responder"; $a->strings["Version %s"] = "Versión %s"; $a->strings["Installed plugins/addons/apps:"] = "Extensiones/Aplicaciones instaladas:"; $a->strings["No installed plugins/addons/apps"] = "Extensiones/Aplicaciones no instaladas:"; @@ -1741,7 +1742,7 @@ $a->strings["Total invitation limit exceeded."] = "Se ha superado el límite má $a->strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; $a->strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; $a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; -$a->strings["%s : Message delivery failed."] = "%s : Falló la entrega del mensaje."; +$a->strings["%s : Message delivery failed."] = "%s : Falló el envío del mensaje."; $a->strings["%d message sent."] = array( 0 => "%d mensajes enviados.", 1 => "%d mensajes enviados.", @@ -1867,7 +1868,7 @@ $a->strings["Someone writes a followup comment"] = "Alguien escriba un comentari $a->strings["You receive a private message"] = "Reciba un mensaje privado"; $a->strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad"; $a->strings["You are tagged in a post"] = "Usted sea etiquetado en una publicación"; -$a->strings["You are poked/prodded/etc. in a post"] = "Recibir un toque o incitación en una publicación"; +$a->strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una entrada"; $a->strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:"; $a->strings["Unseen matrix activity"] = "Actividad no vista en la red"; $a->strings["Unseen channel activity"] = "Actividad no vista en el canal"; @@ -2124,7 +2125,7 @@ $a->strings["Save Bookmark"] = "Guardar marcador"; $a->strings["URL of bookmark"] = "Dirección del marcador"; $a->strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nombre para la carpeta de marcadores"; $a->strings["Import completed"] = "Importación completada"; -$a->strings["Import Items"] = "Importar Artículos"; +$a->strings["Import Items"] = "Importar elementos"; $a->strings["Use this form to import existing posts and content from an export file."] = "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación."; $a->strings["Focus (Hubzilla default)"] = "Focus (predefinido)"; $a->strings["Theme settings"] = "Ajustes del tema"; diff --git a/view/it/hmessages.po b/view/it/hmessages.po index 6f37f3518..61041e863 100644 --- a/view/it/hmessages.po +++ b/view/it/hmessages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-26 22:48-0700\n" -"PO-Revision-Date: 2015-10-01 15:20+0000\n" +"POT-Creation-Date: 2015-10-09 00:03-0700\n" +"PO-Revision-Date: 2015-10-10 11:09+0000\n" "Last-Translator: tuscanhobbit <pynolo@tarine.net>\n" "Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" @@ -304,7 +304,7 @@ msgstr "Chat non trovata." #: ../../include/attach.php:348 ../../include/attach.php:355 #: ../../include/attach.php:433 ../../include/attach.php:840 #: ../../include/attach.php:911 ../../include/attach.php:1064 -#: ../../include/items.php:4342 ../../mod/achievements.php:30 +#: ../../include/items.php:4348 ../../mod/achievements.php:30 #: ../../mod/fsuggest.php:78 ../../mod/authtest.php:13 #: ../../mod/bookmarks.php:48 ../../mod/block.php:22 ../../mod/block.php:72 #: ../../mod/id.php:71 ../../mod/like.php:177 ../../mod/common.php:35 @@ -313,23 +313,22 @@ msgstr "Chat non trovata." #: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 #: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 #: ../../mod/poke.php:133 ../../mod/network.php:12 ../../mod/chat.php:91 -#: ../../mod/chat.php:96 ../../mod/message.php:16 ../../mod/channel.php:100 -#: ../../mod/channel.php:215 ../../mod/channel.php:255 +#: ../../mod/chat.php:96 ../../mod/rate.php:111 ../../mod/channel.php:100 +#: ../../mod/channel.php:214 ../../mod/channel.php:254 #: ../../mod/editpost.php:13 ../../mod/editblock.php:65 ../../mod/item.php:206 -#: ../../mod/item.php:214 ../../mod/item.php:992 ../../mod/appman.php:66 +#: ../../mod/item.php:214 ../../mod/item.php:1003 ../../mod/appman.php:66 #: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/menu.php:74 #: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/new_channel.php:68 #: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 -#: ../../mod/pdledit.php:21 ../../mod/photos.php:70 ../../mod/rate.php:110 -#: ../../mod/events.php:256 ../../mod/profile_photo.php:338 -#: ../../mod/profile_photo.php:351 ../../mod/mail.php:114 -#: ../../mod/webpages.php:69 ../../mod/register.php:72 ../../mod/blocks.php:69 -#: ../../mod/blocks.php:76 ../../mod/service_limits.php:7 -#: ../../mod/sources.php:66 ../../mod/regmod.php:17 ../../mod/thing.php:271 -#: ../../mod/thing.php:291 ../../mod/thing.php:328 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/viewsrc.php:14 -#: ../../mod/settings.php:565 ../../mod/manage.php:6 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/connections.php:29 +#: ../../mod/pdledit.php:21 ../../mod/photos.php:70 ../../mod/events.php:256 +#: ../../mod/profile_photo.php:338 ../../mod/profile_photo.php:351 +#: ../../mod/mail.php:114 ../../mod/message.php:16 ../../mod/webpages.php:69 +#: ../../mod/register.php:72 ../../mod/blocks.php:69 ../../mod/blocks.php:76 +#: ../../mod/service_limits.php:7 ../../mod/sources.php:66 +#: ../../mod/regmod.php:17 ../../mod/thing.php:271 ../../mod/thing.php:291 +#: ../../mod/thing.php:328 ../../mod/invite.php:13 ../../mod/invite.php:104 +#: ../../mod/viewsrc.php:14 ../../mod/settings.php:565 ../../mod/manage.php:6 +#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/connections.php:29 #: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 #: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 #: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 @@ -358,7 +357,7 @@ msgstr "AAAA-MM-GG oppure MM-GG" msgid "Required" msgstr "Obbligatorio" -#: ../../include/datetime.php:262 ../../boot.php:2306 +#: ../../include/datetime.php:262 ../../boot.php:2312 msgid "never" msgstr "mai" @@ -759,7 +758,7 @@ msgid "Rate This Channel (this is public)" msgstr "Valuta questo canale (visibile a tutti)" #: ../../include/js_strings.php:20 ../../mod/connedit.php:667 -#: ../../mod/rate.php:156 +#: ../../mod/rate.php:157 msgid "Rating" msgstr "Valutazioni" @@ -771,14 +770,15 @@ msgstr "Descrizione (facoltativa)" #: ../../mod/fsuggest.php:108 ../../mod/mitem.php:231 #: ../../mod/connedit.php:688 ../../mod/mood.php:135 ../../mod/pconfig.php:108 #: ../../mod/filestorage.php:156 ../../mod/poke.php:171 ../../mod/chat.php:181 -#: ../../mod/chat.php:209 ../../mod/admin.php:411 ../../mod/admin.php:776 -#: ../../mod/admin.php:940 ../../mod/admin.php:1072 ../../mod/admin.php:1266 -#: ../../mod/admin.php:1351 ../../mod/appman.php:99 ../../mod/pdledit.php:58 -#: ../../mod/photos.php:598 ../../mod/photos.php:969 ../../mod/photos.php:1009 -#: ../../mod/photos.php:1127 ../../mod/rate.php:167 ../../mod/events.php:534 -#: ../../mod/events.php:710 ../../mod/mail.php:364 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/import.php:511 ../../mod/thing.php:313 -#: ../../mod/thing.php:359 ../../mod/invite.php:142 ../../mod/settings.php:583 +#: ../../mod/chat.php:209 ../../mod/rate.php:168 ../../mod/admin.php:411 +#: ../../mod/admin.php:776 ../../mod/admin.php:940 ../../mod/admin.php:1072 +#: ../../mod/admin.php:1266 ../../mod/admin.php:1351 ../../mod/appman.php:99 +#: ../../mod/pdledit.php:58 ../../mod/photos.php:598 ../../mod/photos.php:969 +#: ../../mod/photos.php:1009 ../../mod/photos.php:1127 +#: ../../mod/events.php:534 ../../mod/events.php:710 ../../mod/mail.php:359 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/import.php:511 ../../mod/thing.php:313 ../../mod/thing.php:359 +#: ../../mod/invite.php:142 ../../mod/settings.php:583 #: ../../mod/settings.php:695 ../../mod/settings.php:723 #: ../../mod/settings.php:746 ../../mod/settings.php:831 #: ../../mod/settings.php:1020 ../../mod/xchan.php:11 ../../mod/group.php:81 @@ -1086,7 +1086,7 @@ msgstr "RSS/Atom" #: ../../include/contact_selectors.php:79 ../../mod/id.php:15 #: ../../mod/id.php:16 ../../mod/admin.php:779 ../../mod/admin.php:788 -#: ../../boot.php:1499 +#: ../../boot.php:1505 msgid "Email" msgstr "Email" @@ -1309,9 +1309,8 @@ msgstr "Vedi nel contesto" #: ../../include/conversation.php:739 ../../include/conversation.php:1212 #: ../../include/ItemObject.php:366 ../../mod/editpost.php:130 -#: ../../mod/editblock.php:150 ../../mod/photos.php:990 ../../mod/mail.php:237 -#: ../../mod/mail.php:365 ../../mod/editlayout.php:148 -#: ../../mod/editwebpage.php:190 +#: ../../mod/editblock.php:150 ../../mod/photos.php:990 +#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:190 msgid "Please wait" msgstr "Attendere" @@ -1337,7 +1336,7 @@ msgstr "Segui la discussione" #: ../../include/conversation.php:943 msgid "View Status" -msgstr "Guarda il messaggio di stato" +msgstr "Stato attuale" #: ../../include/conversation.php:944 ../../include/nav.php:86 #: ../../mod/connedit.php:494 @@ -1413,8 +1412,8 @@ msgstr "Non piace a %s." msgid "Visible to <strong>everybody</strong>" msgstr "Visibile a <strong>tutti</strong>" -#: ../../include/conversation.php:1144 ../../mod/mail.php:170 -#: ../../mod/mail.php:299 +#: ../../include/conversation.php:1144 ../../mod/mail.php:182 +#: ../../mod/mail.php:296 msgid "Please enter a link URL:" msgstr "Inserisci l'indirizzo del link:" @@ -1439,7 +1438,7 @@ msgid "Where are you right now?" msgstr "Dove sei ora?" #: ../../include/conversation.php:1150 ../../mod/editpost.php:54 -#: ../../mod/mail.php:171 ../../mod/mail.php:300 +#: ../../mod/mail.php:183 ../../mod/mail.php:297 msgid "Expires YYYY-MM-DD HH:MM" msgstr "Scade il YYYY-MM-DD HH:MM" @@ -1496,8 +1495,8 @@ msgid "Code" msgstr "Codice" #: ../../include/conversation.php:1189 ../../mod/editpost.php:119 -#: ../../mod/editblock.php:142 ../../mod/mail.php:234 ../../mod/mail.php:361 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:182 +#: ../../mod/editblock.php:142 ../../mod/editlayout.php:140 +#: ../../mod/editwebpage.php:182 msgid "Upload photo" msgstr "Carica foto" @@ -1506,7 +1505,7 @@ msgid "upload photo" msgstr "carica foto" #: ../../include/conversation.php:1191 ../../mod/editpost.php:120 -#: ../../mod/editblock.php:143 ../../mod/mail.php:235 ../../mod/mail.php:362 +#: ../../mod/editblock.php:143 ../../mod/mail.php:228 ../../mod/mail.php:357 #: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:183 msgid "Attach file" msgstr "Allega file" @@ -1516,7 +1515,7 @@ msgid "attach file" msgstr "allega file" #: ../../include/conversation.php:1193 ../../mod/editpost.php:121 -#: ../../mod/editblock.php:144 ../../mod/mail.php:236 ../../mod/mail.php:363 +#: ../../mod/editblock.php:144 ../../mod/mail.php:229 ../../mod/mail.php:358 #: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:184 msgid "Insert web link" msgstr "Inserisci un indirizzo web" @@ -1599,13 +1598,13 @@ msgid "Example: bob@example.com, mary@example.com" msgstr "Per esempio: mario@esempio.com, simona@esempio.com" #: ../../include/conversation.php:1237 ../../mod/editpost.php:156 -#: ../../mod/editblock.php:176 ../../mod/mail.php:241 ../../mod/mail.php:368 +#: ../../mod/editblock.php:176 ../../mod/mail.php:233 ../../mod/mail.php:362 #: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:217 msgid "Set expiration date" msgstr "Data di scadenza" #: ../../include/conversation.php:1239 ../../include/ItemObject.php:686 -#: ../../mod/editpost.php:158 ../../mod/mail.php:243 ../../mod/mail.php:370 +#: ../../mod/editpost.php:158 ../../mod/mail.php:235 ../../mod/mail.php:364 msgid "Encrypt text" msgstr "Cifratura del messaggio" @@ -1735,8 +1734,8 @@ msgstr "Gestisci le pagine web" msgid "View all" msgstr "Vedi tutto" -#: ../../include/conversation.php:1703 ../../include/taxonomy.php:403 -#: ../../include/identity.php:1252 ../../include/ItemObject.php:179 +#: ../../include/conversation.php:1703 ../../include/identity.php:1252 +#: ../../include/taxonomy.php:403 ../../include/ItemObject.php:179 #: ../../mod/photos.php:1047 msgctxt "noun" msgid "Like" @@ -1819,208 +1818,29 @@ msgstr "Impossibile salvare la foto." msgid "Upload New Photos" msgstr "Carica nuove foto" -#: ../../include/enotify.php:57 ../../include/network.php:1613 +#: ../../include/network.php:635 +msgid "view full size" +msgstr "guarda nelle dimensioni reali" + +#: ../../include/network.php:1613 ../../include/enotify.php:57 msgid "$Projectname Notification" msgstr "Notifica $Projectname" -#: ../../include/enotify.php:58 ../../include/network.php:1614 +#: ../../include/network.php:1614 ../../include/enotify.php:58 msgid "$projectname" msgstr "$projectname" -#: ../../include/enotify.php:60 ../../include/network.php:1616 +#: ../../include/network.php:1616 ../../include/enotify.php:60 msgid "Thank You," msgstr "Grazie," -#: ../../include/enotify.php:62 ../../include/network.php:1618 +#: ../../include/network.php:1618 ../../include/enotify.php:62 #, php-format msgid "%s Administrator" msgstr "L'amministratore di %s" -#: ../../include/enotify.php:96 -#, php-format -msgid "%s <!item_type!>" -msgstr "%s <!item_type!>" - -#: ../../include/enotify.php:100 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Hubzilla] Nuovo messaggio su %s" - -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." - -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s ti ha mandato %2$s." - -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "un messaggio privato" - -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." - -#: ../../include/enotify.php:158 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]" - -#: ../../include/enotify.php:166 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]" - -#: ../../include/enotify.php:175 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" - -#: ../../include/enotify.php:186 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla] Nuovo commento di %2$s alla conversazione #%1$d" - -#: ../../include/enotify.php:187 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." - -#: ../../include/enotify.php:190 ../../include/enotify.php:205 -#: ../../include/enotify.php:231 ../../include/enotify.php:249 -#: ../../include/enotify.php:263 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Visita %s per leggere o commentare la conversazione." - -#: ../../include/enotify.php:196 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Hubzilla] %s ha scritto sulla tua bacheca" - -#: ../../include/enotify.php:198 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" - -#: ../../include/enotify.php:224 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Hubzilla] %s ti ha taggato" - -#: ../../include/enotify.php:225 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s ti ha taggato su %3$s" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." - -#: ../../include/enotify.php:238 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Hubzilla] %1$s ti ha mandato un poke" - -#: ../../include/enotify.php:239 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" - -#: ../../include/enotify.php:240 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." - -#: ../../include/enotify.php:256 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Hubzilla] %s ha taggato il tuo post" - -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s ha taggato il tuo post su %3$s" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo post[/zrl]" - -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" -msgstr "[Hubzilla] Hai una richiesta di amicizia" - -#: ../../include/enotify.php:271 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." - -#: ../../include/enotify.php:276 ../../include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo su %s" - -#: ../../include/enotify.php:278 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." - -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Hubzilla] Ti è stato suggerito un amico" - -#: ../../include/enotify.php:286 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" - -#: ../../include/enotify.php:287 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." - -#: ../../include/enotify.php:293 -msgid "Name:" -msgstr "Nome:" - -#: ../../include/enotify.php:294 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." - -#: ../../include/enotify.php:508 -msgid "[Red:Notify]" -msgstr "[Hubzilla]" - -#: ../../include/network.php:635 -msgid "view full size" -msgstr "guarda nelle dimensioni reali" - -#: ../../include/network.php:1660 ../../include/account.php:314 -#: ../../include/account.php:341 ../../include/account.php:401 +#: ../../include/network.php:1660 ../../include/account.php:316 +#: ../../include/account.php:343 ../../include/account.php:403 msgid "Administrator" msgstr "Amministratore" @@ -2732,7 +2552,7 @@ msgstr "Amministrazione sito" msgid "Address Book" msgstr "Rubrica" -#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1497 +#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1503 msgid "Login" msgstr "Accedi" @@ -2766,7 +2586,7 @@ msgstr "Eventi" #: ../../include/apps.php:141 ../../include/nav.php:162 msgid "Directory" -msgstr "Elenco pubblico" +msgstr "Elenchi pubblici dei canali" #: ../../include/apps.php:142 ../../include/nav.php:154 ../../mod/help.php:202 #: ../../mod/help.php:207 ../../mod/layouts.php:176 @@ -2843,6 +2663,258 @@ msgstr "Autenticazione fallita" msgid "Login failed." msgstr "Accesso fallito." +#: ../../include/items.php:423 ../../mod/like.php:280 ../../mod/dreport.php:6 +#: ../../mod/dreport.php:45 ../../mod/subthread.php:49 ../../mod/group.php:68 +#: ../../mod/profperm.php:23 ../../mod/import_items.php:114 +#: ../../index.php:360 +msgid "Permission denied" +msgstr "Permesso negato" + +#: ../../include/items.php:1128 ../../include/items.php:1174 +msgid "(Unknown)" +msgstr "(Sconosciuto)" + +#: ../../include/items.php:1371 +msgid "Visible to anybody on the internet." +msgstr "Visibile a chiunque su internet." + +#: ../../include/items.php:1373 +msgid "Visible to you only." +msgstr "Visibile solo a te." + +#: ../../include/items.php:1375 +msgid "Visible to anybody in this network." +msgstr "Visibile a tutti su questa rete." + +#: ../../include/items.php:1377 +msgid "Visible to anybody authenticated." +msgstr "Visibile a chiunque sia autenticato." + +#: ../../include/items.php:1379 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visibile a tutti su %s." + +#: ../../include/items.php:1381 +msgid "Visible to all connections." +msgstr "Visibile a tutti coloro che ti seguono." + +#: ../../include/items.php:1383 +msgid "Visible to approved connections." +msgstr "Visibile ai contatti approvati." + +#: ../../include/items.php:1385 +msgid "Visible to specific connections." +msgstr "Visibile ad alcuni contatti scelti." + +#: ../../include/items.php:4269 ../../mod/display.php:36 +#: ../../mod/filestorage.php:27 ../../mod/admin.php:127 +#: ../../mod/admin.php:979 ../../mod/admin.php:1179 ../../mod/thing.php:86 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: ../../include/items.php:4778 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." +msgstr "Insieme di canali non trovato." + +#: ../../include/items.php:4794 +msgid "Collection is empty." +msgstr "L'insieme di canali è vuoto." + +#: ../../include/items.php:4801 +#, php-format +msgid "Collection: %s" +msgstr "Insieme: %s" + +#: ../../include/items.php:4811 ../../mod/connedit.php:658 +#, php-format +msgid "Connection: %s" +msgstr "Contatto: %s" + +#: ../../include/items.php:4813 +msgid "Connection not found." +msgstr "Contatto non trovato." + +#: ../../include/enotify.php:96 +#, php-format +msgid "%s <!item_type!>" +msgstr "%s <!item_type!>" + +#: ../../include/enotify.php:100 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla] Nuovo messaggio su %s" + +#: ../../include/enotify.php:102 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." + +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s ti ha mandato %2$s." + +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "un messaggio privato" + +#: ../../include/enotify.php:104 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." + +#: ../../include/enotify.php:158 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]" + +#: ../../include/enotify.php:166 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]" + +#: ../../include/enotify.php:175 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" + +#: ../../include/enotify.php:186 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla] Nuovo commento di %2$s alla conversazione #%1$d" + +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." + +#: ../../include/enotify.php:190 ../../include/enotify.php:205 +#: ../../include/enotify.php:231 ../../include/enotify.php:249 +#: ../../include/enotify.php:263 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Visita %s per leggere o commentare la conversazione." + +#: ../../include/enotify.php:196 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla] %s ha scritto sulla tua bacheca" + +#: ../../include/enotify.php:198 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" + +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" + +#: ../../include/enotify.php:224 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla] %s ti ha taggato" + +#: ../../include/enotify.php:225 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s ti ha taggato su %3$s" + +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." + +#: ../../include/enotify.php:238 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla] %1$s ti ha mandato un poke" + +#: ../../include/enotify.php:239 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" + +#: ../../include/enotify.php:240 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." + +#: ../../include/enotify.php:256 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla] %s ha taggato il tuo post" + +#: ../../include/enotify.php:257 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s ha taggato il tuo post su %3$s" + +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo post[/zrl]" + +#: ../../include/enotify.php:270 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla] Hai una richiesta di amicizia" + +#: ../../include/enotify.php:271 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" + +#: ../../include/enotify.php:272 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." + +#: ../../include/enotify.php:276 ../../include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puoi visitare il suo profilo su %s" + +#: ../../include/enotify.php:278 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." + +#: ../../include/enotify.php:285 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla] Ti è stato suggerito un amico" + +#: ../../include/enotify.php:286 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" + +#: ../../include/enotify.php:287 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." + +#: ../../include/enotify.php:293 +msgid "Name:" +msgstr "Nome:" + +#: ../../include/enotify.php:294 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s per approvare o rifiutare il suggerimento." + +#: ../../include/enotify.php:511 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla]" + #: ../../include/bb2diaspora.php:373 msgid "Attachments:" msgstr "Allegati:" @@ -2942,47 +3014,47 @@ msgstr "Inserisci le informazioni richieste." msgid "Failed to store account information." msgstr "Non è stato possibile salvare le informazioni del tuo account." -#: ../../include/account.php:246 +#: ../../include/account.php:248 #, php-format msgid "Registration confirmation for %s" msgstr "Registrazione di %s confermata" -#: ../../include/account.php:312 +#: ../../include/account.php:314 #, php-format msgid "Registration request at %s" msgstr "Richiesta di registrazione su %s" -#: ../../include/account.php:336 +#: ../../include/account.php:338 msgid "your registration password" msgstr "la password di registrazione" -#: ../../include/account.php:339 ../../include/account.php:399 +#: ../../include/account.php:341 ../../include/account.php:401 #, php-format msgid "Registration details for %s" msgstr "Dettagli della registrazione di %s" -#: ../../include/account.php:408 +#: ../../include/account.php:410 msgid "Account approved." msgstr "Account approvato." -#: ../../include/account.php:447 +#: ../../include/account.php:449 #, php-format msgid "Registration revoked for %s" msgstr "Registrazione revocata per %s" -#: ../../include/account.php:492 +#: ../../include/account.php:494 msgid "Account verified. Please login." msgstr "Registrazione verificata. Adesso puoi effettuare login." -#: ../../include/account.php:705 ../../include/account.php:707 +#: ../../include/account.php:707 ../../include/account.php:709 msgid "Click here to upgrade." msgstr "Clicca qui per aggiornare." -#: ../../include/account.php:713 +#: ../../include/account.php:715 msgid "This action exceeds the limits set by your subscription plan." msgstr "Questa operazione supera i limiti del tuo abbonamento." -#: ../../include/account.php:718 +#: ../../include/account.php:720 msgid "This action is not available under your subscription plan." msgstr "Questa operazione non è prevista dal tuo abbonamento." @@ -3018,7 +3090,7 @@ msgstr "l'account locale non è stato trovato." msgid "Cannot connect to yourself." msgstr "Non puoi connetterti a te stesso." -#: ../../include/security.php:345 +#: ../../include/security.php:381 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." @@ -3133,85 +3205,6 @@ msgstr "Canali che non sono in un insieme" msgid "add" msgstr "aggiungi" -#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 -msgid "Tags" -msgstr "Tag" - -#: ../../include/taxonomy.php:294 -msgid "Keywords" -msgstr "Parole chiave" - -#: ../../include/taxonomy.php:315 -msgid "have" -msgstr "ho" - -#: ../../include/taxonomy.php:315 -msgid "has" -msgstr "ha" - -#: ../../include/taxonomy.php:316 -msgid "want" -msgstr "voglio" - -#: ../../include/taxonomy.php:316 -msgid "wants" -msgstr "vuole" - -#: ../../include/taxonomy.php:317 ../../include/ItemObject.php:254 -msgid "like" -msgstr "mi piace" - -#: ../../include/taxonomy.php:317 -msgid "likes" -msgstr "gli piace" - -#: ../../include/taxonomy.php:318 ../../include/ItemObject.php:255 -msgid "dislike" -msgstr "non mi piace" - -#: ../../include/taxonomy.php:318 -msgid "dislikes" -msgstr "non gli piace" - -#: ../../include/dir_fns.php:126 -msgid "Directory Options" -msgstr "Opzioni elenco pubblico" - -#: ../../include/dir_fns.php:128 -msgid "Safe Mode" -msgstr "Modalità SafeSearch" - -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 -#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 -#: ../../mod/mitem.php:229 ../../mod/connedit.php:631 -#: ../../mod/connedit.php:659 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:386 ../../mod/menu.php:96 -#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 -#: ../../mod/api.php:106 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1501 -msgid "No" -msgstr "No" - -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 -#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 -#: ../../mod/mitem.php:229 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:388 ../../mod/menu.php:96 -#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 -#: ../../mod/api.php:105 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1501 -msgid "Yes" -msgstr "Si" - -#: ../../include/dir_fns.php:129 -msgid "Public Forums Only" -msgstr "Solo forum pubblici" - -#: ../../include/dir_fns.php:130 -msgid "This Website Only" -msgstr "Solo in questo sito" - #: ../../include/identity.php:32 msgid "Unable to obtain identity information from database" msgstr "Impossibile ottenere le informazioni di identificazione dal database" @@ -3467,6 +3460,63 @@ msgstr "Impossibile determinare il mittente." msgid "Stored post could not be verified." msgstr "Non è stato possibile verificare il post." +#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 +msgid "Tags" +msgstr "Tag" + +#: ../../include/taxonomy.php:294 +msgid "Keywords" +msgstr "Parole chiave" + +#: ../../include/taxonomy.php:315 +msgid "have" +msgstr "ho" + +#: ../../include/taxonomy.php:315 +msgid "has" +msgstr "ha" + +#: ../../include/taxonomy.php:316 +msgid "want" +msgstr "voglio" + +#: ../../include/taxonomy.php:316 +msgid "wants" +msgstr "vuole" + +#: ../../include/taxonomy.php:317 ../../include/ItemObject.php:254 +msgid "like" +msgstr "mi piace" + +#: ../../include/taxonomy.php:317 +msgid "likes" +msgstr "gli piace" + +#: ../../include/taxonomy.php:318 ../../include/ItemObject.php:255 +msgid "dislike" +msgstr "non mi piace" + +#: ../../include/taxonomy.php:318 +msgid "dislikes" +msgstr "non gli piace" + +#: ../../include/zot.php:683 +msgid "Invalid data packet" +msgstr "Dati ricevuti non validi" + +#: ../../include/zot.php:699 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" + +#: ../../include/zot.php:2235 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" + +#: ../../include/zot.php:3543 +msgid "invalid target signature" +msgstr "la firma ricevuta non è valida" + #: ../../include/ItemObject.php:130 msgid "Save to Folder" msgstr "Salva nella cartella" @@ -3602,78 +3652,6 @@ msgstr "Collegamento" msgid "Video" msgstr "Video" -#: ../../include/items.php:423 ../../mod/like.php:280 ../../mod/dreport.php:6 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 -#: ../../mod/import_items.php:114 ../../index.php:360 -msgid "Permission denied" -msgstr "Permesso negato" - -#: ../../include/items.php:1128 ../../include/items.php:1174 -msgid "(Unknown)" -msgstr "(Sconosciuto)" - -#: ../../include/items.php:1371 -msgid "Visible to anybody on the internet." -msgstr "Visibile a chiunque su internet." - -#: ../../include/items.php:1373 -msgid "Visible to you only." -msgstr "Visibile solo a te." - -#: ../../include/items.php:1375 -msgid "Visible to anybody in this network." -msgstr "Visibile a tutti su questa rete." - -#: ../../include/items.php:1377 -msgid "Visible to anybody authenticated." -msgstr "Visibile a chiunque sia autenticato." - -#: ../../include/items.php:1379 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visibile a tutti su %s." - -#: ../../include/items.php:1381 -msgid "Visible to all connections." -msgstr "Visibile a tutti coloro che ti seguono." - -#: ../../include/items.php:1383 -msgid "Visible to approved connections." -msgstr "Visibile ai contatti approvati." - -#: ../../include/items.php:1385 -msgid "Visible to specific connections." -msgstr "Visibile ad alcuni contatti scelti." - -#: ../../include/items.php:4263 ../../mod/display.php:36 -#: ../../mod/filestorage.php:27 ../../mod/admin.php:127 -#: ../../mod/admin.php:979 ../../mod/admin.php:1179 ../../mod/thing.php:86 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: ../../include/items.php:4772 ../../mod/group.php:38 ../../mod/group.php:137 -msgid "Collection not found." -msgstr "Insieme di canali non trovato." - -#: ../../include/items.php:4788 -msgid "Collection is empty." -msgstr "L'insieme di canali è vuoto." - -#: ../../include/items.php:4795 -#, php-format -msgid "Collection: %s" -msgstr "Insieme: %s" - -#: ../../include/items.php:4805 ../../mod/connedit.php:658 -#, php-format -msgid "Connection: %s" -msgstr "Contatto: %s" - -#: ../../include/items.php:4807 -msgid "Connection not found." -msgstr "Contatto non trovato." - #: ../../include/widgets.php:91 ../../include/nav.php:157 #: ../../mod/apps.php:36 msgid "Apps" @@ -3794,174 +3772,153 @@ msgid "Private Mail Menu" msgstr "Menu messaggi privati" #: ../../include/widgets.php:569 -msgid "Check Mail" -msgstr "Controlla i messaggi" - -#: ../../include/widgets.php:575 msgid "Combined View" msgstr "Vista combinata" -#: ../../include/widgets.php:580 ../../include/nav.php:191 +#: ../../include/widgets.php:574 ../../include/nav.php:191 msgid "Inbox" msgstr "In arrivo" -#: ../../include/widgets.php:585 ../../include/nav.php:192 +#: ../../include/widgets.php:579 ../../include/nav.php:192 msgid "Outbox" msgstr "Inviati" -#: ../../include/widgets.php:590 ../../include/nav.php:193 +#: ../../include/widgets.php:584 ../../include/nav.php:193 msgid "New Message" msgstr "Nuovo messaggio" -#: ../../include/widgets.php:609 ../../include/widgets.php:621 +#: ../../include/widgets.php:603 ../../include/widgets.php:615 msgid "Conversations" msgstr "Conversazioni" -#: ../../include/widgets.php:613 +#: ../../include/widgets.php:607 msgid "Received Messages" msgstr "Ricevuti" -#: ../../include/widgets.php:617 +#: ../../include/widgets.php:611 msgid "Sent Messages" msgstr "Inviati" -#: ../../include/widgets.php:631 +#: ../../include/widgets.php:625 msgid "No messages." msgstr "Nessun messaggio." -#: ../../include/widgets.php:648 +#: ../../include/widgets.php:643 msgid "Delete conversation" msgstr "Elimina la conversazione" -#: ../../include/widgets.php:650 +#: ../../include/widgets.php:645 msgid "D, d M Y - g:i A" msgstr "D d M Y - G:i" -#: ../../include/widgets.php:738 +#: ../../include/widgets.php:734 msgid "Chat Rooms" msgstr "Chat" -#: ../../include/widgets.php:758 +#: ../../include/widgets.php:754 msgid "Bookmarked Chatrooms" msgstr "Chat nei segnalibri" -#: ../../include/widgets.php:778 +#: ../../include/widgets.php:774 msgid "Suggested Chatrooms" msgstr "Chat suggerite" -#: ../../include/widgets.php:905 ../../include/widgets.php:963 +#: ../../include/widgets.php:901 ../../include/widgets.php:959 msgid "photo/image" msgstr "foto/immagine" -#: ../../include/widgets.php:1058 ../../include/widgets.php:1060 +#: ../../include/widgets.php:1054 ../../include/widgets.php:1056 msgid "Rate Me" msgstr "Valutami" -#: ../../include/widgets.php:1064 +#: ../../include/widgets.php:1060 msgid "View Ratings" msgstr "Vedi le valutazioni ricevute" -#: ../../include/widgets.php:1075 +#: ../../include/widgets.php:1071 msgid "Public Hubs" msgstr "Hub pubblici" -#: ../../include/widgets.php:1123 +#: ../../include/widgets.php:1119 msgid "Forums" msgstr "Forum" -#: ../../include/widgets.php:1150 +#: ../../include/widgets.php:1146 msgid "Tasks" msgstr "Attività" -#: ../../include/widgets.php:1159 +#: ../../include/widgets.php:1155 msgid "Documentation" msgstr "Guida" -#: ../../include/widgets.php:1161 +#: ../../include/widgets.php:1157 msgid "Project/Site Information" msgstr "Informazioni sul sito/progetto" -#: ../../include/widgets.php:1162 +#: ../../include/widgets.php:1158 msgid "For Members" msgstr "Per gli utenti" -#: ../../include/widgets.php:1163 +#: ../../include/widgets.php:1159 msgid "For Administrators" msgstr "Per gli amministratori" -#: ../../include/widgets.php:1164 +#: ../../include/widgets.php:1160 msgid "For Developers" msgstr "Per sviluppatori" -#: ../../include/widgets.php:1189 ../../mod/admin.php:410 +#: ../../include/widgets.php:1185 ../../mod/admin.php:410 msgid "Site" msgstr "Sito" -#: ../../include/widgets.php:1190 +#: ../../include/widgets.php:1186 msgid "Accounts" msgstr "Account" -#: ../../include/widgets.php:1191 ../../mod/admin.php:939 +#: ../../include/widgets.php:1187 ../../mod/admin.php:939 msgid "Channels" msgstr "Canali" -#: ../../include/widgets.php:1192 ../../mod/admin.php:1031 +#: ../../include/widgets.php:1188 ../../mod/admin.php:1031 #: ../../mod/admin.php:1071 msgid "Plugins" msgstr "Plugin" -#: ../../include/widgets.php:1193 ../../mod/admin.php:1231 +#: ../../include/widgets.php:1189 ../../mod/admin.php:1231 #: ../../mod/admin.php:1265 msgid "Themes" msgstr "Temi" -#: ../../include/widgets.php:1194 +#: ../../include/widgets.php:1190 msgid "Inspect queue" msgstr "Coda di attesa" -#: ../../include/widgets.php:1195 +#: ../../include/widgets.php:1191 msgid "Profile Config" msgstr "Configurazione del profilo" -#: ../../include/widgets.php:1196 +#: ../../include/widgets.php:1192 msgid "DB updates" msgstr "Aggiornamenti al DB" -#: ../../include/widgets.php:1214 ../../include/widgets.php:1220 +#: ../../include/widgets.php:1210 ../../include/widgets.php:1216 #: ../../mod/admin.php:1350 msgid "Logs" msgstr "Log" -#: ../../include/widgets.php:1218 ../../include/nav.php:210 +#: ../../include/widgets.php:1214 ../../include/nav.php:210 msgid "Admin" msgstr "Amministrazione" -#: ../../include/widgets.php:1219 +#: ../../include/widgets.php:1215 msgid "Plugin Features" msgstr "Plugin" -#: ../../include/widgets.php:1221 +#: ../../include/widgets.php:1217 msgid "User registrations waiting for confirmation" msgstr "Registrazioni in attesa" -#: ../../include/zot.php:677 -msgid "Invalid data packet" -msgstr "Dati ricevuti non validi" - -#: ../../include/zot.php:693 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" - -#: ../../include/zot.php:2213 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" - -#: ../../include/zot.php:3511 -msgid "invalid target signature" -msgstr "la firma ricevuta non è valida" - -#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1496 +#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1502 msgid "Logout" msgstr "Esci" @@ -4034,7 +3991,7 @@ msgstr "Clicca per farti riconoscere dal tuo hub principale" msgid "Home Page" msgstr "Bacheca" -#: ../../include/nav.php:149 ../../mod/register.php:224 ../../boot.php:1473 +#: ../../include/nav.php:149 ../../mod/register.php:224 ../../boot.php:1479 msgid "Register" msgstr "Registrati" @@ -4056,7 +4013,7 @@ msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" #: ../../include/nav.php:162 msgid "Channel Directory" -msgstr "Elenco pubblico canali" +msgstr "Elenchi pubblici dei canali" #: ../../include/nav.php:174 msgid "Grid" @@ -4142,6 +4099,45 @@ msgstr "@nome, #tag, ?guida, contenuto" msgid "Please wait..." msgstr "Attendere..." +#: ../../include/dir_fns.php:126 +msgid "Directory Options" +msgstr "Opzioni per elenchi pubblici" + +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" +msgstr "Modalità SafeSearch" + +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 +#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 +#: ../../mod/mitem.php:229 ../../mod/connedit.php:631 +#: ../../mod/connedit.php:659 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:386 ../../mod/menu.php:96 +#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 +#: ../../mod/api.php:106 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1507 +msgid "No" +msgstr "No" + +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 +#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 +#: ../../mod/mitem.php:229 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:388 ../../mod/menu.php:96 +#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 +#: ../../mod/api.php:105 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1507 +msgid "Yes" +msgstr "Si" + +#: ../../include/dir_fns.php:129 +msgid "Public Forums Only" +msgstr "Solo forum pubblici" + +#: ../../include/dir_fns.php:130 +msgid "This Website Only" +msgstr "Solo in questo sito" + #: ../../mod/achievements.php:34 msgid "Some blurb about what to do when you're new here" msgstr "Qualche suggerimento per i nuovi utenti su cosa fare" @@ -4210,11 +4206,11 @@ msgstr "Contatti in comune:" #: ../../mod/directory.php:374 msgid "Global Directory" -msgstr "Elenco globale dei canali" +msgstr "Elenchi pubblici globali" #: ../../mod/directory.php:374 msgid "Local Directory" -msgstr "Elenco canali su questo server" +msgstr "Elenco canali su questo hub" #: ../../mod/directory.php:380 msgid "Finding:" @@ -4561,7 +4557,7 @@ msgstr "Inserisci la tua password per verifica:" #: ../../mod/removeme.php:60 msgid "Remove this channel and all its clones from the network" -msgstr "Rimuovi questo canale e tutti i suoi cloni dalla rete" +msgstr "Elimina questo canale e tutti i suoi cloni dalla rete" #: ../../mod/removeme.php:60 msgid "" @@ -4928,7 +4924,7 @@ msgstr "derivato" msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." -msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo dopo aver effettuato l'accesso." +msgstr "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso." #: ../../mod/connedit.php:691 msgid "Their Settings" @@ -5074,6 +5070,10 @@ msgstr "Mostra l'URL del file" msgid "Notify your contacts about this file" msgstr "Notifica ai contatti che hai caricato questo file" +#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Questo non è un directory server" + #: ../../mod/layouts.php:121 ../../mod/layouts.php:179 #: ../../mod/editlayout.php:161 msgid "Layout Name" @@ -5194,9 +5194,22 @@ msgstr "Elementi taggati con: %s" msgid "Search results for: %s" msgstr "Risultati ricerca: %s" -#: ../../mod/message.php:34 -msgid "Conversation removed." -msgstr "Conversazione rimossa." +#: ../../mod/rate.php:158 +msgid "Website:" +msgstr "Sito web:" + +#: ../../mod/rate.php:161 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" + +#: ../../mod/rate.php:162 +msgid "Rating (this information is public)" +msgstr "Valutazione (visibile a tutti)" + +#: ../../mod/rate.php:163 +msgid "Optionally explain your rating (this information is public)" +msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" #: ../../mod/channel.php:97 msgid "Insufficient permissions. Request redirected to profile page." @@ -5235,47 +5248,63 @@ msgstr "Inserisci audio Vorbis [.ogg]" msgid "Edit post" msgstr "Modifica post" -#: ../../mod/dreport.php:15 +#: ../../mod/dreport.php:23 msgid "Invalid message" msgstr "Messaggio non valido" -#: ../../mod/dreport.php:25 +#: ../../mod/dreport.php:55 msgid "no results" msgstr "nessun risultato" -#: ../../mod/dreport.php:30 +#: ../../mod/dreport.php:60 #, php-format msgid "Delivery report for %1$s" msgstr "Rapporto di consegna - %1$s" -#: ../../mod/dreport.php:39 +#: ../../mod/dreport.php:74 msgid "channel sync processed" msgstr "sincronizzazione del canale effettuata" -#: ../../mod/dreport.php:43 +#: ../../mod/dreport.php:78 msgid "queued" msgstr "in coda" -#: ../../mod/dreport.php:47 +#: ../../mod/dreport.php:82 msgid "posted" msgstr "inviato" -#: ../../mod/dreport.php:51 +#: ../../mod/dreport.php:86 msgid "accepted for delivery" msgstr "accettato per la spedizione" -#: ../../mod/dreport.php:55 +#: ../../mod/dreport.php:90 msgid "updated" msgstr "aggiornato" -#: ../../mod/dreport.php:58 +#: ../../mod/dreport.php:93 msgid "update ignored" msgstr "aggiornamento ignorato" -#: ../../mod/dreport.php:61 +#: ../../mod/dreport.php:96 msgid "permission denied" msgstr "permessi non sufficienti" +#: ../../mod/dreport.php:100 +msgid "recipient not found" +msgstr "Destinatario non trovato" + +#: ../../mod/dreport.php:103 +msgid "mail recalled" +msgstr "messaggio richiamato dal mittente" + +#: ../../mod/dreport.php:106 +msgid "duplicate mail received" +msgstr "ricevuto messaggio duplicato" + +#: ../../mod/dreport.php:109 +msgid "mail delivered" +msgstr "messaggio recapitato" + #: ../../mod/editblock.php:118 msgid "Delete block?" msgstr "Vuoi eliminare questo riquadro?" @@ -5297,28 +5326,28 @@ msgstr "%s ti dà il benvenuto" msgid "Unable to locate original post." msgstr "Impossibile trovare il messaggio originale." -#: ../../mod/item.php:407 +#: ../../mod/item.php:418 msgid "Empty post discarded." msgstr "Il post vuoto è stato ignorato." -#: ../../mod/item.php:447 +#: ../../mod/item.php:458 msgid "Executable content type not permitted to this channel." msgstr "I contenuti eseguibili non sono permessi su questo canale." -#: ../../mod/item.php:896 +#: ../../mod/item.php:907 msgid "System error. Post not saved." msgstr "Errore di sistema. Post non salvato." -#: ../../mod/item.php:1163 +#: ../../mod/item.php:1174 msgid "Unable to obtain post information from database." msgstr "Impossibile caricare il post dal database." -#: ../../mod/item.php:1170 +#: ../../mod/item.php:1181 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." -#: ../../mod/item.php:1177 +#: ../../mod/item.php:1188 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." @@ -5608,7 +5637,7 @@ msgstr "Forza la publicazione del profilo" #: ../../mod/admin.php:439 msgid "" "Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per mostrare nell'elenco pubblico <strong>tutti</strong> i profili registrati su questo sito." +msgstr "Seleziona per mostrare negli elenchi pubblici <strong>tutti</strong> i profili registrati su questo sito." #: ../../mod/admin.php:440 msgid "Disable discovery tab" @@ -6333,7 +6362,7 @@ msgid "" "Password reset failed." msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." -#: ../../mod/lostpass.php:86 ../../boot.php:1505 +#: ../../mod/lostpass.php:86 ../../boot.php:1511 msgid "Password Reset" msgstr "Reimposta la password" @@ -6545,23 +6574,6 @@ msgstr "Foto recenti" msgid "$Projectname channel" msgstr "Canale $Projectname" -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "Sito web:" - -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" - -#: ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Valutazione (visibile a tutti)" - -#: ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" - #: ../../mod/events.php:21 msgid "Calendar entries imported." msgstr "Le voci del calendario sono state importate." @@ -6654,7 +6666,7 @@ msgstr "Adatta al fuso orario di chi legge" msgid "" "Important for events that happen in a particular place. Not practical for " "global holidays." -msgstr "Importante per eventi che avvengono online ma con l'orario di un luogo particolare." +msgstr "Importante per eventi che avvengono online ma con un certo fuso orario." #: ../../mod/events.php:703 msgid "Title:" @@ -6820,10 +6832,6 @@ msgstr "Sito web:" msgid "Description: " msgstr "Descrizione:" -#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Questo non è un server di elenchi di canali" - #: ../../mod/mail.php:33 msgid "Unable to lookup recipient." msgstr "Impossibile associare un destinatario." @@ -6844,38 +6852,46 @@ msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi priv msgid "Messages" msgstr "Messaggi" -#: ../../mod/mail.php:138 -msgid "Message deleted." -msgstr "Messaggio eliminato." - -#: ../../mod/mail.php:154 +#: ../../mod/mail.php:155 msgid "Message recalled." msgstr "Messaggio revocato." -#: ../../mod/mail.php:221 +#: ../../mod/mail.php:168 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: ../../mod/mail.php:211 +msgid "Requested channel is not in this network" +msgstr "Il canale cercato non è in questa rete" + +#: ../../mod/mail.php:219 msgid "Send Private Message" msgstr "Invia un messaggio privato" -#: ../../mod/mail.php:222 ../../mod/mail.php:352 +#: ../../mod/mail.php:220 ../../mod/mail.php:349 msgid "To:" msgstr "A:" -#: ../../mod/mail.php:227 ../../mod/mail.php:341 ../../mod/mail.php:354 +#: ../../mod/mail.php:223 ../../mod/mail.php:351 msgid "Subject:" msgstr "Oggetto:" -#: ../../mod/mail.php:231 ../../mod/mail.php:357 ../../mod/invite.php:131 +#: ../../mod/mail.php:226 ../../mod/invite.php:131 msgid "Your message:" msgstr "Il tuo messaggio:" -#: ../../mod/mail.php:238 +#: ../../mod/mail.php:230 msgid "Send" msgstr "Invia" -#: ../../mod/mail.php:322 +#: ../../mod/mail.php:321 msgid "Delete message" msgstr "Elimina il messaggio" +#: ../../mod/mail.php:322 +msgid "Delivery report" +msgstr "Rapporto di trasmissione" + #: ../../mod/mail.php:323 msgid "Recall message" msgstr "Revoca il messaggio" @@ -6884,20 +6900,25 @@ msgstr "Revoca il messaggio" msgid "Message has been recalled." msgstr "Il messaggio è stato revocato." -#: ../../mod/mail.php:345 +#: ../../mod/mail.php:342 msgid "Delete Conversation" msgstr "Elimina la conversazione" -#: ../../mod/mail.php:347 +#: ../../mod/mail.php:344 msgid "" "No secure communications available. You <strong>may</strong> be able to " "respond from the sender's profile page." msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. <strong>Se possibile</strong>, prova a rispondere direttamente dalla pagina del profilo del mittente." -#: ../../mod/mail.php:351 +#: ../../mod/mail.php:348 msgid "Send Reply" msgstr "Invia la risposta" +#: ../../mod/mail.php:353 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Il tuo messaggio per %s (%s):" + #: ../../mod/webpages.php:191 msgid "Page Title" msgstr "Titolo della pagina" @@ -7025,6 +7046,10 @@ msgstr "Non esistono restrizioni su questa classe di account." msgid "Item not available." msgstr "Elemento non disponibile." +#: ../../mod/dirsearch.php:29 +msgid "This directory server requires an access token" +msgstr "Questo server di elenchi pubblici necessita di un token di autenticazione" + #: ../../mod/sources.php:32 msgid "Failed to create source. No channel selected." msgstr "Impossibile creare la sorgente. Nessun canale selezionato." @@ -7129,10 +7154,6 @@ msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" msgid "Authenticate" msgstr "Accedi" -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "Questo server di elenchi pubblici necessita di un token di autenticazione" - #: ../../mod/siteinfo.php:111 #, php-format msgid "Version %s" @@ -7316,7 +7337,7 @@ msgstr "Pubblica un'attività" #: ../../mod/thing.php:302 ../../mod/thing.php:351 msgid "Only sends to viewers of the applicable profile" -msgstr "Invia solo a chi può vedere il profilo" +msgstr "Invia solo a chi può vedere il profilo scelto" #: ../../mod/thing.php:304 ../../mod/thing.php:353 msgid "Name of thing e.g. something" @@ -7680,7 +7701,7 @@ msgstr "Chiunque su internet" #: ../../mod/settings.php:963 msgid "Publish your default profile in the network directory" -msgstr "Mostra il mio profilo predefinito nell'elenco pubblico dei canali" +msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" #: ../../mod/settings.php:968 msgid "Allow us to suggest you as a potential friend to new members?" @@ -8883,7 +8904,7 @@ msgstr "Per esempio: pesca fotografia programmazione" #: ../../mod/profiles.php:700 msgid "Used in directory listings" -msgstr "Visibile nell'elenco pubblico di canali" +msgstr "Visibile sugli elenchi pubblici di canali" #: ../../mod/profiles.php:701 msgid "Tell us about yourself..." @@ -9130,51 +9151,51 @@ msgstr "Dimensione foto dell'autore della conversazione" msgid "Set size of followup author photos" msgstr "Dimensione foto dei partecipanti alla conversazione" -#: ../../boot.php:1302 +#: ../../boot.php:1308 #, php-format msgid "Update %s failed. See error logs." msgstr "%s: aggiornamento fallito. Controlla i log di errore." -#: ../../boot.php:1305 +#: ../../boot.php:1311 #, php-format msgid "Update Error at %s" msgstr "Errore di aggiornamento su %s" -#: ../../boot.php:1472 +#: ../../boot.php:1478 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Registrati per accedere ai servizi e alle applicazioni di Hubzilla" -#: ../../boot.php:1500 +#: ../../boot.php:1506 msgid "Password" msgstr "Password" -#: ../../boot.php:1501 +#: ../../boot.php:1507 msgid "Remember me" msgstr "Resta connesso" -#: ../../boot.php:1504 +#: ../../boot.php:1510 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: ../../boot.php:2130 +#: ../../boot.php:2136 msgid "toggle mobile" msgstr "attiva/disattiva versione mobile" -#: ../../boot.php:2265 +#: ../../boot.php:2271 msgid "Website SSL certificate is not valid. Please correct." msgstr "Il certificato SSL del sito non è valido. Si prega di intervenire." -#: ../../boot.php:2268 +#: ../../boot.php:2274 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Errore SSL su %s" -#: ../../boot.php:2305 +#: ../../boot.php:2311 msgid "Cron/Scheduled tasks not running." msgstr "Processi cron non avviati." -#: ../../boot.php:2309 +#: ../../boot.php:2315 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron non è stato eseguito %s" diff --git a/view/it/hstrings.php b/view/it/hstrings.php index 72fc2fa60..fad8b1fc1 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -295,7 +295,7 @@ $a->strings["Loading..."] = "Caricamento in corso..."; $a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; $a->strings["View Source"] = "Vedi il sorgente"; $a->strings["Follow Thread"] = "Segui la discussione"; -$a->strings["View Status"] = "Guarda il messaggio di stato"; +$a->strings["View Status"] = "Stato attuale"; $a->strings["View Profile"] = "Profilo"; $a->strings["View Photos"] = "Foto"; $a->strings["Activity/Posts"] = "Attività e Post"; @@ -426,47 +426,11 @@ $a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; $a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; $a->strings["Photo storage failed."] = "Impossibile salvare la foto."; $a->strings["Upload New Photos"] = "Carica nuove foto"; +$a->strings["view full size"] = "guarda nelle dimensioni reali"; $a->strings["\$Projectname Notification"] = "Notifica \$Projectname"; $a->strings["\$projectname"] = "\$projectname"; $a->strings["Thank You,"] = "Grazie,"; $a->strings["%s Administrator"] = "L'amministratore di %s"; -$a->strings["%s <!item_type!>"] = "%s <!item_type!>"; -$a->strings["[Red:Notify] New mail received at %s"] = "[Hubzilla] Nuovo messaggio su %s"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s ti ha mandato un messaggio privato su %3\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %2\$s."; -$a->strings["a private message"] = "un messaggio privato"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per leggere i tuoi messaggi privati e rispondere."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%5\$s di %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s che hai creato[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla] Nuovo commento di %2\$s alla conversazione #%1\$d"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha commentato un elemento che stavi seguendo."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Hubzilla] %s ha scritto sulla tua bacheca"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo su %3\$s"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha scritto sulla [zrl=%3\$s]tua bacheca[/zrl]"; -$a->strings["[Red:Notify] %s tagged you"] = "[Hubzilla] %s ti ha taggato"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato su %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]ti ha taggato[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Hubzilla] %1\$s ti ha mandato un poke"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke su %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Hubzilla] %s ha taggato il tuo post"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo post su %3\$s"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo post[/zrl]"; -$a->strings["[Red:Notify] Introduction received"] = "[Hubzilla] Hai una richiesta di amicizia"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di entrare in contatto da '%2\$s' su %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, hai ricevuto una [zrl=%2\$s]richiesta di entrare in contatto[/zrl] da %3\$s."; -$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Visita %s per approvare o rifiutare la richiesta di entrare in contatto."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Hubzilla] Ti è stato suggerito un amico"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' su %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, %4\$s ti [zrl=%2\$s]ha suggerito %3\$s[/zrl] come amico."; -$a->strings["Name:"] = "Nome:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; -$a->strings["[Red:Notify]"] = "[Hubzilla]"; -$a->strings["view full size"] = "guarda nelle dimensioni reali"; $a->strings["Administrator"] = "Amministratore"; $a->strings["No Subject"] = "Nessun titolo"; $a->strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; @@ -645,7 +609,7 @@ $a->strings["Settings"] = "Impostazioni"; $a->strings["Channel Home"] = "Bacheca del canale"; $a->strings["Profile"] = "Profilo"; $a->strings["Events"] = "Eventi"; -$a->strings["Directory"] = "Elenco pubblico"; +$a->strings["Directory"] = "Elenchi pubblici dei canali"; $a->strings["Help"] = "Guida"; $a->strings["Mail"] = "Messaggi"; $a->strings["Mood"] = "Umore"; @@ -664,6 +628,58 @@ $a->strings["Purchase"] = "Acquista"; $a->strings["Logged out."] = "Uscita effettuata."; $a->strings["Failed authentication"] = "Autenticazione fallita"; $a->strings["Login failed."] = "Accesso fallito."; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["(Unknown)"] = "(Sconosciuto)"; +$a->strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; +$a->strings["Visible to you only."] = "Visibile solo a te."; +$a->strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; +$a->strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; +$a->strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; +$a->strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; +$a->strings["Visible to approved connections."] = "Visibile ai contatti approvati."; +$a->strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; +$a->strings["Item not found."] = "Elemento non trovato."; +$a->strings["Collection not found."] = "Insieme di canali non trovato."; +$a->strings["Collection is empty."] = "L'insieme di canali è vuoto."; +$a->strings["Collection: %s"] = "Insieme: %s"; +$a->strings["Connection: %s"] = "Contatto: %s"; +$a->strings["Connection not found."] = "Contatto non trovato."; +$a->strings["%s <!item_type!>"] = "%s <!item_type!>"; +$a->strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla] Nuovo messaggio su %s"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s ti ha mandato un messaggio privato su %3\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %2\$s."; +$a->strings["a private message"] = "un messaggio privato"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per leggere i tuoi messaggi privati e rispondere."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%5\$s di %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s che hai creato[/zrl]"; +$a->strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla] Nuovo commento di %2\$s alla conversazione #%1\$d"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha commentato un elemento che stavi seguendo."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione."; +$a->strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla] %s ha scritto sulla tua bacheca"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo su %3\$s"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha scritto sulla [zrl=%3\$s]tua bacheca[/zrl]"; +$a->strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla] %s ti ha taggato"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato su %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]ti ha taggato[/zrl]."; +$a->strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla] %1\$s ti ha mandato un poke"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke su %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl]."; +$a->strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla] %s ha taggato il tuo post"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo post su %3\$s"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo post[/zrl]"; +$a->strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla] Hai una richiesta di amicizia"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di entrare in contatto da '%2\$s' su %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, hai ricevuto una [zrl=%2\$s]richiesta di entrare in contatto[/zrl] da %3\$s."; +$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Visita %s per approvare o rifiutare la richiesta di entrare in contatto."; +$a->strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla] Ti è stato suggerito un amico"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' su %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, %4\$s ti [zrl=%2\$s]ha suggerito %3\$s[/zrl] come amico."; +$a->strings["Name:"] = "Nome:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; +$a->strings["[Hubzilla:Notify]"] = "[Hubzilla]"; $a->strings["Attachments:"] = "Allegati:"; $a->strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; $a->strings["Image/photo"] = "Immagine"; @@ -735,22 +751,6 @@ $a->strings["Edit collection"] = "Modifica l'insieme di canali"; $a->strings["Add new collection"] = "Nuovo insieme"; $a->strings["Channels not in any collection"] = "Canali che non sono in un insieme"; $a->strings["add"] = "aggiungi"; -$a->strings["Tags"] = "Tag"; -$a->strings["Keywords"] = "Parole chiave"; -$a->strings["have"] = "ho"; -$a->strings["has"] = "ha"; -$a->strings["want"] = "voglio"; -$a->strings["wants"] = "vuole"; -$a->strings["like"] = "mi piace"; -$a->strings["likes"] = "gli piace"; -$a->strings["dislike"] = "non mi piace"; -$a->strings["dislikes"] = "non gli piace"; -$a->strings["Directory Options"] = "Opzioni elenco pubblico"; -$a->strings["Safe Mode"] = "Modalità SafeSearch"; -$a->strings["No"] = "No"; -$a->strings["Yes"] = "Si"; -$a->strings["Public Forums Only"] = "Solo forum pubblici"; -$a->strings["This Website Only"] = "Solo in questo sito"; $a->strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; $a->strings["Empty name"] = "Nome vuoto"; $a->strings["Name too long"] = "Nome troppo lungo"; @@ -812,6 +812,20 @@ $a->strings["No recipient provided."] = "Devi scegliere un destinatario."; $a->strings["[no subject]"] = "[nessun titolo]"; $a->strings["Unable to determine sender."] = "Impossibile determinare il mittente."; $a->strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; +$a->strings["Tags"] = "Tag"; +$a->strings["Keywords"] = "Parole chiave"; +$a->strings["have"] = "ho"; +$a->strings["has"] = "ha"; +$a->strings["want"] = "voglio"; +$a->strings["wants"] = "vuole"; +$a->strings["like"] = "mi piace"; +$a->strings["likes"] = "gli piace"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["dislikes"] = "non gli piace"; +$a->strings["Invalid data packet"] = "Dati ricevuti non validi"; +$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; +$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; +$a->strings["invalid target signature"] = "la firma ricevuta non è valida"; $a->strings["Save to Folder"] = "Salva nella cartella"; $a->strings["I will attend"] = "Parteciperò"; $a->strings["I will not attend"] = "Non parteciperò"; @@ -847,22 +861,6 @@ $a->strings["This is you"] = "Questo sei tu"; $a->strings["Image"] = "Immagine"; $a->strings["Insert Link"] = "Collegamento"; $a->strings["Video"] = "Video"; -$a->strings["Permission denied"] = "Permesso negato"; -$a->strings["(Unknown)"] = "(Sconosciuto)"; -$a->strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; -$a->strings["Visible to you only."] = "Visibile solo a te."; -$a->strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; -$a->strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; -$a->strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; -$a->strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; -$a->strings["Visible to approved connections."] = "Visibile ai contatti approvati."; -$a->strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; -$a->strings["Item not found."] = "Elemento non trovato."; -$a->strings["Collection not found."] = "Insieme di canali non trovato."; -$a->strings["Collection is empty."] = "L'insieme di canali è vuoto."; -$a->strings["Collection: %s"] = "Insieme: %s"; -$a->strings["Connection: %s"] = "Contatto: %s"; -$a->strings["Connection not found."] = "Contatto non trovato."; $a->strings["Apps"] = "App"; $a->strings["System"] = "Sistema"; $a->strings["Create Personal App"] = "Crea app personale"; @@ -892,7 +890,6 @@ $a->strings["Export channel"] = "Esporta il canale"; $a->strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti"; $a->strings["Premium Channel Settings"] = "Canale premium - impostazioni"; $a->strings["Private Mail Menu"] = "Menu messaggi privati"; -$a->strings["Check Mail"] = "Controlla i messaggi"; $a->strings["Combined View"] = "Vista combinata"; $a->strings["Inbox"] = "In arrivo"; $a->strings["Outbox"] = "Inviati"; @@ -929,10 +926,6 @@ $a->strings["Logs"] = "Log"; $a->strings["Admin"] = "Amministrazione"; $a->strings["Plugin Features"] = "Plugin"; $a->strings["User registrations waiting for confirmation"] = "Registrazioni in attesa"; -$a->strings["Invalid data packet"] = "Dati ricevuti non validi"; -$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; -$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; -$a->strings["invalid target signature"] = "la firma ricevuta non è valida"; $a->strings["Logout"] = "Esci"; $a->strings["End this session"] = "Chiudi questa sessione"; $a->strings["Home"] = "Bacheca"; @@ -956,7 +949,7 @@ $a->strings["Create an account"] = "Crea un account"; $a->strings["Help and documentation"] = "Guida e documentazione"; $a->strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; $a->strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; -$a->strings["Channel Directory"] = "Elenco pubblico canali"; +$a->strings["Channel Directory"] = "Elenchi pubblici dei canali"; $a->strings["Grid"] = "Rete"; $a->strings["Your grid"] = "La tua rete"; $a->strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; @@ -978,6 +971,12 @@ $a->strings["Account/Channel Settings"] = "Impostazioni dell'account e del canal $a->strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; $a->strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; $a->strings["Please wait..."] = "Attendere..."; +$a->strings["Directory Options"] = "Opzioni per elenchi pubblici"; +$a->strings["Safe Mode"] = "Modalità SafeSearch"; +$a->strings["No"] = "No"; +$a->strings["Yes"] = "Si"; +$a->strings["Public Forums Only"] = "Solo forum pubblici"; +$a->strings["This Website Only"] = "Solo in questo sito"; $a->strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; $a->strings["Contact not found."] = "Contatto non trovato."; $a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; @@ -996,8 +995,8 @@ $a->strings["Public Forum:"] = "Forum pubblico:"; $a->strings["Keywords: "] = "Parole chiave:"; $a->strings["Don't suggest"] = "Non fornire suggerimenti"; $a->strings["Common connections:"] = "Contatti in comune:"; -$a->strings["Global Directory"] = "Elenco globale dei canali"; -$a->strings["Local Directory"] = "Elenco canali su questo server"; +$a->strings["Global Directory"] = "Elenchi pubblici globali"; +$a->strings["Local Directory"] = "Elenco canali su questo hub"; $a->strings["Finding:"] = "Ricerca:"; $a->strings["next page"] = "pagina successiva"; $a->strings["previous page"] = "pagina precedente"; @@ -1075,7 +1074,7 @@ $a->strings["WARNING: "] = "ATTENZIONE:"; $a->strings["This channel will be completely removed from the network. "] = "Questo canale sarà completamente eliminato dalla rete."; $a->strings["This action is permanent and can not be undone!"] = "Questo comando è definitivo e non può essere annullato!"; $a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -$a->strings["Remove this channel and all its clones from the network"] = "Rimuovi questo canale e tutti i suoi cloni dalla rete"; +$a->strings["Remove this channel and all its clones from the network"] = "Elimina questo canale e tutti i suoi cloni dalla rete"; $a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni"; $a->strings["Remove Channel"] = "Elimina questo canale"; $a->strings["- select -"] = "- scegli -"; @@ -1163,7 +1162,7 @@ $a->strings["(%s) would like to connect with you. Please approve this connection $a->strings["Approve"] = "Approva"; $a->strings["Approve Later"] = "Approva più tardi"; $a->strings["inherited"] = "derivato"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo dopo aver effettuato l'accesso."; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso."; $a->strings["Their Settings"] = "Permessi concessi a te"; $a->strings["My Settings"] = "Permessi che concedo"; $a->strings["Individual Permissions"] = "Permessi individuali"; @@ -1196,6 +1195,7 @@ $a->strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla $a->strings["Share this file"] = "Condividi questo file"; $a->strings["Show URL to this file"] = "Mostra l'URL del file"; $a->strings["Notify your contacts about this file"] = "Notifica ai contatti che hai caricato questo file"; +$a->strings["This site is not a directory server"] = "Questo non è un directory server"; $a->strings["Layout Name"] = "Nome layout"; $a->strings["Layout Description (Optional)"] = "Descrizione del layout (facoltativa)"; $a->strings["Comanche page description language help"] = "Guida di Comanche Page Description Language"; @@ -1225,7 +1225,10 @@ $a->strings["Chatroom Name"] = "Nome della chat"; $a->strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; $a->strings["Items tagged with: %s"] = "Elementi taggati con: %s"; $a->strings["Search results for: %s"] = "Risultati ricerca: %s"; -$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["Website:"] = "Sito web:"; +$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; +$a->strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; +$a->strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; $a->strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; $a->strings["Item not found"] = "Elemento non trovato"; $a->strings["Item is not editable"] = "L'elemento non è modificabile"; @@ -1244,6 +1247,10 @@ $a->strings["accepted for delivery"] = "accettato per la spedizione"; $a->strings["updated"] = "aggiornato"; $a->strings["update ignored"] = "aggiornamento ignorato"; $a->strings["permission denied"] = "permessi non sufficienti"; +$a->strings["recipient not found"] = "Destinatario non trovato"; +$a->strings["mail recalled"] = "messaggio richiamato dal mittente"; +$a->strings["duplicate mail received"] = "ricevuto messaggio duplicato"; +$a->strings["mail delivered"] = "messaggio recapitato"; $a->strings["Delete block?"] = "Vuoi eliminare questo riquadro?"; $a->strings["Edit Block"] = "Modifica il riquadro"; $a->strings["\$Projectname"] = "\$Projectname"; @@ -1319,7 +1326,7 @@ $a->strings["Check to block public access to all otherwise public personal pages $a->strings["Verify Email Addresses"] = "Verifica l'indirizzo email"; $a->strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."; $a->strings["Force publish"] = "Forza la publicazione del profilo"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per mostrare nell'elenco pubblico <strong>tutti</strong> i profili registrati su questo sito."; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per mostrare negli elenchi pubblici <strong>tutti</strong> i profili registrati su questo sito."; $a->strings["Disable discovery tab"] = "Disabilita la funzione 'scopri'"; $a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti."; $a->strings["login on Homepage"] = "Mostra il login sulla homepage"; @@ -1549,10 +1556,6 @@ $a->strings["Map"] = "Mappa"; $a->strings["View Album"] = "Guarda l'album"; $a->strings["Recent Photos"] = "Foto recenti"; $a->strings["\$Projectname channel"] = "Canale \$Projectname"; -$a->strings["Website:"] = "Sito web:"; -$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; -$a->strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; -$a->strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; $a->strings["Calendar entries imported."] = "Le voci del calendario sono state importate."; $a->strings["No calendar entries found."] = "Non sono state trovate voci del calendario."; $a->strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; @@ -1575,7 +1578,7 @@ $a->strings["Event Starts:"] = "Inizio:"; $a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è rilevante"; $a->strings["Event Finishes:"] = "Fine:"; $a->strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; -$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono online ma con l'orario di un luogo particolare."; +$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono online ma con un certo fuso orario."; $a->strings["Title:"] = "Titolo:"; $a->strings["Share this event"] = "Condividi questo evento"; $a->strings["%s element installed"] = "%s elemento installato"; @@ -1615,25 +1618,27 @@ $a->strings["Ratings"] = "Valutazioni"; $a->strings["Rating: "] = "Valutazione:"; $a->strings["Website: "] = "Sito web:"; $a->strings["Description: "] = "Descrizione:"; -$a->strings["This site is not a directory server"] = "Questo non è un server di elenchi di canali"; $a->strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; $a->strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; $a->strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; $a->strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; $a->strings["Messages"] = "Messaggi"; -$a->strings["Message deleted."] = "Messaggio eliminato."; $a->strings["Message recalled."] = "Messaggio revocato."; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; $a->strings["Send Private Message"] = "Invia un messaggio privato"; $a->strings["To:"] = "A:"; $a->strings["Subject:"] = "Oggetto:"; $a->strings["Your message:"] = "Il tuo messaggio:"; $a->strings["Send"] = "Invia"; $a->strings["Delete message"] = "Elimina il messaggio"; +$a->strings["Delivery report"] = "Rapporto di trasmissione"; $a->strings["Recall message"] = "Revoca il messaggio"; $a->strings["Message has been recalled."] = "Il messaggio è stato revocato."; $a->strings["Delete Conversation"] = "Elimina la conversazione"; $a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. <strong>Se possibile</strong>, prova a rispondere direttamente dalla pagina del profilo del mittente."; $a->strings["Send Reply"] = "Invia la risposta"; +$a->strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; $a->strings["Page Title"] = "Titolo della pagina"; $a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; $a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; @@ -1662,6 +1667,7 @@ $a->strings["By default only the instances of the channels located on this hub w $a->strings["Remove Account"] = "Elimina l'account"; $a->strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; $a->strings["Item not available."] = "Elemento non disponibile."; +$a->strings["This directory server requires an access token"] = "Questo server di elenchi pubblici necessita di un token di autenticazione"; $a->strings["Failed to create source. No channel selected."] = "Impossibile creare la sorgente. Nessun canale selezionato."; $a->strings["Source created."] = "Sorgente creata."; $a->strings["Source updated."] = "Sorgente aggiornata."; @@ -1687,7 +1693,6 @@ $a->strings["Authentication failed."] = "Autenticazione fallita."; $a->strings["Remote Authentication"] = "Accedi tramite il tuo hub"; $a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; $a->strings["Authenticate"] = "Accedi"; -$a->strings["This directory server requires an access token"] = "Questo server di elenchi pubblici necessita di un token di autenticazione"; $a->strings["Version %s"] = "Versione %s"; $a->strings["Installed plugins/addons/apps:"] = "App e componenti installati:"; $a->strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato"; @@ -1728,7 +1733,7 @@ $a->strings["item not found."] = "non trovato."; $a->strings["Edit Thing"] = "Modifica l'oggetto"; $a->strings["Select a profile"] = "Scegli un profilo"; $a->strings["Post an activity"] = "Pubblica un'attività"; -$a->strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi può vedere il profilo"; +$a->strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi può vedere il profilo scelto"; $a->strings["Name of thing e.g. something"] = "Nome dell'oggetto"; $a->strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto (opzionale)"; $a->strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)"; @@ -1819,7 +1824,7 @@ $a->strings["Anybody on this website"] = "Chiunque su questo hub"; $a->strings["Anybody in this network"] = "Chiunque su questa rete"; $a->strings["Anybody authenticated"] = "Chiunque abbia effettuato l'accesso"; $a->strings["Anybody on the internet"] = "Chiunque su internet"; -$a->strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito nell'elenco pubblico dei canali"; +$a->strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito negli elenchi pubblici dei canali"; $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?"; $a->strings["Your channel address is"] = "L'indirizzo del tuo canale è"; $a->strings["Channel Settings"] = "Impostazioni del canale"; @@ -2094,7 +2099,7 @@ $a->strings["Homepage URL:"] = "Indirizzo home page:"; $a->strings["Religious Views:"] = "Orientamento religioso:"; $a->strings["Keywords:"] = "Parole chiave, tag:"; $a->strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; -$a->strings["Used in directory listings"] = "Visibile nell'elenco pubblico di canali"; +$a->strings["Used in directory listings"] = "Visibile sugli elenchi pubblici di canali"; $a->strings["Tell us about yourself..."] = "Raccontaci di te..."; $a->strings["Hobbies/Interests"] = "Hobby/interessi"; $a->strings["Contact information and Social Networks"] = "Contatti personali e i tuoi social network"; diff --git a/view/js/main.js b/view/js/main.js index 34d6bf475..0c26e3d57 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -616,11 +616,12 @@ function updateConvItems(mode,data) { function collapseHeight() { $(".wall-item-content, .directory-collapse").each(function() { - var orgHeight = $(this).height(); + var orgHeight = $(this).outerHeight(true); if(orgHeight > divmore_height + 10) { if(! $(this).hasClass('divmore')) { $(this).readmore({ speed: 0, + heightMargin: 50, collapsedHeight: divmore_height, moreLink: '<a href="#" class="divgrow-showmore">' + aStr.divgrowmore + '</a>', lessLink: '<a href="#" class="divgrow-showmore">' + aStr.divgrowless + '</a>', diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po index 32e3a5714..2c55d42fb 100644 --- a/view/nl/hmessages.po +++ b/view/nl/hmessages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-02 00:03-0700\n" -"PO-Revision-Date: 2015-10-03 12:48+0000\n" +"POT-Creation-Date: 2015-10-09 00:03-0700\n" +"PO-Revision-Date: 2015-10-12 22:38+0000\n" "Last-Translator: jeroenpraat <jeroenpraat@xs4all.nl>\n" "Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -321,14 +321,13 @@ msgstr "Chatkanaal niet gevonden" #: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 #: ../../mod/pdledit.php:21 ../../mod/photos.php:70 ../../mod/events.php:256 #: ../../mod/profile_photo.php:338 ../../mod/profile_photo.php:351 -#: ../../mod/message.php:16 ../../mod/webpages.php:69 +#: ../../mod/mail.php:114 ../../mod/message.php:16 ../../mod/webpages.php:69 #: ../../mod/register.php:72 ../../mod/blocks.php:69 ../../mod/blocks.php:76 #: ../../mod/service_limits.php:7 ../../mod/sources.php:66 -#: ../../mod/regmod.php:17 ../../mod/mail.php:114 ../../mod/thing.php:271 -#: ../../mod/thing.php:291 ../../mod/thing.php:328 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/viewsrc.php:14 -#: ../../mod/settings.php:565 ../../mod/manage.php:6 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/connections.php:29 +#: ../../mod/regmod.php:17 ../../mod/thing.php:271 ../../mod/thing.php:291 +#: ../../mod/thing.php:328 ../../mod/invite.php:13 ../../mod/invite.php:104 +#: ../../mod/viewsrc.php:14 ../../mod/settings.php:565 ../../mod/manage.php:6 +#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/connections.php:29 #: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 #: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 #: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 @@ -775,16 +774,16 @@ msgstr "Omschrijving (optioneel)" #: ../../mod/admin.php:1266 ../../mod/admin.php:1351 ../../mod/appman.php:99 #: ../../mod/pdledit.php:58 ../../mod/photos.php:598 ../../mod/photos.php:969 #: ../../mod/photos.php:1009 ../../mod/photos.php:1127 -#: ../../mod/events.php:534 ../../mod/events.php:710 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/mail.php:380 ../../mod/import.php:511 -#: ../../mod/thing.php:313 ../../mod/thing.php:359 ../../mod/invite.php:142 -#: ../../mod/settings.php:583 ../../mod/settings.php:695 -#: ../../mod/settings.php:723 ../../mod/settings.php:746 -#: ../../mod/settings.php:831 ../../mod/settings.php:1020 -#: ../../mod/xchan.php:11 ../../mod/group.php:81 ../../mod/connect.php:93 -#: ../../mod/locs.php:108 ../../mod/setup.php:331 ../../mod/setup.php:371 -#: ../../mod/profiles.php:667 ../../mod/import_items.php:122 -#: ../../view/theme/redbasic/php/config.php:99 +#: ../../mod/events.php:534 ../../mod/events.php:710 ../../mod/mail.php:359 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 +#: ../../mod/import.php:511 ../../mod/thing.php:313 ../../mod/thing.php:359 +#: ../../mod/invite.php:142 ../../mod/settings.php:583 +#: ../../mod/settings.php:695 ../../mod/settings.php:723 +#: ../../mod/settings.php:746 ../../mod/settings.php:831 +#: ../../mod/settings.php:1020 ../../mod/xchan.php:11 ../../mod/group.php:81 +#: ../../mod/connect.php:93 ../../mod/locs.php:108 ../../mod/setup.php:331 +#: ../../mod/setup.php:371 ../../mod/profiles.php:667 +#: ../../mod/import_items.php:122 ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "Opslaan" @@ -1309,9 +1308,8 @@ msgstr "In context bekijken" #: ../../include/conversation.php:739 ../../include/conversation.php:1212 #: ../../include/ItemObject.php:366 ../../mod/editpost.php:130 -#: ../../mod/editblock.php:150 ../../mod/photos.php:990 ../../mod/mail.php:249 -#: ../../mod/mail.php:381 ../../mod/editlayout.php:148 -#: ../../mod/editwebpage.php:190 +#: ../../mod/editblock.php:150 ../../mod/photos.php:990 +#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:190 msgid "Please wait" msgstr "Even wachten" @@ -1414,7 +1412,7 @@ msgid "Visible to <strong>everybody</strong>" msgstr "Voor <strong>iedereen</strong> zichtbaar" #: ../../include/conversation.php:1144 ../../mod/mail.php:182 -#: ../../mod/mail.php:311 +#: ../../mod/mail.php:296 msgid "Please enter a link URL:" msgstr "Vul een internetadres/URL in:" @@ -1439,7 +1437,7 @@ msgid "Where are you right now?" msgstr "Waar bevind je je op dit moment?" #: ../../include/conversation.php:1150 ../../mod/editpost.php:54 -#: ../../mod/mail.php:183 ../../mod/mail.php:312 +#: ../../mod/mail.php:183 ../../mod/mail.php:297 msgid "Expires YYYY-MM-DD HH:MM" msgstr "Verloopt op DD-MM-YYYY om HH:MM" @@ -1496,8 +1494,8 @@ msgid "Code" msgstr "Broncode" #: ../../include/conversation.php:1189 ../../mod/editpost.php:119 -#: ../../mod/editblock.php:142 ../../mod/mail.php:246 ../../mod/mail.php:377 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:182 +#: ../../mod/editblock.php:142 ../../mod/editlayout.php:140 +#: ../../mod/editwebpage.php:182 msgid "Upload photo" msgstr "Foto uploaden" @@ -1506,7 +1504,7 @@ msgid "upload photo" msgstr "foto uploaden" #: ../../include/conversation.php:1191 ../../mod/editpost.php:120 -#: ../../mod/editblock.php:143 ../../mod/mail.php:247 ../../mod/mail.php:378 +#: ../../mod/editblock.php:143 ../../mod/mail.php:228 ../../mod/mail.php:357 #: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:183 msgid "Attach file" msgstr "Bestand toevoegen" @@ -1516,7 +1514,7 @@ msgid "attach file" msgstr "bestand toevoegen" #: ../../include/conversation.php:1193 ../../mod/editpost.php:121 -#: ../../mod/editblock.php:144 ../../mod/mail.php:248 ../../mod/mail.php:379 +#: ../../mod/editblock.php:144 ../../mod/mail.php:229 ../../mod/mail.php:358 #: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:184 msgid "Insert web link" msgstr "Weblink invoegen" @@ -1599,13 +1597,13 @@ msgid "Example: bob@example.com, mary@example.com" msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" #: ../../include/conversation.php:1237 ../../mod/editpost.php:156 -#: ../../mod/editblock.php:176 ../../mod/mail.php:253 ../../mod/mail.php:384 +#: ../../mod/editblock.php:176 ../../mod/mail.php:233 ../../mod/mail.php:362 #: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:217 msgid "Set expiration date" msgstr "Verloopdatum instellen" #: ../../include/conversation.php:1239 ../../include/ItemObject.php:686 -#: ../../mod/editpost.php:158 ../../mod/mail.php:255 ../../mod/mail.php:386 +#: ../../mod/editpost.php:158 ../../mod/mail.php:235 ../../mod/mail.php:364 msgid "Encrypt text" msgstr "Tekst versleutelen" @@ -1819,206 +1817,27 @@ msgstr "Foto kan niet worden opgeslagen" msgid "Upload New Photos" msgstr "Nieuwe foto's uploaden" -#: ../../include/enotify.php:57 ../../include/network.php:1613 +#: ../../include/network.php:635 +msgid "view full size" +msgstr "volledige grootte tonen" + +#: ../../include/network.php:1613 ../../include/enotify.php:57 msgid "$Projectname Notification" msgstr "$Projectname-notificatie" -#: ../../include/enotify.php:58 ../../include/network.php:1614 +#: ../../include/network.php:1614 ../../include/enotify.php:58 msgid "$projectname" msgstr "$projectname" -#: ../../include/enotify.php:60 ../../include/network.php:1616 +#: ../../include/network.php:1616 ../../include/enotify.php:60 msgid "Thank You," msgstr "Bedankt," -#: ../../include/enotify.php:62 ../../include/network.php:1618 +#: ../../include/network.php:1618 ../../include/enotify.php:62 #, php-format msgid "%s Administrator" msgstr "Beheerder %s" -#: ../../include/enotify.php:96 -#, php-format -msgid "%s <!item_type!>" -msgstr "%s <!item_type!>" - -#: ../../include/enotify.php:100 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s" - -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." - -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s zond jou %2$s." - -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "een privébericht" - -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bezoek %s om je privéberichten te bekijken en/of er op te reageren." - -#: ../../include/enotify.php:158 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %4$s[/zrl]" - -#: ../../include/enotify.php:166 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %5$s van %4$s[/zrl]" - -#: ../../include/enotify.php:175 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]jouw %4$s[/zrl]" - -#: ../../include/enotify.php:186 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:Notificatie] Reactie op conversatie #%1$d door %2$s" - -#: ../../include/enotify.php:187 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s gaf een reactie op een bericht/conversatie die jij volgt." - -#: ../../include/enotify.php:190 ../../include/enotify.php:205 -#: ../../include/enotify.php:231 ../../include/enotify.php:249 -#: ../../include/enotify.php:263 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bezoek %s om de conversatie te bekijken en/of er op te reageren." - -#: ../../include/enotify.php:196 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" - -#: ../../include/enotify.php:198 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s heeft om %3$s een bericht op jouw kanaal geplaatst" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s heeft een bericht op [zrl=%3$s]jouw kanaal[/zrl] geplaatst" - -#: ../../include/enotify.php:224 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Hubzilla:Notificatie] %s heeft je genoemd" - -#: ../../include/enotify.php:225 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s noemde jou op %3$s" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]noemde jou[/zrl]." - -#: ../../include/enotify.php:238 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Hubzilla:Notificatie] %1$s heeft je aangestoten" - -#: ../../include/enotify.php:239 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s heeft je aangestoten op %3$s" - -#: ../../include/enotify.php:240 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]heeft je aangestoten[/zrl]." - -#: ../../include/enotify.php:256 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Hubzilla:Notificatie] %s heeft jouw bericht getagd" - -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s heeft jouw bericht om %3$s getagd" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s heeft [zrl=%3$s]jouw bericht[/zrl] getagd" - -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" -msgstr "[Hubzilla:Notificatie] Connectieverzoek ontvangen" - -#: ../../include/enotify.php:271 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, je hebt een nieuw connectieverzoek ontvangen van '%2$s' op %3$s" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, je hebt een [zrl=%2$s]nieuw connectieverzoek[/zrl] ontvangen van %3$s." - -#: ../../include/enotify.php:276 ../../include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Je kan het profiel bekijken op %s" - -#: ../../include/enotify.php:278 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bezoek %s om het connectieverzoek te accepteren of af te wijzen." - -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen" - -#: ../../include/enotify.php:286 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, je hebt een kanaalvoorstel ontvangen van '%2$s' om %3$s" - -#: ../../include/enotify.php:287 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, je hebt [zrl=%2$s]een kanaalvoorstel[/zrl] ontvangen voor %3$s van %4$s." - -#: ../../include/enotify.php:293 -msgid "Name:" -msgstr "Naam:" - -#: ../../include/enotify.php:294 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." - -#: ../../include/enotify.php:511 -msgid "[Red:Notify]" -msgstr "[Hubzilla:Notificatie]" - -#: ../../include/network.php:635 -msgid "view full size" -msgstr "volledige grootte tonen" - #: ../../include/network.php:1660 ../../include/account.php:316 #: ../../include/account.php:343 ../../include/account.php:403 msgid "Administrator" @@ -2916,6 +2735,185 @@ msgstr "Connectie: %s" msgid "Connection not found." msgstr "Connectie niet gevonden." +#: ../../include/enotify.php:96 +#, php-format +msgid "%s <!item_type!>" +msgstr "%s <!item_type!>" + +#: ../../include/enotify.php:100 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s" + +#: ../../include/enotify.php:102 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." + +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s zond jou %2$s." + +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "een privébericht" + +#: ../../include/enotify.php:104 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bezoek %s om je privéberichten te bekijken en/of er op te reageren." + +#: ../../include/enotify.php:158 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %4$s[/zrl]" + +#: ../../include/enotify.php:166 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %5$s van %4$s[/zrl]" + +#: ../../include/enotify.php:175 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]jouw %4$s[/zrl]" + +#: ../../include/enotify.php:186 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla:Notificatie] Reactie op conversatie #%1$d door %2$s" + +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s gaf een reactie op een bericht/conversatie die jij volgt." + +#: ../../include/enotify.php:190 ../../include/enotify.php:205 +#: ../../include/enotify.php:231 ../../include/enotify.php:249 +#: ../../include/enotify.php:263 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bezoek %s om de conversatie te bekijken en/of er op te reageren." + +#: ../../include/enotify.php:196 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" + +#: ../../include/enotify.php:198 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s heeft om %3$s een bericht op jouw kanaal geplaatst" + +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s heeft een bericht op [zrl=%3$s]jouw kanaal[/zrl] geplaatst" + +#: ../../include/enotify.php:224 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla:Notificatie] %s heeft je genoemd" + +#: ../../include/enotify.php:225 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s noemde jou op %3$s" + +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]noemde jou[/zrl]." + +#: ../../include/enotify.php:238 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla:Notificatie] %1$s heeft je aangestoten" + +#: ../../include/enotify.php:239 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s heeft je aangestoten op %3$s" + +#: ../../include/enotify.php:240 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]heeft je aangestoten[/zrl]." + +#: ../../include/enotify.php:256 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla:Notificatie] %s heeft jouw bericht getagd" + +#: ../../include/enotify.php:257 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s heeft jouw bericht om %3$s getagd" + +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s heeft [zrl=%3$s]jouw bericht[/zrl] getagd" + +#: ../../include/enotify.php:270 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla:Notificatie] Connectieverzoek ontvangen" + +#: ../../include/enotify.php:271 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, je hebt een nieuw connectieverzoek ontvangen van '%2$s' op %3$s" + +#: ../../include/enotify.php:272 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, je hebt een [zrl=%2$s]nieuw connectieverzoek[/zrl] ontvangen van %3$s." + +#: ../../include/enotify.php:276 ../../include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Je kan het profiel bekijken op %s" + +#: ../../include/enotify.php:278 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bezoek %s om het connectieverzoek te accepteren of af te wijzen." + +#: ../../include/enotify.php:285 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen" + +#: ../../include/enotify.php:286 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, je hebt een kanaalvoorstel ontvangen van '%2$s' om %3$s" + +#: ../../include/enotify.php:287 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, je hebt [zrl=%2$s]een kanaalvoorstel[/zrl] ontvangen voor %3$s van %4$s." + +#: ../../include/enotify.php:293 +msgid "Name:" +msgstr "Naam:" + +#: ../../include/enotify.php:294 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." + +#: ../../include/enotify.php:511 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Notificatie]" + #: ../../include/bb2diaspora.php:373 msgid "Attachments:" msgstr "Bijlagen:" @@ -3773,153 +3771,149 @@ msgid "Private Mail Menu" msgstr "Privéberichten" #: ../../include/widgets.php:569 -msgid "Check Mail" -msgstr "Controleer op nieuwe berichten" - -#: ../../include/widgets.php:575 msgid "Combined View" msgstr "Gecombineerd postvak" -#: ../../include/widgets.php:580 ../../include/nav.php:191 +#: ../../include/widgets.php:574 ../../include/nav.php:191 msgid "Inbox" msgstr "Postvak IN" -#: ../../include/widgets.php:585 ../../include/nav.php:192 +#: ../../include/widgets.php:579 ../../include/nav.php:192 msgid "Outbox" msgstr "Postvak UIT" -#: ../../include/widgets.php:590 ../../include/nav.php:193 +#: ../../include/widgets.php:584 ../../include/nav.php:193 msgid "New Message" msgstr "Nieuw bericht" -#: ../../include/widgets.php:609 ../../include/widgets.php:621 +#: ../../include/widgets.php:603 ../../include/widgets.php:615 msgid "Conversations" msgstr "Conversaties" -#: ../../include/widgets.php:613 +#: ../../include/widgets.php:607 msgid "Received Messages" msgstr "Ontvangen berichten" -#: ../../include/widgets.php:617 +#: ../../include/widgets.php:611 msgid "Sent Messages" msgstr "Verzonden berichten" -#: ../../include/widgets.php:631 +#: ../../include/widgets.php:625 msgid "No messages." msgstr "Geen berichten" -#: ../../include/widgets.php:649 +#: ../../include/widgets.php:643 msgid "Delete conversation" msgstr "Verwijder conversatie" -#: ../../include/widgets.php:651 +#: ../../include/widgets.php:645 msgid "D, d M Y - g:i A" msgstr "D, j M Y - G:i" -#: ../../include/widgets.php:740 +#: ../../include/widgets.php:734 msgid "Chat Rooms" msgstr "Chatkanalen" -#: ../../include/widgets.php:760 +#: ../../include/widgets.php:754 msgid "Bookmarked Chatrooms" msgstr "Bladwijzers van chatkanalen" -#: ../../include/widgets.php:780 +#: ../../include/widgets.php:774 msgid "Suggested Chatrooms" msgstr "Voorgestelde chatkanalen" -#: ../../include/widgets.php:907 ../../include/widgets.php:965 +#: ../../include/widgets.php:901 ../../include/widgets.php:959 msgid "photo/image" msgstr "foto/afbeelding" -#: ../../include/widgets.php:1060 ../../include/widgets.php:1062 +#: ../../include/widgets.php:1054 ../../include/widgets.php:1056 msgid "Rate Me" msgstr "Beoordeel mij" -#: ../../include/widgets.php:1066 +#: ../../include/widgets.php:1060 msgid "View Ratings" msgstr "Bekijk beoordelingen" -#: ../../include/widgets.php:1077 +#: ../../include/widgets.php:1071 msgid "Public Hubs" msgstr "Openbare hubs" -#: ../../include/widgets.php:1125 +#: ../../include/widgets.php:1119 msgid "Forums" msgstr "Forums" -#: ../../include/widgets.php:1152 +#: ../../include/widgets.php:1146 msgid "Tasks" msgstr "Taken" -#: ../../include/widgets.php:1161 +#: ../../include/widgets.php:1155 msgid "Documentation" msgstr "Documentatie" -#: ../../include/widgets.php:1163 +#: ../../include/widgets.php:1157 msgid "Project/Site Information" msgstr "Project- en hub-informatie" -#: ../../include/widgets.php:1164 +#: ../../include/widgets.php:1158 msgid "For Members" msgstr "Voor leden" -#: ../../include/widgets.php:1165 +#: ../../include/widgets.php:1159 msgid "For Administrators" msgstr "Voor beheerders" -#: ../../include/widgets.php:1166 +#: ../../include/widgets.php:1160 msgid "For Developers" msgstr "Voor ontwikkelaars" -#: ../../include/widgets.php:1191 ../../mod/admin.php:410 +#: ../../include/widgets.php:1185 ../../mod/admin.php:410 msgid "Site" msgstr "Hub-instellingen" -#: ../../include/widgets.php:1192 +#: ../../include/widgets.php:1186 msgid "Accounts" msgstr "Accounts" -#: ../../include/widgets.php:1193 ../../mod/admin.php:939 +#: ../../include/widgets.php:1187 ../../mod/admin.php:939 msgid "Channels" msgstr "Kanalen" -#: ../../include/widgets.php:1194 ../../mod/admin.php:1031 +#: ../../include/widgets.php:1188 ../../mod/admin.php:1031 #: ../../mod/admin.php:1071 msgid "Plugins" msgstr "Plug-ins" -#: ../../include/widgets.php:1195 ../../mod/admin.php:1231 +#: ../../include/widgets.php:1189 ../../mod/admin.php:1231 #: ../../mod/admin.php:1265 msgid "Themes" msgstr "Thema's" -#: ../../include/widgets.php:1196 +#: ../../include/widgets.php:1190 msgid "Inspect queue" msgstr "Inspecteer berichtenwachtrij" -#: ../../include/widgets.php:1197 +#: ../../include/widgets.php:1191 msgid "Profile Config" msgstr "Profielconfiguratie" -#: ../../include/widgets.php:1198 +#: ../../include/widgets.php:1192 msgid "DB updates" msgstr "Database-updates" -#: ../../include/widgets.php:1216 ../../include/widgets.php:1222 +#: ../../include/widgets.php:1210 ../../include/widgets.php:1216 #: ../../mod/admin.php:1350 msgid "Logs" msgstr "Logboeken" -#: ../../include/widgets.php:1220 ../../include/nav.php:210 +#: ../../include/widgets.php:1214 ../../include/nav.php:210 msgid "Admin" msgstr "Beheer" -#: ../../include/widgets.php:1221 +#: ../../include/widgets.php:1215 msgid "Plugin Features" msgstr "Plug-in-opties" -#: ../../include/widgets.php:1223 +#: ../../include/widgets.php:1217 msgid "User registrations waiting for confirmation" msgstr "Accounts die op goedkeuring wachten" @@ -6837,6 +6831,93 @@ msgstr "Website: " msgid "Description: " msgstr "Omschrijving: " +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." + +#: ../../mod/mail.php:128 +msgid "Messages" +msgstr "Berichten" + +#: ../../mod/mail.php:155 +msgid "Message recalled." +msgstr "Bericht ingetrokken." + +#: ../../mod/mail.php:168 +msgid "Conversation removed." +msgstr "Conversatie verwijderd" + +#: ../../mod/mail.php:211 +msgid "Requested channel is not in this network" +msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" + +#: ../../mod/mail.php:219 +msgid "Send Private Message" +msgstr "Privébericht versturen" + +#: ../../mod/mail.php:220 ../../mod/mail.php:349 +msgid "To:" +msgstr "Aan:" + +#: ../../mod/mail.php:223 ../../mod/mail.php:351 +msgid "Subject:" +msgstr "Onderwerp:" + +#: ../../mod/mail.php:226 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "Jouw bericht:" + +#: ../../mod/mail.php:230 +msgid "Send" +msgstr "Verzenden" + +#: ../../mod/mail.php:321 +msgid "Delete message" +msgstr "Bericht verwijderen" + +#: ../../mod/mail.php:322 +msgid "Delivery report" +msgstr "Afleveringsrapport" + +#: ../../mod/mail.php:323 +msgid "Recall message" +msgstr "Bericht intrekken" + +#: ../../mod/mail.php:325 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." + +#: ../../mod/mail.php:342 +msgid "Delete Conversation" +msgstr "Verwijder conversatie" + +#: ../../mod/mail.php:344 +msgid "" +"No secure communications available. You <strong>may</strong> be able to " +"respond from the sender's profile page." +msgstr "Geen veilige communicatie beschikbaar. <strong>Mogelijk</strong> kan je reageren op de kanaalpagina van de afzender." + +#: ../../mod/mail.php:348 +msgid "Send Reply" +msgstr "Antwoord versturen" + +#: ../../mod/mail.php:353 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Jouw privébericht aan %s (%s):" + #: ../../mod/webpages.php:191 msgid "Page Title" msgstr "Paginatitel" @@ -7072,84 +7153,6 @@ msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" msgid "Authenticate" msgstr "Authenticeren" -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." - -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Berichten" - -#: ../../mod/mail.php:155 -msgid "Message recalled." -msgstr "Bericht ingetrokken." - -#: ../../mod/mail.php:168 -msgid "Conversation removed." -msgstr "Conversatie verwijderd" - -#: ../../mod/mail.php:233 -msgid "Send Private Message" -msgstr "Privébericht versturen" - -#: ../../mod/mail.php:234 ../../mod/mail.php:368 -msgid "To:" -msgstr "Aan:" - -#: ../../mod/mail.php:239 ../../mod/mail.php:370 -msgid "Subject:" -msgstr "Onderwerp:" - -#: ../../mod/mail.php:243 ../../mod/mail.php:373 ../../mod/invite.php:131 -msgid "Your message:" -msgstr "Jouw bericht:" - -#: ../../mod/mail.php:250 -msgid "Send" -msgstr "Verzenden" - -#: ../../mod/mail.php:336 -msgid "Delete message" -msgstr "Bericht verwijderen" - -#: ../../mod/mail.php:337 -msgid "Delivery report" -msgstr "Afleveringsrapport" - -#: ../../mod/mail.php:338 -msgid "Recall message" -msgstr "Bericht intrekken" - -#: ../../mod/mail.php:340 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." - -#: ../../mod/mail.php:361 -msgid "Delete Conversation" -msgstr "Verwijder conversatie" - -#: ../../mod/mail.php:363 -msgid "" -"No secure communications available. You <strong>may</strong> be able to " -"respond from the sender's profile page." -msgstr "Geen veilige communicatie beschikbaar. <strong>Mogelijk</strong> kan je reageren op de kanaalpagina van de afzender." - -#: ../../mod/mail.php:367 -msgid "Send Reply" -msgstr "Antwoord versturen" - #: ../../mod/siteinfo.php:111 #, php-format msgid "Version %s" diff --git a/view/nl/hstrings.php b/view/nl/hstrings.php index 8fa0480a9..5d2daed0c 100644 --- a/view/nl/hstrings.php +++ b/view/nl/hstrings.php @@ -426,47 +426,11 @@ $a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; $a->strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; $a->strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; $a->strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +$a->strings["view full size"] = "volledige grootte tonen"; $a->strings["\$Projectname Notification"] = "\$Projectname-notificatie"; $a->strings["\$projectname"] = "\$projectname"; $a->strings["Thank You,"] = "Bedankt,"; $a->strings["%s Administrator"] = "Beheerder %s"; -$a->strings["%s <!item_type!>"] = "%s <!item_type!>"; -$a->strings["[Red:Notify] New mail received at %s"] = "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; -$a->strings["a private message"] = "een privébericht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; -$a->strings["[Red:Notify] %s tagged you"] = "[Hubzilla:Notificatie] %s heeft je genoemd"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Hubzilla:Notificatie] %1\$s heeft je aangestoten"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Hubzilla:Notificatie] %s heeft jouw bericht getagd"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; -$a->strings["[Red:Notify] Introduction received"] = "[Hubzilla:Notificatie] Connectieverzoek ontvangen"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; -$a->strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; -$a->strings["Name:"] = "Naam:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; -$a->strings["[Red:Notify]"] = "[Hubzilla:Notificatie]"; -$a->strings["view full size"] = "volledige grootte tonen"; $a->strings["Administrator"] = "Beheerder"; $a->strings["No Subject"] = "Geen onderwerp"; $a->strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; @@ -680,6 +644,42 @@ $a->strings["Collection is empty."] = "Collectie is leeg"; $a->strings["Collection: %s"] = "Collectie: %s"; $a->strings["Connection: %s"] = "Connectie: %s"; $a->strings["Connection not found."] = "Connectie niet gevonden."; +$a->strings["%s <!item_type!>"] = "%s <!item_type!>"; +$a->strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; +$a->strings["a private message"] = "een privébericht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; +$a->strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; +$a->strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; +$a->strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notificatie] %s heeft je genoemd"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; +$a->strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notificatie] %1\$s heeft je aangestoten"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; +$a->strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notificatie] %s heeft jouw bericht getagd"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; +$a->strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notificatie] Connectieverzoek ontvangen"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; +$a->strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; +$a->strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; +$a->strings["Name:"] = "Naam:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; +$a->strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificatie]"; $a->strings["Attachments:"] = "Bijlagen:"; $a->strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; $a->strings["Image/photo"] = "Afbeelding/foto"; @@ -890,7 +890,6 @@ $a->strings["Export channel"] = "Kanaal exporteren"; $a->strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; $a->strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; $a->strings["Private Mail Menu"] = "Privéberichten"; -$a->strings["Check Mail"] = "Controleer op nieuwe berichten"; $a->strings["Combined View"] = "Gecombineerd postvak"; $a->strings["Inbox"] = "Postvak IN"; $a->strings["Outbox"] = "Postvak UIT"; @@ -1619,6 +1618,27 @@ $a->strings["Ratings"] = "Waarderingen"; $a->strings["Rating: "] = "Waardering: "; $a->strings["Website: "] = "Website: "; $a->strings["Description: "] = "Omschrijving: "; +$a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; +$a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; +$a->strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; +$a->strings["Messages"] = "Berichten"; +$a->strings["Message recalled."] = "Bericht ingetrokken."; +$a->strings["Conversation removed."] = "Conversatie verwijderd"; +$a->strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; +$a->strings["Send Private Message"] = "Privébericht versturen"; +$a->strings["To:"] = "Aan:"; +$a->strings["Subject:"] = "Onderwerp:"; +$a->strings["Your message:"] = "Jouw bericht:"; +$a->strings["Send"] = "Verzenden"; +$a->strings["Delete message"] = "Bericht verwijderen"; +$a->strings["Delivery report"] = "Afleveringsrapport"; +$a->strings["Recall message"] = "Bericht intrekken"; +$a->strings["Message has been recalled."] = "Bericht is ingetrokken."; +$a->strings["Delete Conversation"] = "Verwijder conversatie"; +$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. <strong>Mogelijk</strong> kan je reageren op de kanaalpagina van de afzender."; +$a->strings["Send Reply"] = "Antwoord versturen"; +$a->strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; $a->strings["Page Title"] = "Paginatitel"; $a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze \$Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals."; $a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; @@ -1673,25 +1693,6 @@ $a->strings["Authentication failed."] = "Authenticatie mislukt."; $a->strings["Remote Authentication"] = "Authenticatie op afstand"; $a->strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; $a->strings["Authenticate"] = "Authenticeren"; -$a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; -$a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; -$a->strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; -$a->strings["Messages"] = "Berichten"; -$a->strings["Message recalled."] = "Bericht ingetrokken."; -$a->strings["Conversation removed."] = "Conversatie verwijderd"; -$a->strings["Send Private Message"] = "Privébericht versturen"; -$a->strings["To:"] = "Aan:"; -$a->strings["Subject:"] = "Onderwerp:"; -$a->strings["Your message:"] = "Jouw bericht:"; -$a->strings["Send"] = "Verzenden"; -$a->strings["Delete message"] = "Bericht verwijderen"; -$a->strings["Delivery report"] = "Afleveringsrapport"; -$a->strings["Recall message"] = "Bericht intrekken"; -$a->strings["Message has been recalled."] = "Bericht is ingetrokken."; -$a->strings["Delete Conversation"] = "Verwijder conversatie"; -$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. <strong>Mogelijk</strong> kan je reageren op de kanaalpagina van de afzender."; -$a->strings["Send Reply"] = "Antwoord versturen"; $a->strings["Version %s"] = "Versie %s"; $a->strings["Installed plugins/addons/apps:"] = "Ingeschakelde plug-ins/add-ons/apps:"; $a->strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plug-ins/add-ons/apps"; diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index b51fea6cf..59b928ee9 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -129,7 +129,7 @@ pre code { code { font-size: 1em; - padding: 5px; + padding: 1em; border: 1px solid #ccc; background: #ccc; color: #000; @@ -1432,7 +1432,10 @@ a.rconnect:hover, a.rateme:hover, div.rateme:hover { .profile-match-connect { margin-top: 5px; } .reshared-content { margin-left: 20px; } -.shared_header img { margin-right: 10px; } +.shared_header img { + border-radius: $radiuspx; + margin-right: 10px; +} .tag1 { font-size : 0.9em !important; @@ -1635,39 +1638,39 @@ img.mail-conv-sender-photo { /* conversation */ -.wall-item-title { - font-size: $font_size; +.wall-item-head { + padding: 10px 10px 0px 10px; } -.hide-comments-outer, -.thread-wrapper .wall-item-comment-wrapper, -.wall-item-content-wrapper.comment { - margin-left: $comment_indent; +.wall-item-content { + padding: 1em 10px; +} + +.wall-item-tools { + padding: 0px 10px 10px 10px; +} + + +.wall-item-title { + font-size: $font_size; } .wall-item-content-wrapper { background-color: $item_colour; - padding: 10px; border-top-right-radius: $radiuspx; border-top-left-radius: $radiuspx; } .wall-item-content-wrapper.comment { background-color: $comment_item_colour; - border-color: $comment_border_colour; - border-style: solid; - border-width: 0px 0px 0px 3px; - border-radius: 0px; - padding: 7px 10px 7px 7px; } .hide-comments-outer { background-color: $comment_item_colour; - border-color: $comment_border_colour; border-top-color: #ccc; border-style: solid; border-top-style: dashed; - border-width: 1px 0px 0px 3px; + border-width: 1px 0px 0px 0px; text-align: center; border-radius: 0px; } diff --git a/view/theme/redbasic/tpl/theme_settings.tpl b/view/theme/redbasic/tpl/theme_settings.tpl index 4f5b69beb..cdc9de489 100644 --- a/view/theme/redbasic/tpl/theme_settings.tpl +++ b/view/theme/redbasic/tpl/theme_settings.tpl @@ -16,8 +16,8 @@ {{include file="field_colorinput.tpl" field=$background_image}} {{include file="field_colorinput.tpl" field=$item_colour}} {{include file="field_colorinput.tpl" field=$comment_item_colour}} - {{include file="field_colorinput.tpl" field=$comment_border_colour}} - {{include file="field_input.tpl" field=$comment_indent}} + {{*include file="field_colorinput.tpl" field=$comment_border_colour*}} + {{*include file="field_input.tpl" field=$comment_indent*}} {{include file="field_input.tpl" field=$body_font_size}} {{include file="field_input.tpl" field=$font_size}} {{include file="field_colorinput.tpl" field=$font_colour}} diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index dc8064f1a..a9661d9b5 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -8,30 +8,32 @@ <a name="{{$item.id}}" ></a> <div class="wall-item-outside-wrapper {{$item.indent}}{{$item.previewing}}" id="wall-item-outside-wrapper-{{$item.id}}" > <div class="wall-item-content-wrapper {{$item.indent}}" id="wall-item-content-wrapper-{{$item.id}}" style="clear:both;"> - <div class="wall-item-info" id="wall-item-info-{{$item.id}}" > - <div class="wall-item-photo-wrapper{{if $item.owner_url}} wwfrom{{/if}}" id="wall-item-photo-wrapper-{{$item.id}}"> - <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-photo-link" id="wall-item-photo-link-{{$item.id}}"><img src="{{$item.thumb}}" class="wall-item-photo{{$item.sparkle}}" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" /></a> + <div class="wall-item-head"> + <div class="wall-item-info" id="wall-item-info-{{$item.id}}" > + <div class="wall-item-photo-wrapper{{if $item.owner_url}} wwfrom{{/if}}" id="wall-item-photo-wrapper-{{$item.id}}"> + <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-photo-link" id="wall-item-photo-link-{{$item.id}}"><img src="{{$item.thumb}}" class="wall-item-photo{{$item.sparkle}}" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" /></a> + </div> + <div class="wall-item-photo-end" style="clear:both"></div> </div> - <div class="wall-item-photo-end" style="clear:both"></div> - </div> - {{if $item.title}} - <div class="wall-item-title" id="wall-item-title-{{$item.id}}"> - <h3>{{if $item.title_tosource}}{{if $item.plink}}<a href="{{$item.plink.href}}" title="{{$item.title}} ({{$item.plink.title}})">{{/if}}{{/if}}{{$item.title}}{{if $item.title_tosource}}{{if $item.plink}}</a>{{/if}}{{/if}}</h3> - </div> - {{/if}} - {{if $item.lock}} - <div class="wall-item-lock dropdown"> - <i class="icon-lock lockview dropdown-toggle" data-toggle="dropdown" title="{{$item.lock}}" onclick="lockview('item',{{$item.id}});" ></i><ul id="panel-{{$item.id}}" class="lockview-panel dropdown-menu"></ul> - </div> - {{/if}} - <div class="wall-item-author"> - <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.sparkle}}" id="wall-item-name-{{$item.id}}" >{{$item.name}}</span></a>{{if $item.owner_url}} {{$item.via}} <a href="{{$item.owner_url}}" title="{{$item.olinktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.osparkle}}" id="wall-item-ownername-{{$item.id}}">{{$item.owner_name}}</span></a>{{/if}} - </div> - <div class="wall-item-ago" id="wall-item-ago-{{$item.id}}"> - {{if $item.verified}}<i class="icon-ok item-verified" title="{{$item.verified}}"></i> {{elseif $item.forged}}<i class="icon-exclamation item-forged" title="{{$item.forged}}"></i> {{/if}}{{if $item.location}}<span class="wall-item-location" id="wall-item-location-{{$item.id}}">{{$item.location}}, </span>{{/if}}<span class="autotime" title="{{$item.isotime}}">{{$item.localtime}}{{if $item.editedtime}} {{$item.editedtime}}{{/if}}{{if $item.expiretime}} {{$item.expiretime}}{{/if}}</span>{{if $item.editedtime}} <i class="icon-pencil"></i>{{/if}} {{if $item.app}}<span class="item.app">{{$item.str_app}}</span>{{/if}} + {{if $item.title}} + <div class="wall-item-title" id="wall-item-title-{{$item.id}}"> + <h3>{{if $item.title_tosource}}{{if $item.plink}}<a href="{{$item.plink.href}}" title="{{$item.title}} ({{$item.plink.title}})">{{/if}}{{/if}}{{$item.title}}{{if $item.title_tosource}}{{if $item.plink}}</a>{{/if}}{{/if}}</h3> + </div> + {{/if}} + {{if $item.lock}} + <div class="wall-item-lock dropdown"> + <i class="icon-lock lockview dropdown-toggle" data-toggle="dropdown" title="{{$item.lock}}" onclick="lockview('item',{{$item.id}});" ></i><ul id="panel-{{$item.id}}" class="lockview-panel dropdown-menu"></ul> + </div> + {{/if}} + <div class="wall-item-author"> + <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.sparkle}}" id="wall-item-name-{{$item.id}}" >{{$item.name}}</span></a>{{if $item.owner_url}} {{$item.via}} <a href="{{$item.owner_url}}" title="{{$item.olinktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.osparkle}}" id="wall-item-ownername-{{$item.id}}">{{$item.owner_name}}</span></a>{{/if}} + </div> + <div class="wall-item-ago" id="wall-item-ago-{{$item.id}}"> + {{if $item.verified}}<i class="icon-ok item-verified" title="{{$item.verified}}"></i> {{elseif $item.forged}}<i class="icon-exclamation item-forged" title="{{$item.forged}}"></i> {{/if}}{{if $item.location}}<span class="wall-item-location" id="wall-item-location-{{$item.id}}">{{$item.location}}, </span>{{/if}}<span class="autotime" title="{{$item.isotime}}">{{$item.localtime}}{{if $item.editedtime}} {{$item.editedtime}}{{/if}}{{if $item.expiretime}} {{$item.expiretime}}{{/if}}</span>{{if $item.editedtime}} <i class="icon-pencil"></i>{{/if}} {{if $item.app}}<span class="item.app">{{$item.str_app}}</span>{{/if}} + </div> + <div class="clear"></div> </div> <div class="wall-item-content" id="wall-item-content-{{$item.id}}"> - <div class="wall-item-title-end"></div> <div class="wall-item-body" id="wall-item-body-{{$item.id}}" > {{$item.body}} {{if $item.tags}} @@ -52,6 +54,7 @@ </div> {{/if}} </div> + <div class="clear"></div> </div> <div class="wall-item-tools"> <div class="wall-item-tools-right btn-group pull-right"> @@ -167,6 +170,7 @@ {{/foreach}} </div> {{/if}} + <div class="clear"></div> </div> <div class="clear"></div> </div> diff --git a/view/tpl/conv_list.tpl b/view/tpl/conv_list.tpl index 5487d5937..b10f50c13 100755 --- a/view/tpl/conv_list.tpl +++ b/view/tpl/conv_list.tpl @@ -8,30 +8,32 @@ <a name="{{$item.id}}" ></a> <div class="wall-item-outside-wrapper {{$item.indent}}{{$item.previewing}}" id="wall-item-outside-wrapper-{{$item.id}}" > <div class="wall-item-content-wrapper {{$item.indent}}" id="wall-item-content-wrapper-{{$item.id}}" style="clear:both;"> - <div class="wall-item-info" id="wall-item-info-{{$item.id}}" > - <div class="wall-item-photo-wrapper{{if $item.owner_url}} wwfrom{{/if}}" id="wall-item-photo-wrapper-{{$item.id}}"> - <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-photo-link" id="wall-item-photo-link-{{$item.id}}"><img src="{{$item.thumb}}" class="wall-item-photo{{$item.sparkle}}" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" /></a> + <div class="wall-item-head"> + <div class="wall-item-info" id="wall-item-info-{{$item.id}}" > + <div class="wall-item-photo-wrapper{{if $item.owner_url}} wwfrom{{/if}}" id="wall-item-photo-wrapper-{{$item.id}}"> + <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-photo-link" id="wall-item-photo-link-{{$item.id}}"><img src="{{$item.thumb}}" class="wall-item-photo{{$item.sparkle}}" id="wall-item-photo-{{$item.id}}" alt="{{$item.name}}" /></a> + </div> + <div class="wall-item-photo-end" style="clear:both"></div> </div> - <div class="wall-item-photo-end" style="clear:both"></div> - </div> - {{if $item.title}} - <div class="wall-item-title" id="wall-item-title-{{$item.id}}"> - <h3>{{if $item.title_tosource}}{{if $item.plink}}<a href="{{$item.plink.href}}" title="{{$item.title}} ({{$item.plink.title}})">{{/if}}{{/if}}{{$item.title}}{{if $item.title_tosource}}{{if $item.plink}}</a>{{/if}}{{/if}}</h3> - </div> - {{/if}} - {{if $item.lock}} - <div class="wall-item-lock dropdown"> - <i class="icon-lock lockview dropdown-toggle" data-toggle="dropdown" title="{{$item.lock}}" onclick="lockview('item',{{$item.id}});" ></i><ul id="panel-{{$item.id}}" class="lockview-panel dropdown-menu"></ul> - </div> - {{/if}} - <div class="wall-item-author"> - <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.sparkle}}" id="wall-item-name-{{$item.id}}" >{{$item.name}}</span></a>{{if $item.owner_url}} {{$item.via}} <a href="{{$item.owner_url}}" title="{{$item.olinktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.osparkle}}" id="wall-item-ownername-{{$item.id}}">{{$item.owner_name}}</span></a>{{/if}} - </div> - <div class="wall-item-ago" id="wall-item-ago-{{$item.id}}"> - {{if $item.verified}}<i class="icon-ok item-verified" title="{{$item.verified}}"></i> {{elseif $item.forged}}<i class="icon-exclamation item-forged" title="{{$item.forged}}"></i> {{/if}}{{if $item.location}}<span class="wall-item-location" id="wall-item-location-{{$item.id}}">{{$item.location}}, </span>{{/if}}<span class="autotime" title="{{$item.isotime}}">{{$item.localtime}}{{if $item.editedtime}} {{$item.editedtime}}{{/if}}{{if $item.expiretime}} {{$item.expiretime}}{{/if}}</span>{{if $item.editedtime}} <i class="icon-pencil"></i>{{/if}} {{if $item.app}}<span class="item.app">{{$item.str_app}}</span>{{/if}} + {{if $item.title}} + <div class="wall-item-title" id="wall-item-title-{{$item.id}}"> + <h3>{{if $item.title_tosource}}{{if $item.plink}}<a href="{{$item.plink.href}}" title="{{$item.title}} ({{$item.plink.title}})">{{/if}}{{/if}}{{$item.title}}{{if $item.title_tosource}}{{if $item.plink}}</a>{{/if}}{{/if}}</h3> + </div> + {{/if}} + {{if $item.lock}} + <div class="wall-item-lock dropdown"> + <i class="icon-lock lockview dropdown-toggle" data-toggle="dropdown" title="{{$item.lock}}" onclick="lockview('item',{{$item.id}});" ></i><ul id="panel-{{$item.id}}" class="lockview-panel dropdown-menu"></ul> + </div> + {{/if}} + <div class="wall-item-author"> + <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.sparkle}}" id="wall-item-name-{{$item.id}}" >{{$item.name}}</span></a>{{if $item.owner_url}} {{$item.via}} <a href="{{$item.owner_url}}" title="{{$item.olinktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.osparkle}}" id="wall-item-ownername-{{$item.id}}">{{$item.owner_name}}</span></a>{{/if}} + </div> + <div class="wall-item-ago" id="wall-item-ago-{{$item.id}}"> + {{if $item.verified}}<i class="icon-ok item-verified" title="{{$item.verified}}"></i> {{elseif $item.forged}}<i class="icon-exclamation item-forged" title="{{$item.forged}}"></i> {{/if}}{{if $item.location}}<span class="wall-item-location" id="wall-item-location-{{$item.id}}">{{$item.location}}, </span>{{/if}}<span class="autotime" title="{{$item.isotime}}">{{$item.localtime}}{{if $item.editedtime}} {{$item.editedtime}}{{/if}}{{if $item.expiretime}} {{$item.expiretime}}{{/if}}</span>{{if $item.editedtime}} <i class="icon-pencil"></i>{{/if}} {{if $item.app}}<span class="item.app">{{$item.str_app}}</span>{{/if}} + </div> + <div class="clear"></div> </div> <div class="wall-item-content conv-list-mode" id="wall-item-content-{{$item.id}}"> - <div class="wall-item-title-end"></div> <div class="wall-item-body wall-item-listbody" id="wall-item-body-{{$item.id}}" > {{$item.body}} {{if $item.tags}} @@ -52,6 +54,7 @@ </div> {{/if}} </div> + <div class="clear"></div> </div> <div class="wall-item-tools"> <div class="wall-item-tools-right btn-group pull-right"> @@ -176,6 +179,7 @@ {{/foreach}} {{/if}} </div> + <div class="clear"></div> </div> <div class="clear"></div> </div> diff --git a/view/tpl/photo_view.tpl b/view/tpl/photo_view.tpl index 225b4f6b0..867a1e87b 100755 --- a/view/tpl/photo_view.tpl +++ b/view/tpl/photo_view.tpl @@ -133,14 +133,14 @@ {{/if}} {{if $likebuttons}} <div class="photo-item-tools-right btn-group pull-right"> - <button type="button" class="btn btn-default btn-sm" onclick="dolike({{$id}},'like'); return false"> - <i class="icon-thumbs-up-alt" title="{{$likethis}}"></i> + <button type="button" class="btn btn-default btn-sm" onclick="dolike({{$likebuttons.id}},'like'); return false"> + <i class="icon-thumbs-up-alt" title="{{$likebuttons.likethis}}"></i> </button> - <button type="button" class="btn btn-default btn-sm" onclick="dolike({{$id}},'dislike'); return false"> - <i class="icon-thumbs-down-alt" title="{{$nolike}}"></i> + <button type="button" class="btn btn-default btn-sm" onclick="dolike({{$likebuttons.id}},'dislike'); return false"> + <i class="icon-thumbs-down-alt" title="{{$likebuttons.nolike}}"></i> </button> </div> - <div id="like-rotator-{{$id}}" class="photo-like-rotator pull-right"></div> + <div id="like-rotator-{{$likebuttons.id}}" class="photo-like-rotator pull-right"></div> {{/if}} <div class="clear"></div> </div> |